/* ===================================================================
   120 Giorni per Mettere le Ali – Stile condiviso
   File: 120giorni-style.css
   =================================================================== */

:root {
    --warm-cream: #FBF7F0;
    --soft-terracotta: #C4785B;
    --deep-olive: #4A5A3C;
    --warm-sand: #E8DCC8;
    --text-dark: #2C2C2C;
    --text-medium: #5A5A5A;
    --text-light: #8A8A8A;
    --accent-gold: #C9A84C;
    --soft-sage: #A8B89A;
    --gentle-blue: #7A9BAE;
    --blush: #D4A59A;
    --white: #FFFFFF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Source Sans 3', sans-serif;
    color: var(--text-dark);
    background: var(--warm-cream);
    line-height: 1.7;
    font-size: 18px;
    overflow-x: hidden;
}

/* =================== HERO =================== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 24px 80px;
    position: relative;
    background: #FBF7F0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(196,120,91,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168,184,154,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(196,120,91,0.3), transparent);
}

.hero-content { position: relative; z-index: 1; max-width: 720px; }

.hero-badge {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: white;
    font-weight: 600;
    margin-bottom: 28px;
    padding: 10px 24px;
    background: var(--soft-terracotta);
    border-radius: 40px;
    line-height: 1.5;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.6rem, 6vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.hero-title span { display: block; color: var(--soft-terracotta); }

.hero-subtitle {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    font-weight: 400;
    font-style: italic;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.5;
}

.hero-verse {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--deep-olive);
    margin-bottom: 42px;
    padding: 0 20px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 42px;
    background: var(--soft-terracotta);
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(196,120,91,0.3);
}

.hero-cta:hover {
    background: #b06a4e;
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(196,120,91,0.4);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    animation: float 3s ease-in-out infinite;
}

.hero-scroll svg { width: 28px; height: 28px; stroke: var(--warm-sand); }

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =================== COMMON =================== */
section { padding: 80px 24px; }
.container { max-width: 680px; margin: 0 auto; }

.section-label {
    font-size: 18px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 28px;
    color: var(--text-dark);
}

p { margin-bottom: 18px; color: #1a1a1a; }
strong { color: #1a1a1a; font-weight: 600; }

.highlight-box {
    background: linear-gradient(135deg, rgba(168,184,154,0.12), rgba(201,168,76,0.08));
    border-left: 3px solid var(--soft-sage);
    border-radius: 0 12px 12px 0;
    padding: 24px 28px;
    margin: 28px 0;
}

.highlight-box p { margin-bottom: 0; font-style: italic; color: var(--text-dark); }

/* =================== ABOUT / CHI SONO =================== */
.about {
    background: var(--white);
}

.about-inner {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 36px;
    align-items: start;
}

.about-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--warm-sand), #d8ccb8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    color: var(--soft-terracotta);
    font-weight: 600;
    flex-shrink: 0;
}

.about-text p:first-of-type { margin-top: 0; }

.about-signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--deep-olive);
    margin-top: 8px;
}

@media (max-width: 600px) {
    .about-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .about-photo { margin: 0 auto; width: 140px; height: 140px; font-size: 44px; }
}

/* =================== NUMBERS =================== */
.numbers {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 36px 0;
    flex-wrap: wrap;
}

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

.number-value {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--soft-terracotta);
    line-height: 1;
}

.number-label { font-size: 14px; color: #666; margin-top: 6px; margin-bottom: 0; }

/* =================== TWO THEMES =================== */
.themes { background: var(--warm-cream); }

/* --- Video embed --- */
.video-section {
    background: var(--white);
    padding: 48px 24px;
}

.video-block {
    margin: 40px 0 8px;
    text-align: center;
    width: 100%;
}

.video-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
    display: block;
}

.themes-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 40px;
}

.theme-card {
    padding: 36px 28px;
    border-radius: 16px;
    position: relative;
}

