@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #1a3a5c;
    --secondary: #c9a96e;
    --accent: #e8734a;
    --danger: #e74c3c;
    --bg-dark: #0f1f33;
    --bg-light: #f8f5f0;
    --text-dark: #1a1a1a;
    --text-light: #f8f5f0;
    --text-muted: #6b7280;
    --card-bg: #ffffff;
    --border: #e5e2dc;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text-dark); line-height: 1.6; background: var(--bg-light); overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', serif; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ========== URGENCY BAR ========== */
.urgency-bar {
    background: linear-gradient(90deg, var(--danger), #c0392b);
    color: #fff;
    text-align: center;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.3px;
}
.urgency-bar .countdown-inline {
    font-family: 'Inter', monospace;
    background: rgba(0,0,0,0.2);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
}

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: fixed;
    top: -80px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 31, 51, 0.97);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2rem;
    transition: top 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-header.active { top: 0; }
.sticky-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-light); }
.sticky-logo span { color: var(--secondary); }
.sticky-right { display: flex; align-items: center; gap: 1.5rem; }
.sticky-price { color: var(--text-light); font-size: 0.9rem; }
.sticky-price del { color: rgba(255,255,255,0.4); margin-right: 0.4rem; }
.sticky-price strong { color: var(--secondary); font-size: 1.1rem; }
.sticky-cta {
    padding: 0.4rem 1rem;
    background: var(--accent);
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
    font-size: 0.8rem;
    transition: all 0.3s;
    white-space: nowrap;
}
.sticky-cta:hover { background: #d4623a; transform: scale(1.03); }

/* ========== HERO ========== */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/small2.png');
    background-size: cover;
    background-position: center;
    filter: brightness(0.35);
}
.hero-content {
    position: relative;
    z-index: 1;
    padding: 2rem;
    max-width: 700px;
}
.hero-badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse-badge 2s infinite;
}
@keyframes pulse-badge {
    0%, 100% { box-shadow: 0 0 0 0 rgba(232,115,74,0.5); }
    50% { box-shadow: 0 0 0 12px rgba(232,115,74,0); }
}
.hero h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    color: var(--text-light);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.hero h1 .gold { color: var(--secondary); }
.hero-sub {
    font-size: 0.95rem;
    color: rgba(248,245,240,0.85);
    margin-bottom: 1.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.hero-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hero-pricing .old-price {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: line-through;
    font-weight: 300;
}
.hero-pricing .new-price {
    font-size: 3rem;
    color: var(--secondary);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
}
.cta-btn {
    display: inline-block;
    padding: 1rem 3rem;
    background: var(--accent);
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 35px rgba(232,115,74,0.4); }
.cta-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    animation: shimmer 3s infinite;
}
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.hero-guarantee {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(248,245,240,0.5);
}
.hero-guarantee i { color: #4ade80; margin-right: 0.3rem; }

/* ========== SOCIAL PROOF STRIP ========== */
.social-proof {
    background: var(--bg-dark);
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.proof-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248,245,240,0.7);
    font-size: 0.85rem;
}
.proof-item .number { color: var(--secondary); font-weight: 700; font-size: 1rem; }
.proof-item .stars { color: #fbbf24; letter-spacing: 2px; }

/* ========== SECTIONS ========== */
section { padding: 5rem 2rem; }
.container { max-width: 1000px; margin: 0 auto; }
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
}
.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== BEFORE / AFTER ========== */
.comparison {
    background: var(--card-bg);
}
.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.compare-col {
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
}
.compare-col.bad {
    background: linear-gradient(135deg, #fef2f2, #fff);
    border-color: #fecaca;
}
.compare-col.good {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    border-color: #bbf7d0;
}
.compare-col h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.compare-col.bad h3 { color: var(--danger); }
.compare-col.good h3 { color: #16a34a; }
.compare-col ul { list-style: none; }
.compare-col ul li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-muted);
}
.compare-col ul li i { flex-shrink: 0; margin-top: 3px; }
.compare-col.bad ul li i { color: var(--danger); }
.compare-col.good ul li i { color: #16a34a; }

/* ========== SPOT COUNTER ========== */
.counter-section {
    background: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
}
.counter-section .section-title { color: var(--text-light); }
.counter-big {
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.counter-label {
    font-size: 1.3rem;
    color: rgba(248,245,240,0.6);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* ========== CAROUSEL ========== */
.carousel-section { padding: 0; background: var(--primary); position: relative; overflow: hidden; }
.carousel-section .section-title { color: var(--text-light); padding-top: 3rem; }
.carousel-section .section-subtitle { color: rgba(248,245,240,0.5); }
.swiper-container { width: 100%; }
.swiper-slide { position: relative; }
.swiper-slide img { width: 100%; height: 70vh; object-fit: cover; display: block; }
.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem 2rem;
    background: linear-gradient(to top, rgba(26,58,92,0.75), transparent);
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}
.swiper-button-prev, .swiper-button-next {
    color: rgba(255,255,255,0.7) !important;
    transition: color 0.3s;
}
.swiper-button-prev:hover, .swiper-button-next:hover { color: #fff !important; }
.swiper-pagination-bullet { background: #fff !important; opacity: 0.4; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--secondary) !important; }

/* ========== VALUE STACK ========== */
.value-stack { background: var(--bg-light); }
.stack-list { max-width: 700px; margin: 0 auto 2rem; }
.stack-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
}
.stack-item:hover { background: rgba(201,169,110,0.05); }
.stack-item:last-child { border-bottom: none; }
.stack-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}
.stack-feature i { color: var(--secondary); font-size: 1.1rem; width: 20px; text-align: center; }
.stack-check {
    color: #22c55e;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.stack-total {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid var(--secondary);
    max-width: 500px;
    margin: 0 auto;
}
.stack-total .total-compare {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.stack-total .total-price {
    font-size: 2rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
}

/* ========== LANGUAGES ========== */
.languages-section { background: var(--card-bg); text-align: center; }
.lang-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}
.lang-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border);
    min-width: 130px;
    transition: transform 0.3s, box-shadow 0.3s;
}
.lang-card:hover { transform: translateY(-4px); box-shadow: 0 8px 25px rgba(0,0,0,0.08); }
.lang-card img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.lang-card span { font-size: 0.9rem; font-weight: 600; color: var(--primary); }

