:root {
    --primary-color: #4f46e5;
    /* Indigo 600 */
    --primary-hover: #4338ca;
    /* Indigo 700 */
    --secondary-color: #0ea5e9;
    /* Sky 500 */
    --dark-color: #0f172a;
    /* Slate 900 */
    --dark-deep: #020617;
    /* Slate 950 */
    --text-color: #334155;
    /* Slate 700 */
    --text-light: #64748b;
    /* Slate 500 */
    --light-bg: #f8fafc;
    /* Slate 50 */
    --light-bg-alt: #f1f5f9;
    /* Slate 100 */
    --white: #ffffff;
    --red: #ef4444;
    /* Red 500 */
    --green: #10b981;
    /* Emerald 500 */
    --gold: #f59e0b;
    /* Amber 500 */
    --border-color: rgba(79, 70, 229, 0.1);

    --font-main: 'Inter', sans-serif;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Dark Mode Overrides */
[data-theme="dark"] {
    --light-bg: #0b0e14;
    --light-bg-alt: #010409;
    --text-color: #f0f6fc;
    --text-light: #8b949e;
    --white: #161b22;
    --dark-color: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] body {
    background-color: var(--light-bg);
    color: var(--text-color);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: #ffffff !important;
}

[data-theme="dark"] .bg-primary,
[data-theme="dark"] .bg-dark,
[data-theme="dark"] .bg-dark-deep,
[data-theme="dark"] .cta-box,
[data-theme="dark"] .hero,
[data-theme="dark"] .solution-content p,
[data-theme="dark"] .problem-card p,
[data-theme="dark"] .feature-item p,
[data-theme="dark"] .step-card p,
[data-theme="dark"] .portfolio-info p {
    color: #ffffff !important;
}

[data-theme="dark"] .card,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .step-card,
[data-theme="dark"] .portfolio-card {
    background-color: var(--white);
    border-color: var(--border-color);
}

[data-theme="dark"] .text-muted {
    color: #8b949e !important;
}

[data-theme="dark"] .badge {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-bg);
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-red {
    color: var(--red);
}

.text-muted {
    color: #94a3b8;
}

.bg-light {
    background-color: var(--white);
}

.bg-light-alt {
    background-color: var(--light-bg-alt);
}

.bg-dark {
    background-color: var(--dark-color);
}

.bg-dark-deep {
    background-color: var(--dark-deep);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

[data-theme="dark"] .bg-dark {
    background-color: var(--light-bg-alt);
}

[data-theme="dark"] .bg-dark-deep {
    background-color: #000000;
}

[data-theme="dark"] .bg-light {
    background-color: var(--light-bg);
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white p,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark p,
.bg-primary h1,
.bg-primary h2,
.bg-primary h3,
.bg-primary h4,
.bg-primary p {
    color: var(--white);
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-title {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.125rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

/* Cards */
.card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 1rem;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
}

.theme-toggle {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: rgba(79, 70, 229, 0.1);
    color: var(--primary-color);
}

[data-theme="dark"] .navbar {
    background-color: rgba(15, 23, 42, 0.9);
}

[data-theme="dark"] .nav-links.active {
    background: var(--white);
    /* This uses slate-800 from dark mode */
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--light-bg) 0%, #e0e7ff 100%);
    overflow: hidden;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 span {
    color: var(--primary-color);
    display: block;
}

.hero p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
}

.mockup-container {
    position: relative;
    z-index: 2;
}

.mockup-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    position: relative;
    z-index: 2;
    border: 4px solid var(--white);
    transform: rotate(2deg);
    transition: var(--transition);
}

.mockup-img:hover {
    transform: rotate(0deg) scale(1.02);
}

.blob-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: linear-gradient(45deg, rgba(79, 70, 229, 0.2), rgba(14, 165, 233, 0.2));
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blobMorph 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes blobMorph {
    0% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }

    100% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
}

/* Problem Section */
.icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: rgba(239, 68, 68, 0.1);
}

.icon-circle.text-red {
    color: var(--red);
}

/* Solution Section */
.solution-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.check-list i {
    color: var(--green);
    margin-top: 4px;
}

/* Features Section */
.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    position: relative;
    border-top: 4px solid var(--primary-color);
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin: -45px auto 1.5rem;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-sm);
}

/* Portfolio Section */
.portfolio-card {
    padding: 0;
    overflow: hidden;
}