.theme-card--self {
    background: linear-gradient(145deg, #f7f0e6, #f0e8d8);
    border: 1px solid rgba(201,168,76,0.2);
}

.theme-card--others {
    background: linear-gradient(145deg, #eef3ea, #e5ece0);
    border: 1px solid rgba(168,184,154,0.3);
}

.theme-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 22px;
}

.theme-card--self .theme-icon { background: rgba(201,168,76,0.15); }
.theme-card--others .theme-icon { background: rgba(74,90,60,0.12); }

.theme-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.theme-card p { font-size: 17px; line-height: 1.7; margin-bottom: 0; color: #1a1a1a; }

/* =================== ROADMAP =================== */
.roadmap { background: var(--white); }

.roadmap-intro { margin-bottom: 40px; }

.roadmap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.roadmap-week {
    padding: 20px 20px 20px 20px;
    border-radius: 12px;
    border: 1px solid rgba(232,220,200,0.7);
    background: var(--warm-cream);
    transition: all 0.35s ease;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
}

.roadmap-week:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.roadmap-week--self:hover,
.roadmap-week--others:hover {
    background: var(--soft-terracotta);
    border-color: var(--soft-terracotta);
}

.roadmap-week--self:hover .roadmap-week-num-big,
.roadmap-week--self:hover .roadmap-week-title,
.roadmap-week--self:hover .roadmap-week-desc,
.roadmap-week--self:hover .roadmap-week-icon,
.roadmap-week--others:hover .roadmap-week-num-big,
.roadmap-week--others:hover .roadmap-week-title,
.roadmap-week--others:hover .roadmap-week-desc,
.roadmap-week--others:hover .roadmap-week-icon {
    color: white;
    transition: color 0.35s ease;
}

.roadmap-week--self:hover .roadmap-tag,
.roadmap-week--others:hover .roadmap-tag {
    background: rgba(255,255,255,0.2);
    color: white;
    transition: all 0.35s ease;
}

.roadmap-week-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-top: 2px;
}

.roadmap-week-num-big {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    transition: color 0.35s ease;
}

.roadmap-week--self .roadmap-week-num-big,
.roadmap-week--others .roadmap-week-num-big { color: var(--soft-terracotta); }

.roadmap-week-icon {
    font-size: 22px;
    opacity: 0.65;
    transition: color 0.35s ease, opacity 0.35s ease;
    color: var(--soft-terracotta);
}

.roadmap-week:hover .roadmap-week-icon { opacity: 0.8; }

.roadmap-week--self .roadmap-week-icon,
.roadmap-week--others .roadmap-week-icon { color: var(--soft-terracotta); }

.roadmap-week-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    transition: color 0.35s ease;
}

.roadmap-week-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0;
    transition: color 0.35s ease;
}

.roadmap-tag {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
    margin-top: 10px;
    font-weight: 500;
    transition: all 0.35s ease;
}

.roadmap-week--self .roadmap-tag,
.roadmap-week--others .roadmap-tag {
    background: rgba(196,120,91,0.15);
    color: #a0603e;
}

.roadmap-more {
    text-align: center;
    margin-top: 28px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

/* =================== ASSAGGIO / PREVIEW SLIDER =================== */
.preview {
    background: linear-gradient(165deg, #f0e8d8 0%, var(--warm-cream) 100%);
    padding-bottom: 48px;
}

.slider-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
    margin-top: 28px;
}

.slider-wrapper::-webkit-scrollbar { display: none; }

.slider-track {
    display: flex;
    gap: 24px;
    padding: 0 max(24px, calc((100vw - min(400px, 85vw)) / 2));
}

.preview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border-left: 4px solid var(--soft-terracotta);
    width: min(400px, 85vw);
    min-width: 0;
    max-width: 400px;
    flex-shrink: 0;
    scroll-snap-align: center;
    position: relative;
    overflow: hidden;
}

.preview-card-label {
    font-size: 15px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--soft-terracotta);
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.preview-card-label i {
    font-size: 18px;
}

.preview-card p {
    font-size: 17px;
    line-height: 1.75;
}

.preview-card p:last-of-type { margin-bottom: 0; }

.preview-fade {
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
    margin-top: -48px;
    position: relative;
    z-index: 1;
    pointer-events: none;
}

.preview-continue {
    text-align: center;
    font-size: 14px;
    color: var(--soft-terracotta);
    font-weight: 500;
    padding-top: 8px;
    position: relative;
    z-index: 2;
}

.preview-continue i { font-size: 16px; vertical-align: middle; margin-right: 4px; }

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--warm-sand);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--soft-terracotta);
    transform: scale(1.2);
}

.slider-container {
    position: relative;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: 1px solid var(--warm-sand);
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--soft-terracotta);
    font-size: 20px;
}

.slider-arrow:hover {
    background: var(--soft-terracotta);
    color: white;
    border-color: var(--soft-terracotta);
}

.slider-arrow--prev { left: 12px; }
.slider-arrow--next { right: 12px; }

.slider-arrow.hidden { opacity: 0; pointer-events: none; }

@media (max-width: 680px) {
    .slider-arrow { width: 36px; height: 36px; font-size: 16px; }
    .slider-arrow--prev { left: 6px; }
    .slider-arrow--next { right: 6px; }
}

/* =================== HOW IT WORKS =================== */
.how { background: var(--white); }

.timeline {
    margin-top: 40px;
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--warm-sand);
}

.timeline-item {
    position: relative;
    margin-bottom: 36px;
}

.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -44px;
    top: 2px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--soft-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.timeline-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.timeline-item p { font-size: 17px; margin-bottom: 0; color: #1a1a1a; }

/* =================== TESTIMONIALS =================== */
.testimonials { background: var(--warm-cream); }

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
}