/* ========== GUIDE PREVIEW (Phone Mockup) ========== */
.preview-section { background: var(--bg-light); }
.preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}
/* CSS-drawn phone frame — no image alignment headaches */
.preview-phone {
    position: relative;
    width: min(480px, 92%);
    aspect-ratio: 9 / 19.5;
    background: linear-gradient(135deg, #2a2a2a 0%, #0e0e0e 100%);
    border-radius: 48px;
    padding: 14px;
    box-shadow:
        0 0 0 2px #1a1a1a,
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 30px 60px rgba(0,0,0,0.28),
        0 10px 25px rgba(0,0,0,0.18);
}
/* Hide the bundled mockup image — replaced by CSS frame */
.preview-phone .mockup-frame { display: none; }
/* Dynamic island / camera area — proportional to phone size */
.preview-phone::before {
    content: '';
    position: absolute;
    top: 2.1%;
    left: 50%;
    transform: translateX(-50%);
    width: 20%;
    height: 2.3%;
    background: #000;
    border-radius: 999px;
    z-index: 3;
}
.phone-screen-area {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 34px;
    overflow: hidden;
    background: #1a3a5c;
    z-index: 1;
}
.phone-screen-area .mockup-screen {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
.preview-features {
    max-width: 700px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3rem;
}
.preview-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0;
}
.preview-feature-item i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}
.preview-feature-item p { font-size: 0.95rem; color: var(--text-muted); }
.preview-feature-item strong { color: var(--text-dark); }

