/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

:root {
    --primary-color: #FF6B35;
    --primary-dark: #E85A2B;
    --secondary-color: #10b981;
    --accent-color: #0891b2;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand i {
    font-size: 1.8rem;
}

.brand-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.brand-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links li {
    list-style: none;
}

.nav-links li a {
    text-decoration: none !important;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--primary-color);
}

.logo {
    text-decoration: none !important;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-right: 3rem;
}

.logo i {
    font-size: 1.8rem;
}

.logo .brand-text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    line-height: 1;
}

.logo .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo .brand-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    color: #718096;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Country Pages Navigation */
nav.nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-shop-btn {
    background: var(--primary-color) !important;
    color: white !important;
    padding: 8px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s !important;
}

.nav-shop-btn:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: #ffffff;
    color: var(--text-dark);
    padding: 80px 0 50px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: #f0fdf4;
    color: var(--secondary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 2px solid #d1fae5;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--primary-dark);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================ */
/* TRUST BADGES SECTION */
/* ============================================ */
.trust-badges {
    background: #fff;
    padding: 2.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.trust-badges .badge-icon i,
.trust-badges .badge-icon .fas,
.trust-badges .badge-icon .fa {
    color: white !important;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 0.75rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
    border-color: var(--primary-color);
}

.badge-item:hover .badge-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.8rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}

.badge-icon i {
    color: white !important;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.badge-text strong {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    word-wrap: break-word;
}

.badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
    word-wrap: break-word;
}

@media (max-width: 768px) {
    .badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .badge-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* ============================================ */
/* FEATURES SECTION */
/* ============================================ */
/* Features Section */
.features {
    padding: 50px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white;
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 50px 0;
    background: var(--bg-white);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: nowrap;
}

.step {
    text-align: center;
    position: relative;
    flex: 0 1 280px;
    min-width: 0;
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.3s;
}

.step:hover .step-icon-large {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.step-number-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    border: 3px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.step-connector {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
    flex-grow: 0;
    width: auto;
    align-self: center;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.step p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Plans Section */
.plans {
    padding: 50px 0;
    background: var(--bg-light);
}

.region-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-color: var(--primary-color);
    position: relative;
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.plan-data {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.plan-duration {
    color: var(--text-light);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 1rem 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.plan-features i {
    color: var(--secondary-color);
}

.plan-btn {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.plan-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Coverage Section */
.coverage {
    padding: 50px 0;
    background: var(--bg-white);
}

.coverage-search {
    max-width: 500px;
    margin: 2rem auto;
    position: relative;
}

.coverage-search i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.coverage-search input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.coverage-search input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.country-item {
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.country-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.country-flag {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.country-name {
    font-weight: 600;
}

/* FAQ Section */
.faq {
    padding: 50px 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background: var(--bg-white);
}

.support-info-box {
    background: linear-gradient(135deg, #FF6B35 0%, #E85A2B 100%);
    color: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.support-info-box p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.single-contact {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.contact-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    border-color: var(--primary-dark);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.contact-card:hover i {
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.contact-card:hover .contact-link {
    color: white;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.2fr;
        gap: 2rem;
    }
    .footer-grid .footer-col:nth-child(4) {
        grid-column: 2;
    }
    .footer-grid .footer-col:nth-child(5) {
        grid-column: 3;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    .footer-grid .footer-col:nth-child(4),
    .footer-grid .footer-col:nth-child(5) {
        grid-column: auto;
    }
}

@media (max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.7rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
    display: block;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Fix for country pages navigation */
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid,
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    /* Better mobile viewport control */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }
    
    .hero-content {
        padding: 0 10px;
    }
}

/* Extra small devices (phones, less than 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 1.2rem;
    }
    
    .hero-stats .stat-label {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.plan-card,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Shop Section */
.shop-section {
    padding: 50px 0;
    background: var(--bg-light);
}

/* Embedded Store Container */
.shop-embed-container {
    position: relative;
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 800px;
}

.shop-iframe {
    width: 100%;
    height: 1000px;
    min-height: 800px;
    border: none;
    display: block;
}

/* Fallback for when iframe doesn't load */
.iframe-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    text-align: center;
    padding: 3rem;
    border: 2px solid var(--border-color);
}

.fallback-content {
    max-width: 600px;
}

.fallback-content i {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.fallback-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.fallback-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.fallback-content .btn {
    background: var(--primary-color);
    color: white;
    font-size: 1.2rem;
    padding: 16px 32px;
}

.fallback-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    background: var(--primary-dark);
}

/* Popular Destinations */
.popular-destinations {
    margin: 4rem 0;
}

.popular-destinations h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.destination-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-color: var(--primary-dark);
}

.destination-card:hover h4,
.destination-card:hover p {
    color: white;
}

.destination-card .flag {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.destination-card h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.destination-card p {
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Why Shop Section */
.why-shop-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.why-shop-section h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.why-shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-item {
    text-align: center;
}

.why-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.why-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.why-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-weight: 600;
}

.badge-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

/* Partner Program Section */
.partner-section {
    padding: 50px 0;
    background: var(--bg-white);
}

.partner-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid var(--border-color);
}

.benefit-card.highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-color: var(--primary-dark);
}

.benefit-card:hover h3,
.benefit-card:hover p {
    color: white;
}

.benefit-card:hover .benefit-icon {
    background: rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.benefit-card.highlight .benefit-icon {
    background: rgba(255, 255, 255, 0.3);
}

.benefit-card:not(.highlight) .benefit-icon {
    background: var(--primary-color);
    color: white;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.benefit-card:not(.highlight) h3 {
    color: var(--text-dark);
}

.benefit-card p {
    line-height: 1.7;
}

.benefit-card:not(.highlight) p {
    color: var(--text-light);
}

/* Income Calculator - Compact */
.income-calculator-compact {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 2rem 0;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.1);
}

.income-calculator-compact h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.calc-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1rem 0;
}

.calc-group {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.calc-group label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.calc-group input,
.calc-group select {
    width: 80px;
    padding: 0.5rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s;
}

.calc-group input:focus,
.calc-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.calc-multiply,
.calc-equals {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.calc-result-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.result-monthly {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.result-label-small {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
}

.calc-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-light);
    margin-top: 1rem;
}

.yearly-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.yearly-text strong {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.btn-apply-small {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.btn-apply-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Partner Features */
.partner-features {
    margin: 3rem 0;
}

.partner-features h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Partner Form */
.partner-form-container {
    max-width: 700px;
    margin: 4rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.partner-form-container h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    text-align: center;
}

.partner-form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.partner-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    display: none;
}

.form-message.success {
    display: block;
    background: #d1fae5;
    color: #065f46;
    border: 2px solid #10b981;
}

.form-message.error {
    display: block;
    background: #fee2e2;
    color: #991b1b;
    border: 2px solid #ef4444;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: #fbbf24;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.author strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive Updates */
@media (max-width: 768px) {

/* Compact Sections - Reduced Spacing */
.compact-section {
    padding: 50px 0 !important;
}

.compact-section .section-title {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.compact-section .section-subtitle {
    margin-bottom: 2rem;
}

.compact-embed {
    min-height: 500px !important;
}

.compact-embed .shop-iframe {
    height: 600px !important;
    min-height: 500px !important;
}

.compact-destinations {
    margin: 2rem 0 !important;
}

.compact-destinations h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.income-calculator {
    padding: 2rem !important;
    margin: 2rem 0 !important;
}

.income-calculator h3 {
    font-size: 1.5rem !important;
}
    .shop-embed-container {
        min-height: 600px;
    }

    .shop-iframe {
        height: 700px;
        min-height: 600px;
    }

    .fallback-content i {
        font-size: 3rem;
    }

    .fallback-content h3 {
        font-size: 1.8rem;
    }

    .fallback-content p {
        font-size: 1rem;
    }

    .destination-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .destination-card {
        padding: 1.5rem 1rem;
    }

    .destination-card .flag {
        font-size: 2.5rem;
    }

    .why-shop-section {
        padding: 2rem 1.5rem;
    }

    .why-shop-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .income-calculator {
        padding: 2rem 1.5rem;
    }

    .calculator-grid {
        grid-template-columns: 1fr;
    }

    .result-amount {
        font-size: 2.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .partner-form-container {
        padding: 2rem 1.5rem;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
}

/* ============================================ */
/* PROMO CODE SECTION */
/* ============================================ */
.promo-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
}

.promo-card {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
    border: 3px solid var(--primary-color);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.promo-icon {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.promo-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.promo-content > p {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.promo-code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.promo-label {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.promo-code {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    background: #fff5f0;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 3px dashed var(--primary-color);
    letter-spacing: 3px;
    font-family: 'Courier New', monospace;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.promo-note {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1.5rem;
}

/* ============================================ */
/* COMPACT PROMO BANNER */
/* ============================================ */
.promo-section-compact {
    padding: 0;
    margin: 2rem 0;
}

.promo-banner {
    background: linear-gradient(135deg, #fff5f0 0%, #ffe8dd 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.promo-icon-small {
    font-size: 2rem;
    flex-shrink: 0;
}

.promo-text {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    flex-wrap: wrap;
}

.promo-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.promo-code-inline {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
    font-family: 'Courier New', monospace;
}

.promo-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.copy-btn-small {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.copy-btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ============================================ */
/* DESTINATIONS CAROUSEL */
/* ============================================ */
.destinations-carousel {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    overflow: hidden;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.destination-slide {
    min-width: calc(100% / 3);
    padding: 0 10px;
    box-sizing: border-box;
}

.destination-slide .destination-image {
    height: 200px;
    border-radius: 12px 12px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
}

.destination-slide .destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.flag-large {
    font-size: 4rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
    position: relative;
    z-index: 1;
}

.destination-info {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
    z-index: 5;
}

.destination-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.data-info {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.price-tag {
    background: #fff5f0;
    padding: 0.75rem;
    border-radius: 8px;
    margin: 0.75rem 0;
}

.price-tag .from {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag .price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.btn-shop-now {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-top: 1rem;
    position: relative;
    z-index: 10;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.3);
    touch-action: manipulation;
}

.btn-shop-now:hover,
.btn-shop-now:active {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.view-all-section {
    text-align: center;
    margin: 3rem 0 2rem;
}

/* ============================================ */
/* PLANS GRID FOR DESTINATION PAGES */
/* ============================================ */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(255,107,53,0.2);
}

.plan-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.plan-badge.popular {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.plan-price {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #fff5f0;
    border-radius: 12px;
    text-align: center;
}

.price-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    text-align: center;
    padding: 12px 30px;
    margin-top: auto;
    display: inline-block;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    text-decoration: none !important;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-block:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    text-decoration: none !important;
}

/* ============================================ */
/* RESPONSIVE - CAROUSEL */
/* ============================================ */
@media (max-width: 1024px) {
    .destination-slide {
        min-width: calc(100% / 2);
    }
    
    .carousel-container {
        padding: 0 50px;
    }
}

/* Tablet and smaller screens - How It Works */
@media (max-width: 1024px) {
    .steps {
        flex-wrap: wrap;
        gap: 3rem 2rem;
    }
    
    .step {
        flex: 0 1 calc(50% - 1rem);
        min-width: 200px;
    }
    
    .step-connector:last-of-type {
        display: none;
    }
}

@media (max-width: 768px) {
    .destination-slide {
        min-width: 100%;
    }
    
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .destination-image {
        height: 180px !important;
    }
    
    .flag-large {
        font-size: 3.5rem;
    }
    
    .destination-info {
        padding: 1.25rem;
        pointer-events: auto;
    }
    
    .btn-shop-now {
        width: 100%;
        display: block;
        padding: 14px 30px;
        font-size: 1rem;
        pointer-events: auto;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .price-tag .price {
        font-size: 1.75rem;
    }
    
    .promo-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .promo-text {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .copy-btn-small {
        width: 100%;
        justify-content: center;
    }
    
    /* How It Works - Mobile */
    .steps {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-connector {
        transform: rotate(90deg);
    }
    
    .step {
        min-width: 100%;
    }
    
    /* Calculator - Mobile */
    .calc-inline {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .calc-multiply,
    .calc-equals {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .calc-footer {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-apply-small {
        width: 100%;
    }
}