        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #0f172a;
            color: #f1f5f9;
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Header Navigation */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background-color: rgba(15, 23, 42, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid #1e293b;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 16px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #38bdf8;
        }

        .tagline {
            font-size: 12px;
            color: #cbd5e1;
            font-weight: normal;
        }

        .nav {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav a:hover {
            color: #38bdf8;
        }

        .cta-button {
            background-color: #ff6b35;
            color: #ffffff;
            padding: 10px 20px;
            border-radius: 8px;
            border: none;
            font-size: 15px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .cta-button:hover {
            background-color: #e55a28;
        }

        .section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 100px 24px 60px;
            border-bottom: 2px solid #1e293b;
        }

        .section-content {
            max-width: 1200px;
            width: 100%;
        }

        h1 {
            font-size: 48px;
            font-weight: bold;
            margin-bottom: 16px;
            color: #38bdf8;
        }

        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 100px 24px;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
            position: relative;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes typewriter {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink {
            50% { border-color: transparent; }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes glow {
            0%, 100% { box-shadow: 0 0 5px rgba(56, 189, 248, 0.5), 0 0 10px rgba(56, 189, 248, 0.3); }
            50% { box-shadow: 0 0 20px rgba(56, 189, 248, 0.8), 0 0 30px rgba(56, 189, 248, 0.5); }
        }

        @keyframes gradientMove {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transition: all 0.8s ease-out;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            animation: fadeIn 0.8s ease-out forwards;
        }

        .float-icon {
            animation: float 3s ease-in-out infinite;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(56, 189, 248, 0.03) 35px, rgba(56, 189, 248, 0.03) 70px);
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 56px;
            margin-bottom: 24px;
            overflow: hidden;
            white-space: nowrap;
            display: inline-block;
        }

        .hero h1.typing {
            border-right: 3px solid #38bdf8;
            animation: typewriter 3s steps(40) 0.5s forwards, blink 0.75s step-end infinite;
            width: 0;
        }

        .hero h1.typing-complete {
            border-right: none;
            width: auto;
        }

        .hero .subtitle {
            font-size: 24px;
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeIn 1s ease-out 3.5s forwards;
        }

        .hero-buttons {
            opacity: 0;
            animation: fadeIn 1s ease-out 4s forwards;
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-cta {
            background-color: #38bdf8;
            color: #0f172a;
            padding: 16px 40px;
            border-radius: 12px;
            border: none;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(56, 189, 248, 0.4);
        }

        .hero-cta:hover {
            transform: translateY(-4px) scale(1.05);
            box-shadow: 0 8px 35px rgba(56, 189, 248, 0.7);
            animation: pulse 0.6s ease-in-out;
        }

        .hero-cta-secondary {
            background-color: transparent;
            color: #38bdf8;
            padding: 16px 40px;
            border-radius: 12px;
            border: 2px solid #38bdf8;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .hero-cta-secondary:hover {
            background-color: rgba(56, 189, 248, 0.1);
            transform: translateY(-4px);
            box-shadow: 0 6px 25px rgba(56, 189, 248, 0.3);
        }

        .floating-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-icon {
            position: absolute;
            font-size: 40px;
            opacity: 0.15;
        }

        .floating-icon:nth-child(1) {
            top: 20%;
            left: 10%;
            animation: float 4s ease-in-out infinite;
        }

        .floating-icon:nth-child(2) {
            top: 60%;
            left: 85%;
            animation: float 5s ease-in-out infinite 1s;
        }

        .floating-icon:nth-child(3) {
            top: 80%;
            left: 15%;
            animation: float 6s ease-in-out infinite 2s;
        }

        .floating-icon:nth-child(4) {
            top: 30%;
            left: 80%;
            animation: float 5.5s ease-in-out infinite 0.5s;
        }

        h2 {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            color: #38bdf8;
        }

        h3 {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 12px;
            color: #cbd5e1;
        }

        .subtitle {
            font-size: 18px;
            color: #cbd5e1;
            margin-bottom: 10px;
        }

        .intro-text {
            font-size: 16px;
            color: #f1f5f9;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        ul {
            list-style: none;
            margin: 16px 0;
        }

        li {
            font-size: 15px;
            margin-bottom: 10px;
            padding-left: 24px;
            position: relative;
            color: #f1f5f9;
        }

        li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #38bdf8;
            font-weight: bold;
        }

        .card {
            background-color: #1e293b;
            padding: 20px;
            margin-bottom: 16px;
            border: 2px solid #38bdf8;
        }

        .two-column {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 16px;
        }

        .feature-list {
            background-color: #1e293b;
            padding: 20px;
            border: 2px solid #38bdf8;
        }

        .ideal-for {
            font-size: 16px;
            color: #cbd5e1;
            margin-top: 12px;
            font-style: italic;
        }

        .cta {
            font-size: 32px;
            color: #38bdf8;
            margin-bottom: 24px;
            font-weight: 600;
        }

        .contact-info {
            font-size: 20px;
            color: #f1f5f9;
            line-height: 2;
        }

        /* Modules Grid */
        .modules-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
            margin-top: 20px;
        }

        .module-card {
            background-color: #1e293b;
            padding: 16px;
            border: 2px solid #38bdf8;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .module-emoji {
            font-size: 32px;
            margin-bottom: 8px;
        }

        .module-name {
            font-size: 15px;
            font-weight: bold;
            color: #f1f5f9;
            margin-bottom: 6px;
        }

        .module-desc {
            font-size: 13px;
            color: #cbd5e1;
        }

        /* Special Offer Slide Styles */
        .offer-slide {
            background-color: #1a2e4a !important;
        }

        .offer-title {
            font-size: 36px;
            font-weight: bold;
            color: #ff6b35;
            margin-bottom: 16px;
            text-align: center;
        }

        .offer-intro {
            font-size: 17px;
            color: #f1f5f9;
            text-align: center;
            margin-bottom: 16px;
            font-weight: 500;
        }

        .offer-benefits {
            background-color: #0f172a;
            padding: 18px 24px;
            border: 3px solid #ff6b35;
            border-radius: 8px;
            margin-bottom: 16px;
        }

        .offer-benefits li {
            font-size: 16px;
            margin-bottom: 10px;
            color: #f1f5f9;
        }

        .offer-benefits li::before {
            content: "✓";
            color: #ff6b35;
            font-size: 22px;
            font-weight: bold;
        }

        .offer-cta {
            font-size: 20px;
            color: #ff6b35;
            text-align: center;
            font-weight: bold;
            margin-top: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Package Cards */
        .packages-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .package-card {
            background: linear-gradient(135deg, #1e293b 0%, #2d3e50 100%);
            border: 2px solid #38bdf8;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
        }

        .package-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 15px 50px rgba(56, 189, 248, 0.5);
            border-color: #5ccfff;
        }

        .package-badge {
            position: absolute;
            top: -12px;
            right: 20px;
            background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
            color: #ffffff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
        }

        .package-card h3 {
            font-size: 28px;
            margin-bottom: 12px;
        }

        .package-price {
            font-size: 32px;
            color: #38bdf8;
            font-weight: bold;
            margin: 16px 0;
        }

        .package-domain {
            font-size: 14px;
            color: #94a3b8;
            margin-bottom: 24px;
        }

        .btn-select {
            width: 100%;
            padding: 12px;
            background-color: #38bdf8;
            color: #0f172a;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 20px;
        }

        .btn-select:hover {
            background-color: #5ccfff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
        }

        /* Benefits Section */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .benefit-card {
            background: linear-gradient(135deg, #1e293b 0%, #2d3e50 100%);
            border: 2px solid #38bdf8;
            border-radius: 16px;
            padding: 32px;
            text-align: center;
            transition: all 0.3s;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(56, 189, 248, 0.3);
            border-color: #5ccfff;
        }

        .benefit-icon {
            font-size: 48px;
            margin-bottom: 16px;
            display: block;
            transition: transform 0.3s;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.2) rotate(5deg);
        }

        .benefit-title {
            font-size: 20px;
            font-weight: bold;
            color: #38bdf8;
            margin-bottom: 12px;
        }

        .benefit-desc {
            font-size: 15px;
            color: #cbd5e1;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #1e293b 0%, #2d3e50 100%);
            border: 2px solid #38bdf8;
            border-radius: 16px;
            padding: 32px;
            transition: all 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(56, 189, 248, 0.3);
        }

        .testimonial-rating {
            color: #ff6b35;
            font-size: 20px;
            margin-bottom: 16px;
        }

        .testimonial-text {
            font-size: 16px;
            color: #f1f5f9;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .testimonial-author {
            font-weight: bold;
            color: #38bdf8;
            margin-bottom: 4px;
        }

        .testimonial-business {
            font-size: 14px;
            color: #94a3b8;
        }

        /* Process Timeline */
        .process-timeline {
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
        }

        .timeline-line {
            position: absolute;
            top: 50px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #38bdf8 0%, #38bdf8 100%);
            z-index: 0;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            position: relative;
            z-index: 1;
        }

        .process-step {
            text-align: center;
        }

        .process-number {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #38bdf8 0%, #5ccfff 100%);
            color: #0f172a;
            font-size: 32px;
            font-weight: bold;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            border: 4px solid #0f172a;
            box-shadow: 0 6px 20px rgba(56, 189, 248, 0.4);
            transition: all 0.3s;
        }

        .process-step:hover .process-number {
            transform: scale(1.15);
            box-shadow: 0 8px 30px rgba(56, 189, 248, 0.6);
        }

        .process-title {
            font-size: 18px;
            font-weight: bold;
            color: #38bdf8;
            margin-bottom: 8px;
        }

        .process-desc {
            font-size: 14px;
            color: #cbd5e1;
            line-height: 1.5;
        }

        /* Newsletter */
        .newsletter-section {
            background: linear-gradient(135deg, #38bdf8 0%, #5ccfff 100%);
            padding: 60px 24px;
            text-align: center;
            margin: 80px 0;
            border-radius: 16px;
        }

        .newsletter-title {
            font-size: 32px;
            font-weight: bold;
            color: #0f172a;
            margin-bottom: 16px;
        }

        .newsletter-desc {
            font-size: 18px;
            color: #1e293b;
            margin-bottom: 32px;
        }

        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
            display: flex;
            gap: 12px;
        }

        .newsletter-input {
            flex: 1;
            padding: 16px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            background: #ffffff;
        }

        .newsletter-button {
            padding: 16px 32px;
            background-color: #ff6b35;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .newsletter-button:hover {
            background-color: #e55a28;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
        }

        .newsletter-success {
            color: #0f172a;
            font-weight: bold;
            margin-top: 16px;
            display: none;
        }

        /* FAQ Section */
        .faq-container {
            max-width: 800px;
            margin: 40px auto;
        }

        .faq-item {
            background-color: #1e293b;
            border: 1px solid #2d3e50;
            border-radius: 8px;
            margin-bottom: 16px;
            overflow: hidden;
        }

        .faq-question {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .faq-question:hover {
            background-color: #2d3e50;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.active .faq-answer {
            max-height: 300px;
            padding: 0 20px 20px;
        }

        .faq-icon {
            transition: transform 0.3s;
        }

        .faq-item.active .faq-icon {
            transform: rotate(180deg);
        }

        /* Modal */
        .modal {
            position: fixed;
            inset: 0;
            display: none;
            z-index: 2000;
        }

        .modal.open {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
        }

        .modal-content {
            position: relative;
            max-width: 520px;
            width: 90%;
            margin: auto;
            padding: 32px;
            background: #1e293b;
            color: #f1f5f9;
            border: 2px solid #38bdf8;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.3s ease-out;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .modal-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: none;
            border: none;
            color: #cbd5e1;
            font-size: 28px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .modal-close:hover {
            color: #38bdf8;
        }

        [data-modal-title] {
            font-size: 24px;
            font-weight: bold;
            color: #38bdf8;
            margin-bottom: 16px;
        }

        [data-modal-desc] {
            font-size: 16px;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .modal-cta {
            background-color: #ff6b35;
            color: #ffffff;
            padding: 12px 24px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
            width: 100%;
        }

        .modal-cta:hover {
            background-color: #e55a24;
        }

        .module-card {
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .module-card:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
            border-color: #5ccfff;
        }

        .module-emoji {
            transition: transform 0.3s;
        }

        .module-card:hover .module-emoji {
            transform: scale(1.2) rotate(10deg);
        }

        /* Contact Form */
        .contact-form {
            max-width: 600px;
            margin: 40px auto;
            background-color: #1e293b;
            padding: 40px;
            border-radius: 16px;
            border: 2px solid #38bdf8;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #cbd5e1;
            font-weight: 600;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #2d3e50;
            border-radius: 8px;
            background-color: #0f172a;
            color: #f1f5f9;
            font-size: 15px;
            font-family: Arial, sans-serif;
        }

        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #38bdf8;
        }

        .btn-submit {
            width: 100%;
            padding: 16px;
            background-color: #ff6b35;
            color: #ffffff;
            border: none;
            border-radius: 8px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background-color: #e55a28;
            transform: translateY(-2px);
        }

        /* Footer */
        .footer {
            background-color: #1e293b;
            padding: 60px 24px 24px;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 24px;
        }

        .footer-links a {
            color: #cbd5e1;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #38bdf8;
        }

        .copyright {
            color: #94a3b8;
            font-size: 14px;
        }

        @media (max-width: 1024px) {
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero .subtitle {
                font-size: 18px;
            }

            h2 {
                font-size: 28px;
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .packages-grid {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .process-number {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .hero-cta, .hero-cta-secondary {
                width: 100%;
            }

            .modules-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .module-emoji {
                font-size: 28px;
            }

            .module-name {
                font-size: 14px;
            }

            .module-desc {
                font-size: 12px;
            }
        }

        @media (max-width: 480px) {
            .modules-grid {
                grid-template-columns: 1fr;
            }
        }

        /* Subscription Cards Styles */
        .subscription-card {
            background: linear-gradient(135deg, #1e293b 0%, #2d3e50 100%);
            border-radius: 16px;
            padding: 40px;
            max-width: 700px;
            width: 100%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            text-align: center;
        }

        .subscription-card--startup {
            border: 3px solid #38bdf8;
        }

        .subscription-card--growth {
            border: 5px solid #ff6b35;
            box-shadow: 0 15px 50px rgba(255, 107, 53, 0.4), 0 0 0 1px #ff6b35;
            transform: scale(1.02);
        }

        .subscription-card--elite {
            border: 3px solid #38bdf8;
        }

        .subscription-header {
            margin-bottom: 24px;
        }

        .subscription-subtitle {
            font-size: 16px;
            color: #cbd5e1;
            font-weight: normal;
        }

        .subscription-price-section {
            margin: 24px 0;
            padding: 20px 0;
            border-top: 1px solid rgba(203, 213, 225, 0.2);
            border-bottom: 1px solid rgba(203, 213, 225, 0.2);
        }

        .annual-price-highlight {
            font-size: 48px;
            font-weight: bold;
            color: #ff6b35;
            line-height: 1.2;
            margin-bottom: 8px;
        }

        .monthly-equivalent {
            font-size: 18px;
            color: #94a3b8;
            margin-top: 8px;
        }

        .price-formula {
            font-size: 18px;
            color: #38bdf8;
            font-weight: 600;
            margin: 8px 0;
        }

        .monthly-annual-value {
            margin: 16px 0;
            line-height: 1.3;
        }

        .regular-price-striked {
            font-size: 16px;
            color: #94a3b8;
            text-decoration: line-through;
            margin: 8px 0;
        }

        .savings-highlight {
            font-size: 24px;
            color: #ff6b35;
            font-weight: bold;
            margin-top: 12px;
        }

        .discount-badge {
            background-color: #ff6b35;
            color: #0f172a;
            padding: 16px 24px;
            border-radius: 12px;
            margin: 20px auto;
            display: inline-block;
            font-size: 16px;
            line-height: 1.6;
            box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
        }

        .discount-badge--large {
            padding: 24px 32px;
            font-size: 18px;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
        }

        .discount-badge--standard {
            padding: 14px 20px;
            font-size: 15px;
        }

        .recommended-badge {
            position: absolute;
            top: -16px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #ff6b35;
            color: #0f172a;
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 18px;
            font-weight: bold;
            box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
            letter-spacing: 1px;
        }

        .subscription-features {
            margin-top: 24px;
            text-align: left;
        }

        .subscription-features ul {
            margin: 0;
        }

        .subscription-features li {
            font-size: 15px;
            margin-bottom: 10px;
            color: #e2e8f0;
        }

        .subscription-features li::before {
            color: #38bdf8;
        }

        .subscription-card--growth .subscription-features li::before {
            color: #ff6b35;
        }