/* ========== TESTIMONIALS ========== */
.testimonials { background: var(--bg-dark); color: var(--text-light); }
.testimonials .section-title { color: var(--text-light); }
.testimonials .section-subtitle { color: rgba(248,245,240,0.5); }
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
}
.testimonial-stars { color: #fbbf24; margin-bottom: 0.75rem; letter-spacing: 2px; font-size: 0.9rem; }
.testimonial-text { font-size: 0.95rem; color: rgba(248,245,240,0.8); font-style: italic; margin-bottom: 1rem; line-height: 1.6; }
.testimonial-author { font-size: 0.85rem; color: var(--secondary); font-weight: 600; }

/* ========== FAQ ========== */
.faq-section { background: var(--bg-light); }
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item { margin-bottom: 0.75rem; }
.accordion-btn {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    font-family: 'Inter', sans-serif;
}
.accordion-btn:hover { border-color: var(--secondary); }
.accordion-btn.active { border-color: var(--secondary); border-radius: 10px 10px 0 0; }
.accordion-btn .icon { transition: transform 0.3s; font-size: 0.8rem; color: var(--text-muted); }
.accordion-btn.active .icon { transform: rotate(180deg); }
.accordion-panel {
    max-height: 0;
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 10px 10px;
    transition: max-height 0.3s ease;
}
.accordion-panel p {
    padding: 1.2rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== GUARANTEE SECTION ========== */
.guarantee-section {
    background: linear-gradient(135deg, #f0fdf4, #fff);
    text-align: center;
    padding: 3rem 2rem;
}
.guarantee-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2.5rem;
    background: var(--card-bg);
    border-radius: 16px;
    border: 2px solid #bbf7d0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.guarantee-badge i { font-size: 2.5rem; color: #16a34a; }
.guarantee-badge-text h4 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #16a34a;
    margin-bottom: 0.25rem;
}
.guarantee-badge-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: left;
}

/* ========== FINAL CTA ========== */
.final-cta {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--text-light);
    padding: 5rem 2rem;
}
.final-cta h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}
.final-cta .final-sub {
    color: rgba(248,245,240,0.6);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.final-pricing { margin-bottom: 2rem; }
.final-pricing del { color: rgba(255,255,255,0.3); font-size: 1.5rem; margin-right: 1rem; }
.final-pricing .big-price { font-size: 3.5rem; color: var(--secondary); font-weight: 900; font-family: 'Playfair Display', serif; }
.final-cta .cta-btn { font-size: 1.3rem; padding: 1.2rem 3.5rem; }
.final-note { margin-top: 1rem; font-size: 0.8rem; color: rgba(248,245,240,0.4); }
.final-note i { color: #4ade80; margin-right: 0.3rem; }

/* ========== MOBILE STICKY CTA ========== */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--bg-dark);
    padding: 0.8rem 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    align-items: center;
    justify-content: space-between;
}
.mobile-cta-price { color: var(--text-light); }
.mobile-cta-price del { color: rgba(255,255,255,0.3); font-size: 0.85rem; }
.mobile-cta-price strong { color: var(--secondary); font-size: 1.3rem; margin-left: 0.4rem; }
.mobile-cta .cta-btn { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

/* ========== FOOTER ========== */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--bg-dark);
    color: rgba(248,245,240,0.3);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ========== FOOTER IG ========== */
.footer-ig { margin-top: 0.5rem; }
.footer-ig a { color: var(--secondary); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.footer-ig a:hover { opacity: 0.75; }

/* ========== LANGUAGE OVERLAY ========== */
.lang-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(145deg, #0b1a2e 0%, #1a3a5c 60%, #0f2540 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lang-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 100%;
}
.lang-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}
.lang-logo-porto {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.08em;
    line-height: 1;
}
.lang-logo-guide {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 4vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--secondary);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}
.lang-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin: 0;
}
.lang-grid-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    width: 100%;
}
.lang-overlay-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.4rem 1rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.25s ease;
    color: #fff;
}
.lang-overlay-btn:hover {
    background: rgba(201,169,110,0.15);
    border-color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.15);
}
.lang-flag { font-size: 2rem; line-height: 1; }
.lang-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
}

