        :root {
            --navy: #0f172a;
            --navy-light: #334155;
            --blue: #007bff;
            --blue-dark: #0056b3;
            --cream: #faf8f5;
            --stone: #e8e4df;
            --text-primary: #2d3748;
            --text-secondary: #64748b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--text-primary);
            background: var(--cream);
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--stone);
            z-index: 1000;
            animation: slideDown 0.6s ease-out;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        nav {
            max-width: 1280px;
            margin: 0 auto;
            padding: 1rem 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.35rem;
            color: var(--navy);
            text-decoration: none;
        }

        .logo b {
            color: var(--blue);
            font-weight: 800;
        }

        .nav-links {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--blue);
        }

        .cta-button {
            background: var(--navy);
            color: white !important;
            padding: 0.75rem 1.75rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
            white-space: nowrap;
        }

        .cta-button:hover {
            background: var(--navy-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10, 22, 40, 0.2);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--navy);
            margin: 5px 0;
            transition: 0.3s;
            border-radius: 2px;
        }

        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        .mobile-menu {
            display: none;
            position: fixed;
            top: 73px;
            left: 0;
            width: 100%;
            background: rgba(250, 248, 245, 0.98);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--stone);
            padding: 1.5rem;
            z-index: 999;
            animation: slideDownMenu 0.3s ease-out;
        }

        @keyframes slideDownMenu {
            from { 
                opacity: 0;
                transform: translateY(-20px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mobile-menu.active {
            display: block;
        }

        .mobile-menu a {
            display: block;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            font-size: 1.1rem;
            padding: 1rem;
            border-bottom: 1px solid var(--stone);
            transition: color 0.3s ease;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a:hover {
            color: var(--blue);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 1.5rem 4rem;
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            animation: fadeIn 0.8s ease-out 0.2s backwards;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .hero-content h1 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.75rem;
            line-height: 1.1;
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .hero-content .highlight {
            color: var(--blue);
            font-weight: 800;
        }

        .hero-content p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .hero-cta {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .primary-btn {
            background: var(--navy);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
            display: inline-block;
            text-align: center;
        }

        .primary-btn:hover {
            background: var(--navy-light);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(10, 22, 40, 0.25);
        }

        .secondary-btn {
            background: transparent;
            color: var(--navy);
            padding: 1rem 2.5rem;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid var(--navy);
            display: inline-block;
            text-align: center;
        }

        .secondary-btn:hover {
            background: var(--navy);
            color: white;
        }

        .hero-visual {
            position: relative;
            animation: fadeIn 0.8s ease-out 0.4s backwards;
        }

        .dashboard-preview {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
            border: 1px solid var(--stone);
        }

        .preview-header {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }

        .preview-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--stone);
        }

        .preview-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .preview-stat {
            background: var(--cream);
            padding: 1.25rem;
            border-radius: 10px;
            border-left: 4px solid var(--blue);
        }

        .preview-stat-label {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .preview-stat-value {
            font-size: 2rem;
            font-weight: 700;
            color: var(--navy);
            margin-top: 0.25rem;
        }

        /* Trust Bar */
        .trust-bar {
            background: white;
            padding: 2rem 1.5rem;
            border-top: 1px solid var(--stone);
            border-bottom: 1px solid var(--stone);
            animation: fadeIn 0.8s ease-out 0.6s backwards;
        }

        .trust-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .trust-item {
            text-align: center;
        }

        .trust-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            font-family: 'Montserrat', sans-serif;
        }

        .trust-label {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-top: 0.25rem;
        }

        /* Features Section */
        .features {
            padding: 4rem 1.5rem;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--blue);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 3rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .section-description {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 2.5rem;
            border-radius: 12px;
            border: 1px solid var(--stone);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(10, 22, 40, 0.12);
            border-color: var(--blue);
        }

        .feature-icon {
            width: 56px;
            height: 56px;
            background: var(--cream);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            border: 2px solid var(--blue);
        }

        .feature-icon svg {
            width: 28px;
            height: 28px;
            stroke: var(--blue);
            stroke-width: 2;
        }

        .feature-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* How It Works */
        .how-it-works {
            padding: 4rem 1.5rem;
            background: white;
        }

        .steps-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .step {
            display: grid;
            grid-template-columns: 100px 1fr;
            gap: 2rem;
            margin-bottom: 3rem;
            position: relative;
        }

        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            left: 49px;
            top: 100px;
            width: 2px;
            height: calc(100% - 50px);
            background: var(--stone);
        }

        .step-number {
            width: 100px;
            height: 100px;
            background: var(--navy);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            flex-shrink: 0;
        }

        .step-content h3 {
            font-size: 1.75rem;
            color: var(--navy);
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .step-content p {
            color: var(--text-secondary);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 1.5rem;
            background: var(--cream);
        }

        .pricing-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        .pricing-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(10, 22, 40, 0.12);
            border: 2px solid var(--blue);
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 0;
        }

        .pricing-left {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            color: white;
            padding: 3.5rem 3rem;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .early-adopter-badge {
            display: inline-block;
            background: var(--blue);
            color: white;
            padding: 0.5rem 1.25rem;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            width: fit-content;
        }

        .pricing-title {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .pricing-subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            margin-bottom: 2.5rem;
            line-height: 1.6;
        }

        .price-display {
            margin-bottom: 2rem;
        }

        .original-price {
            font-size: 1.3rem;
            opacity: 0.6;
            text-decoration: line-through;
            margin-bottom: 0.5rem;
        }

        .current-price {
            font-family: 'Montserrat', sans-serif;
            font-size: 4.5rem;
            font-weight: 800;
            line-height: 1;
            display: flex;
            align-items: flex-start;
            gap: 0.25rem;
        }

        .current-price .currency {
            font-size: 2.5rem;
            margin-top: 0.5rem;
        }

        .current-price .period {
            font-size: 1.3rem;
            font-weight: 500;
            opacity: 0.8;
            align-self: flex-end;
            margin-bottom: 0.75rem;
        }

        .pricing-savings {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 1rem 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .pricing-savings p {
            font-weight: 600;
            font-size: 1rem;
            margin: 0;
        }

        .pricing-savings .savings-amount {
            color: #60d4ff;
            font-weight: 700;
        }

        .pricing-right {
            padding: 3.5rem 3rem;
            background: white;
        }

        .pricing-features {
            margin-bottom: 2.5rem;
        }

        .pricing-features h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .pricing-features li {
            padding: 0.85rem 0;
            color: var(--text-primary);
            font-size: 1rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            border-bottom: 1px solid var(--stone);
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: "✓";
            color: var(--blue);
            font-weight: 700;
            font-size: 1.4rem;
            flex-shrink: 0;
            line-height: 1;
        }

        .pricing-cta {
            margin-top: 2rem;
        }

        .pricing-cta .primary-btn {
            width: 100%;
            font-size: 1.15rem;
            padding: 1.25rem 2rem;
        }

        .pricing-note {
            margin-top: 1.5rem;
            padding: 1.25rem;
            background: var(--cream);
            border-radius: 10px;
            border-left: 4px solid var(--blue);
        }

        .pricing-note p {
            color: var(--text-primary);
            font-size: 0.9rem;
            margin: 0;
            line-height: 1.6;
        }

        .pricing-note strong {
            color: var(--blue);
            font-weight: 700;
        }

        /* Final CTA */
        .final-cta {
            padding: 4rem 1.5rem;
            background: var(--navy);
            color: white;
            text-align: center;
        }

        .final-cta-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .final-cta h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            font-weight: 800;
        }

        .final-cta p {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            line-height: 1.7;
        }

        .final-cta .primary-btn {
            background: white;
            color: var(--navy);
            border-color: white;
        }

        .final-cta .primary-btn:hover {
            background: var(--cream);
            transform: translateY(-3px);
            box-shadow: 0 12px 28px rgba(255, 255, 255, 0.3);
        }

        /* Contact Section */
        .contact {
            padding: 6rem 1.5rem;
            background: white;
        }

        .contact-container {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            align-items: start;
        }

        .contact-info h2 {
            font-family: 'Montserrat', sans-serif;
            font-size: 2.5rem;
            color: var(--navy);
            margin-bottom: 1rem;
            font-weight: 800;
        }

        .contact-info p {
            font-size: 1.1rem;
            color: var(--text-secondary);
            margin-bottom: 2.5rem;
            line-height: 1.7;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1.25rem;
            background: var(--cream);
            border-radius: 12px;
            border-left: 4px solid var(--blue);
        }

        .contact-item-icon {
            width: 48px;
            height: 48px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .contact-item-icon svg {
            width: 24px;
            height: 24px;
            stroke: var(--blue);
            stroke-width: 2;
        }

        .contact-item-content h4 {
            font-size: 0.85rem;
            color: var(--text-secondary);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 0.25rem;
        }

        .contact-item-content p {
            font-size: 1.1rem;
            color: var(--navy);
            font-weight: 600;
            margin: 0;
        }

        .contact-item-content a {
            color: var(--navy);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item-content a:hover {
            color: var(--blue);
        }

        .contact-form-wrapper {
            background: var(--cream);
            padding: 2.5rem;
            border-radius: 16px;
            border: 1px solid var(--stone);
        }

        .contact-form h3 {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: var(--navy);
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 0.5rem;
            font-size: 0.95rem;
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.875rem 1rem;
            border: 2px solid var(--stone);
            border-radius: 8px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            color: var(--text-primary);
            background: white;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .submit-btn {
            width: 100%;
            background: var(--navy);
            color: white;
            padding: 1rem 2rem;
            border: 2px solid var(--navy);
            border-radius: 8px;
            font-weight: 600;
            font-size: 1.05rem;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'DM Sans', sans-serif;
        }

        .submit-btn:hover {
            background: var(--navy-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(10, 22, 40, 0.2);
        }

        /* Footer */
        footer {
            background: var(--navy-light);
            color: rgba(255, 255, 255, 0.8);
            padding: 3rem 1.5rem 2rem;
        }

        .footer-content {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 3rem;
            margin-bottom: 2rem;
        }

        .footer-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .footer-brand span {
            color: var(--blue);
            font-weight: 800;
        }

        .footer-description {
            line-height: 1.7;
            opacity: 0.8;
        }

        .footer-links h4 {
            color: white;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links a {
            display: block;
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin-bottom: 0.75rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--blue);
        }

        .footer-bottom {
            max-width: 1280px;
            margin: 0 auto;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            opacity: 0.7;
            font-size: 0.9rem;
        }

        /* Responsive - Tablet */
        @media (max-width: 968px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero {
                grid-template-columns: 1fr;
                padding-top: 7rem;
                gap: 3rem;
            }

            .hero-content h1 {
                font-size: 2.75rem;
            }

            .hero-content p {
                font-size: 1.15rem;
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 640px) {
            nav {
                padding: 1rem 1.25rem;
            }

            .logo {
                font-size: 1.2rem;
            }

            .hero {
                padding: 6rem 1.25rem 3rem;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero-content p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-cta {
                flex-direction: column;
                gap: 0.75rem;
            }

            .primary-btn,
            .secondary-btn {
                width: 100%;
                padding: 0.9rem 2rem;
                font-size: 1rem;
            }

            .dashboard-preview {
                padding: 1.5rem;
            }

            .preview-stat {
                padding: 1rem;
            }

            .preview-stat-value {
                font-size: 1.75rem;
            }

            .trust-content {
                gap: 1.5rem;
            }

            .trust-item {
                flex: 0 0 calc(50% - 0.75rem);
            }

            .trust-number {
                font-size: 2rem;
            }

            .trust-label {
                font-size: 0.8rem;
            }

            .features {
                padding: 3rem 1.25rem;
            }

            .section-header {
                margin-bottom: 2.5rem;
            }

            .section-label {
                font-size: 0.8rem;
            }

            .section-title {
                font-size: 1.85rem;
                margin-bottom: 1rem;
            }

            .section-description {
                font-size: 1rem;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .feature-card {
                padding: 2rem;
            }

            .feature-title {
                font-size: 1.25rem;
            }

            .feature-description {
                font-size: 0.95rem;
            }

            .how-it-works {
                padding: 3rem 1.25rem;
            }

            .step {
                grid-template-columns: 70px 1fr;
                gap: 1.5rem;
                margin-bottom: 2.5rem;
            }

            .step:not(:last-child)::after {
                left: 34px;
                top: 70px;
            }

            .step-number {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .step-content h3 {
                font-size: 1.35rem;
                margin-bottom: 0.5rem;
            }

            .step-content p {
                font-size: 0.95rem;
            }

            .final-cta {
                padding: 3rem 1.25rem;
            }

            .final-cta h2 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .final-cta p {
                font-size: 1.05rem;
                margin-bottom: 2rem;
            }

            .pricing {
                padding: 3rem 1.25rem;
            }

            .pricing-card {
                grid-template-columns: 1fr;
            }

            .pricing-left {
                padding: 2.5rem 2rem;
            }

            .pricing-title {
                font-size: 2rem;
            }

            .pricing-subtitle {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .current-price {
                font-size: 3.5rem;
            }

            .current-price .currency {
                font-size: 2rem;
            }

            .current-price .period {
                font-size: 1.1rem;
            }

            .original-price {
                font-size: 1.1rem;
            }

            .pricing-savings {
                padding: 0.85rem 1.25rem;
            }

            .pricing-savings p {
                font-size: 0.9rem;
            }

            .pricing-right {
                padding: 2.5rem 2rem;
            }

            .pricing-features h4 {
                font-size: 1rem;
                margin-bottom: 1.25rem;
            }

            .pricing-features li {
                font-size: 0.95rem;
                padding: 0.75rem 0;
            }

            .pricing-features li::before {
                font-size: 1.2rem;
            }

            .pricing-cta .primary-btn {
                font-size: 1.05rem;
                padding: 1.1rem 2rem;
            }

            .pricing-note {
                padding: 1rem;
            }

            .pricing-note p {
                font-size: 0.85rem;
            }

            .contact {
                padding: 3rem 1.25rem;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .contact-info h2 {
                font-size: 2rem;
            }

            .contact-info p {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .contact-item {
                padding: 1rem;
            }

            .contact-item-icon {
                width: 44px;
                height: 44px;
            }

            .contact-item-content h4 {
                font-size: 0.8rem;
            }

            .contact-item-content p {
                font-size: 1rem;
            }

            .contact-form-wrapper {
                padding: 2rem 1.5rem;
            }

            .contact-form h3 {
                font-size: 1.3rem;
                margin-bottom: 1.25rem;
            }

            .form-group {
                margin-bottom: 1.25rem;
            }

            .form-group label {
                font-size: 0.9rem;
            }

            .form-group input,
            .form-group textarea,
            .form-group select {
                padding: 0.8rem 0.875rem;
                font-size: 0.95rem;
            }

            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .submit-btn {
                padding: 0.95rem 1.75rem;
                font-size: 1rem;
            }

            footer {
                padding: 2.5rem 1.25rem 1.5rem;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-brand {
                font-size: 1.3rem;
            }

            .footer-description {
                font-size: 0.95rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 380px) {
            .hero-content h1 {
                font-size: 1.75rem;
            }

            .section-title {
                font-size: 1.65rem;
            }

            .final-cta h2 {
                font-size: 1.75rem;
            }

            .primary-btn,
            .secondary-btn {
                padding: 0.85rem 1.5rem;
                font-size: 0.95rem;
            }
        }