.testimonial {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    padding-top: 40px;
    position: relative;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.testimonial::before {
    content: '\201C';
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    color: var(--soft-terracotta);
    opacity: 0.3;
    position: absolute;
    top: 6px;
    left: 20px;
    line-height: 1;
    z-index: 0;
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.testimonial-author {
    font-size: 15px;
    color: #777;
    font-weight: 500;
    margin-bottom: 0;
    font-style: normal;
}

/* =================== FOR YOU =================== */
.for-you { background: var(--white); }

.for-you-list {
    list-style: none;
    margin-top: 32px;
}

.for-you-list li {
    padding: 14px 0 14px 32px;
    position: relative;
    color: #1a1a1a;
    font-size: 18px;
    border-bottom: 1px solid rgba(232,220,200,0.6);
}

.for-you-list li:last-child { border-bottom: none; }

.for-you-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(168,184,154,0.3);
    border: 2px solid var(--soft-sage);
}

/* =================== NOT FOR YOU =================== */
.not-for-you { background: var(--warm-cream); }

.not-list { list-style: none; margin-top: 24px; }

.not-list li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #555;
    font-size: 17px;
}

.not-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--blush);
    font-weight: 600;
}

/* =================== PRICING =================== */
.pricing { background: var(--white); }

.pricing-card {
    background: linear-gradient(160deg, #faf6ef, #f5efe4);
    border: 1px solid var(--warm-sand);
    border-radius: 20px;
    padding: 40px 36px;
    text-align: center;
    margin-top: 36px;
}

.pricing-amount {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--soft-terracotta);
    margin-bottom: 4px;
}

.pricing-amount span { font-size: 1.2rem; font-weight: 400; }

.pricing-label { font-size: 16px; color: #555; margin-bottom: 24px; }

.pricing-note {
    font-size: 17px;
    color: #1a1a1a;
    line-height: 1.7;
    margin-bottom: 0;
    text-align: left;
}

.pricing-note + .pricing-note { margin-top: 14px; }

/* =================== CTA SECTION =================== */
.cta-section {
    background: linear-gradient(165deg, #3d2e25, #5a3d2e);
    color: var(--white);
    text-align: center;
    padding: 80px 24px;
}

.cta-section .section-title { color: var(--white); }
.cta-section p { color: rgba(255,255,255,0.9); }

.cta-dates {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 36px auto;
    max-width: 400px;
}

.cta-date {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 12px;
    padding: 16px 20px;
}

.cta-date-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.cta-date-text { text-align: left; }

.cta-date-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.6;
    margin-bottom: 2px;
}

.cta-date-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.cta-form {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 36px 28px;
    max-width: 440px;
    margin: 36px auto 0;
    text-align: center;
}

.cta-form p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
}

.cta-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(0,0,0,0.1);
    background: #ffffff;
    border-radius: 10px;
    color: #1a1a1a;
    font-size: 16px;
    font-family: 'Source Sans 3', sans-serif;
    outline: none;
    margin-bottom: 12px;
    transition: border-color 0.3s;
}

.cta-form input:focus { border-color: var(--soft-terracotta); }
.cta-form input::placeholder { color: #999; }

.cta-form button {
    width: 100%;
    padding: 16px;
    background: var(--soft-terracotta);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Source Sans 3', sans-serif;
    transition: background 0.3s;
}

.cta-form button:hover { background: #d08868; }

.cta-already {
    margin-top: 24px;
    font-size: 16px;
    opacity: 0.85;
}

.cta-already a,
.cta-already a strong {
    color: var(--white) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =================== MID CTA STRIP =================== */
.mid-cta {
    background: var(--warm-sand);
    text-align: center;
    padding: 48px 24px;
}

.mid-cta p {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.mid-cta a {
    display: inline-block;
    padding: 14px 36px;
    background: var(--soft-terracotta);
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mid-cta a:hover { background: #b06a4e; }

/* =================== FAQ =================== */
.faq { background: var(--warm-cream); }

.faq-item {
    border-bottom: 1px solid var(--warm-sand);
    padding: 24px 0;
}

.faq-item:first-of-type {
    border-top: 1px solid var(--warm-sand);
    margin-top: 36px;
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--soft-terracotta);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    font-family: 'Source Sans 3', sans-serif;
    font-weight: 300;
}

.faq-item.open .faq-question::after { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer { max-height: 300px; padding-top: 16px; }
.faq-answer p { font-size: 17px; line-height: 1.7; color: #1a1a1a; }

/* =================== FOOTER =================== */
footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 40px 24px;
    font-size: 14px;
}

footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer p { color: rgba(255,255,255,0.5); margin-bottom: 8px; }

/* =================== RESPONSIVE =================== */
@media (max-width: 680px) {
    section { padding: 60px 20px; }
    .themes-grid { grid-template-columns: 1fr; gap: 20px; }
    .theme-card { padding: 28px 24px; }
    .roadmap-grid { grid-template-columns: 1fr; }
    .pricing-card { padding: 32px 24px; }
    .cta-section { padding: 60px 20px; }
    .hero { padding: 48px 20px 60px; }
    .preview-card { padding: 28px 24px; }
}

@media (min-width: 900px) {
    .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

/* =================== ANIMATIONS =================== */
.fade-in {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible { opacity: 1; transform: translateY(0); }