/* ========== COUPON ========== */
.coupon-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}
.coupon-label { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.coupon-code {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: rgba(201,169,110,0.15);
    border: 1px dashed var(--secondary);
    border-radius: 6px;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Inter', monospace;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s;
}
.coupon-code:hover { background: rgba(201,169,110,0.25); }
.coupon-code.copied { border-color: #4ade80; color: #4ade80; background: rgba(74,222,128,0.1); }
.coupon-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: rgba(248,245,240,0.6);
}
.coupon-code-dark {
    background: rgba(201,169,110,0.1);
    border-color: rgba(201,169,110,0.5);
}

/* ========== CREATOR SECTION ========== */
.creator-section {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 5rem 2rem;
}
.creator-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 950px;
    margin: 0 auto;
}
.creator-icon-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.creator-icon-wrap {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(201,169,110,0.1);
    border: 2px solid rgba(201,169,110,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--secondary);
}
.creator-stats {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.creator-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.07);
}
.stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    color: rgba(248,245,240,0.45);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}
.creator-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.creator-text h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.creator-sub {
    font-size: 1.05rem;
    color: rgba(248,245,240,0.45);
    font-style: italic;
    margin-bottom: 1rem;
}
.creator-text p {
    color: rgba(248,245,240,0.75);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.creator-text em { color: var(--secondary); font-style: italic; }
.creator-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.creator-highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    color: rgba(248,245,240,0.7);
}
.creator-highlight i { color: var(--secondary); width: 18px; text-align: center; flex-shrink: 0; }
.creator-single { max-width: 800px; margin: 0 auto; }
.creator-body-text p { margin-bottom: 1.2rem; line-height: 1.8; color: rgba(255,255,255,0.85); }
.creator-body-text p:first-child { font-size: 1rem; }
.creator-quote { font-style: italic; color: var(--secondary); font-size: 1.05rem; border-left: 3px solid var(--secondary); padding-left: 1rem; }
.creator-ig { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; color: var(--secondary); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: opacity 0.2s; }
.creator-ig:hover { opacity: 0.75; }

/* ========== ITINERARIES SECTION ========== */
.itineraries-section {
    background: var(--card-bg);
    padding: 2.5rem 2rem 5rem;
}
.itinerary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 1.5rem;
}
.itinerary-alt-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.itinerary-card {
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: var(--bg-light);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}
.itinerary-card:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.itinerary-card.itinerary-alt {
    background: linear-gradient(135deg, #f8f5f0 0%, #fff 100%);
    border-color: rgba(201,169,110,0.3);
    border-left: 3px solid var(--secondary);
}
.itinerary-number {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--accent);
    opacity: 0.6;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.itinerary-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent);
    background: rgba(232,115,74,0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.itinerary-alt-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(201,169,110,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}
.itinerary-card h3 {
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 0.6rem;
}
.itinerary-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.itinerary-spots { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.35rem; }
.itinerary-spots li {
    font-size: 0.78rem;
    color: var(--primary);
    opacity: 0.65;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.itinerary-spots li i { color: var(--accent); font-size: 0.65rem; flex-shrink: 0; }

/* ========== ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .itinerary-grid { grid-template-columns: 1fr 1fr; }
    .creator-grid { grid-template-columns: 1fr; }
    .creator-icon-col { flex-direction: row; flex-wrap: wrap; justify-content: center; }
    .creator-stats { flex-direction: row; justify-content: center; }
    .creator-stat { min-width: 100px; }
}

@media (max-width: 768px) {
    section { padding: 3rem 1.25rem; }
    .hero { align-items: flex-start; padding-top: 2rem; min-height: 0; }
    .comparison-grid { grid-template-columns: 1fr; }
    .preview-features { grid-template-columns: 1fr; gap: 0.75rem; }
    /* Mobile: lock height, let width auto-derive from aspect-ratio.
       This preserves the 9:19.5 iPhone shape — no flattening. */
    .preview-phone {
        width: auto;
        height: calc(100vh - 180px);
        max-width: 92%;
    }
    /* mobile-cta visibility controlled by JS scroll handler */
    .swiper-slide img { height: 50vh; }
    .urgency-bar { font-size: 0.75rem; }
    .social-proof { gap: 1.5rem; padding: 1rem; }
    .proof-item { font-size: 0.8rem; }
    .sticky-right { gap: 0.8rem; }
    .sticky-price { display: none; }
    .lang-card { min-width: 100px; padding: 1rem 1.2rem; }
    footer { padding-bottom: 5rem; }
    .stack-item { padding: 0.8rem 0; }
    .itinerary-grid { grid-template-columns: 1fr; }
    .creator-icon-col { flex-direction: column; align-items: center; }
    .creator-stats { flex-direction: row; justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-pricing .new-price { font-size: 2.5rem; }
    .final-pricing .big-price { font-size: 2.5rem; }
    .coupon-hero { flex-direction: column; gap: 0.5rem; }
    .creator-stats { flex-direction: column; align-items: center; }
    .creator-stat { width: 100%; max-width: 240px; }
}