.portfolio-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Multi-device mockup */
.portfolio-img.multi-device {
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.portfolio-img.multi-device .desktop-view {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.portfolio-img.multi-device .mobile-view {
    position: absolute;
    bottom: 10%;
    right: 5%;
    width: 25%;
    height: auto;
    border-radius: 12px;
    border: 4px solid #1e293b;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 5;
    transition: transform 0.3s ease;
}

.portfolio-card:hover .mobile-view {
    transform: translateY(-10px) scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-img img {
    transform: scale(1.1);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h4 {
    margin-bottom: 0.5rem;
}

.portfolio-info .tag {
    font-size: 0.875rem;
    color: var(--primary-color);
    margin-bottom: 0;
    font-weight: 500;
}

/* Pricing Section Enlarged Card */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: flex-start;
}

.pricing-simple-box.premium-card {
    background: var(--white);
    width: 100%;
    text-align: center;
    border-radius: 24px;
    box-shadow: 0 15px 35px -12px rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-simple-box.premium-card.featured {
    transform: scale(1.05);
    z-index: 2;
    border: 2px solid var(--primary-color);
    box-shadow: 0 25px 50px -12px rgba(79, 70, 229, 0.25);
}

@media (max-width: 1100px) {
    .pricing-simple-box.premium-card.featured {
        transform: scale(1);
    }
}

.pricing-simple-box.premium-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 35px 70px -15px rgba(79, 70, 229, 0.35);
}

.card-header {
    background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
    padding: 1.5rem 1.5rem;
    border-bottom: 2px solid rgba(79, 70, 229, 0.1);
    position: relative;
    z-index: 1;
}

.card-header h3 {
    margin-bottom: 0.25rem;
    font-size: 1.25rem;
    color: var(--dark-color);
    position: relative;
    z-index: 2;
}

.price-badge {
    background: #f59e0b !important;
    color: #ffffff !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.25rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    position: relative;
    z-index: 3;
}

.main-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.1;
}

.main-price span {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

[data-theme="dark"] .pricing-simple-box.premium-card {
    background: var(--white);
}

[data-theme="dark"] .card-header {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

[data-theme="dark"] .card-body,
[data-theme="dark"] .card-footer {
    background: var(--white);
}

.price-detail {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.card-body {
    padding: 2rem 2rem;
    background: #ffffff;
    flex-grow: 1;
}

.benefit-list {
    text-align: left;
    margin: 0 auto;
    max-width: fit-content;
}

.benefit-list li {
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 500;
}

.benefit-list i {
    color: #10b981;
    font-size: 1.25rem;
}

.card-footer {
    padding: 0 2rem 3rem;
    background: #ffffff;
}

.pricing-action .btn {
    width: 100%;
    padding: 12px 20px;
    font-size: 0.9rem;
    display: block;
}

.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.ribbon {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius);
    border-top-right-radius: calc(var(--border-radius) - 2px);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
}

.price-desc {
    font-size: 0.95rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.pricing-features {
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features i.fa-check {
    color: var(--green);
}

.pricing-features i.fa-times {
    color: var(--text-light);
}

/* CTA Section */
.cta-box {
    padding: 4rem 2rem;
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-hover) 100%);
}

.cta-box h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 80px 0 20px;
    color: #cbd5e1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer h3,
.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.footer-brand h3 img {
    height: 36px;
    border-radius: 6px;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #cbd5e1;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-contact i {
    color: var(--primary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-right {
        margin-left: auto;
        display: flex;
        align-items: center;
    }

    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex !important;
        padding: 10px;
        margin-left: 0;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        padding: 20px;
        box-shadow: var(--shadow-md);
        gap: 15px;
        text-align: center;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-container,
    .solution-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        margin-top: 30px;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .solution-image {
        order: 2;
        margin-top: 30px;
    }

    .solution-content {
        order: 1;
    }

    .check-list li {
        justify-content: center;
    }

    .pricing-simple-box.premium-card {
        max-width: 100%;
        margin: 20px auto;
    }

    .price-detail {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .card-body,
    .card-footer {
        padding: 1.5rem 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.85rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.15rem;
    }

    p {
        font-size: 0.95rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1.05rem;
    }

    .card {
        padding: 1.25rem;
    }

    .feature-item {
        padding: 1.25rem 1rem;
    }

    .pricing-simple-box.premium-card {
        padding-top: 15px;
    }

    .card-header h3 {
        font-size: 1.1rem;
    }

    .main-price {
        font-size: 1.75rem;
    }

    .main-price span {
        font-size: 0.85rem;
    }

    .benefit-list li {
        font-size: 0.85rem;
        gap: 8px;
        margin-bottom: 0.75rem;
    }

    .benefit-list i {
        font-size: 1rem;
    }

    .pricing-action .btn {
        font-size: 0.95rem;
        padding: 12px;
    }

    .footer-brand p {
        padding-right: 0;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .footer-bottom {
        font-size: 0.75rem;
    }
}