/* ═══════════════════════════════════════════════
   CLOSET INTELIGENTE — Atelier Atemporal
   Design System: Modernismo Orgânico
   Font: Newsreader | Color: Terracotta #b84b14
   ═══════════════════════════════════════════════ */

/* ─── Reset & Base ────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Core Palette */
    --terracotta: #b84b14;
    --terracotta-dark: #8f3a0e;
    --terracotta-light: #d4793e;
    --terracotta-glow: rgba(184, 75, 20, 0.12);
    --terracotta-soft: rgba(184, 75, 20, 0.06);

    /* Neutrals */
    --cream: #faf7f2;
    --cream-dark: #f0ebe3;
    --warm-white: #fefdfb;
    --sand: #e8e0d4;
    --stone: #c9bfb0;
    --warm-gray: #8a7e6e;
    --charcoal: #3d352c;
    --ink: #1a1610;

    /* Typography */
    --font-serif: 'Newsreader', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Transitions */
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --duration-fast: 200ms;
    --duration-normal: 350ms;
    --duration-slow: 600ms;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(26, 22, 16, 0.06);
    --shadow-md: 0 4px 16px rgba(26, 22, 16, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 22, 16, 0.12);
    --shadow-xl: 0 20px 60px rgba(26, 22, 16, 0.16);
    --shadow-terracotta: 0 8px 30px rgba(184, 75, 20, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--cream);
    color: var(--charcoal);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ─── Container ───────────────────────────────── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* ─── Typography ──────────────────────────────── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 400;
    line-height: 1.2;
    color: var(--ink);
}

em {
    font-style: italic;
    color: var(--terracotta);
}

/* ─── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 14px 32px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.15);
    transform: translateX(-100%);
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary {
    background: var(--terracotta);
    color: #fff;
    box-shadow: var(--shadow-terracotta);
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(184, 75, 20, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--charcoal);
    border: 1.5px solid var(--sand);
}

.btn-ghost:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: var(--terracotta-soft);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.05rem;
}

/* ═══════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--duration-normal) var(--ease-smooth);
    background: rgba(250, 247, 242, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 1px 20px rgba(26, 22, 16, 0.06);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: var(--ink);
    z-index: 10;
}

.logo-icon {
    color: var(--terracotta);
    font-size: 1.2rem;
}

.logo-text em {
    font-style: italic;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 36px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--warm-gray);
    transition: color var(--duration-fast) var(--ease-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--duration-normal) var(--ease-smooth);
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--terracotta);
    background: var(--terracotta-glow);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.nav-cta:hover {
    background: var(--terracotta);
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    transition: all var(--duration-normal) var(--ease-smooth);
    border-radius: 2px;
}

/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(165deg, var(--warm-white) 0%, var(--cream) 40%, var(--cream-dark) 100%);
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, var(--terracotta-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(184, 75, 20, 0.04) 0%, transparent 40%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--terracotta-glow);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-smooth) forwards;
    opacity: 0;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.15s forwards;
    opacity: 0;
}

.title-accent {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--warm-gray);
    max-width: 480px;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.3s forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--charcoal);
    font-weight: 500;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.45s forwards;
    opacity: 0;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--warm-gray);
    animation: fadeInUp 0.8s var(--ease-smooth) 0.6s forwards;
    opacity: 0;
}

.trust-stars {
    color: var(--terracotta-light);
    letter-spacing: 2px;
}

/* Hero Visual - Card */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 1s var(--ease-smooth) 0.4s forwards;
    opacity: 0;
}

.hero-card {
    position: relative;
}

.card-frame {
    width: 320px;
    height: 440px;
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: transform var(--duration-slow) var(--ease-smooth);
    overflow: hidden;
}

.card-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--terracotta), var(--terracotta-light));
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-card:hover .card-frame {
    transform: translateY(-8px) rotate(-1deg);
}

.card-inner {
    text-align: center;
    color: var(--ink);
}

.card-label {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: var(--space-lg);
}

.card-icon {
    color: var(--stone);
    margin-bottom: var(--space-md);
}

.card-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    font-weight: 300;
}

.card-author {
    font-size: 0.85rem;
    color: var(--warm-gray);
    font-style: italic;
}

.card-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 40px;
    background: radial-gradient(ellipse, rgba(26, 22, 16, 0.1) 0%, transparent 70%);
    z-index: 1;
}

/* Floating tags */
.hero-floating-tag {
    position: absolute;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background: var(--warm-white);
    border: 1px solid var(--sand);
    color: var(--charcoal);
    box-shadow: var(--shadow-sm);
    z-index: 3;
    animation: floatTag 4s ease-in-out infinite;
}

.tag-1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.tag-2 {
    bottom: 25%;
    left: 2%;
    animation-delay: 1.3s;
}

.tag-3 {
    bottom: 10%;
    right: 15%;
    animation-delay: 2.6s;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollPulse 2s infinite;
}

/* ═══════════════════════════════════════════════
   RECOGNITION BAR
   ═══════════════════════════════════════════════ */
.recognition {
    padding: var(--space-xl) 0;
    background: var(--warm-white);
    border-top: 1px solid var(--sand);
    border-bottom: 1px solid var(--sand);
}

.recognition-label {
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--stone);
    margin-bottom: var(--space-md);
}

.recognition-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.recognition-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rec-number {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    color: var(--terracotta);
    font-weight: 300;
    font-style: italic;
}

.rec-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--charcoal);
    letter-spacing: 0.02em;
}

.recognition-divider {
    width: 1px;
    height: 24px;
    background: var(--sand);
}

/* ═══════════════════════════════════════════════
   PHILOSOPHY / BENEFITS
   ═══════════════════════════════════════════════ */
.philosophy {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--terracotta-glow);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: var(--space-sm);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--warm-gray);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--terracotta);
    transition: height var(--duration-slow) var(--ease-smooth);
    border-radius: 0 0 2px 0;
}

.benefit-card:hover {
    border-color: var(--terracotta-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.benefit-card:hover::before {
    height: 100%;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--terracotta-glow);
    border-radius: var(--radius-md);
    color: var(--terracotta);
    margin-bottom: var(--space-md);
    transition: all var(--duration-normal) var(--ease-smooth);
}

.benefit-card:hover .benefit-icon {
    background: var(--terracotta);
    color: #fff;
}

.benefit-title {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
    font-weight: 400;
}

.benefit-text {
    font-size: 0.92rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   COLLECTION / SUMMARY
   ═══════════════════════════════════════════════ */
.collection {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.summary-card {
    padding: var(--space-lg) var(--space-lg);
    border-bottom: 1px solid var(--sand);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    transition: all var(--duration-normal) var(--ease-smooth);
    cursor: default;
}

.summary-card:nth-child(odd) {
    border-right: 1px solid var(--sand);
}

.summary-card:nth-last-child(-n+2) {
    border-bottom: none;
}

.summary-card:hover {
    background: var(--terracotta-soft);
}

.summary-number {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--terracotta);
    font-weight: 300;
    font-style: italic;
    line-height: 1;
    min-width: 48px;
    opacity: 0.7;
    transition: opacity var(--duration-normal) var(--ease-smooth);
}

.summary-card:hover .summary-number {
    opacity: 1;
}

.summary-content h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 6px;
}

.summary-content p {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.summary-line {
    display: none;
}

/* ═══════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════ */
.testimonials {
    padding: var(--space-3xl) 0;
    background: var(--cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    transition: all var(--duration-normal) var(--ease-smooth);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-card.featured {
    border-color: var(--terracotta-light);
    background: linear-gradient(135deg, var(--warm-white), var(--terracotta-soft));
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--terracotta);
    opacity: 0.25;
    position: absolute;
    top: 16px;
    right: 24px;
}

.testimonial-text {
    font-family: var(--font-serif);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terracotta-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--terracotta);
    font-weight: 500;
}

.author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.88rem;
    color: var(--ink);
}

.author-info span {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

.testimonial-stars {
    color: var(--terracotta-light);
    font-size: 0.85rem;
    letter-spacing: 2px;
}

/* ═══════════════════════════════════════════════
   AUTHOR SECTION
   ═══════════════════════════════════════════════ */
.author-section {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
    border-top: 1px solid var(--sand);
}

.author-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: var(--space-2xl);
    align-items: center;
}

.author-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image-frame {
    width: 320px;
    height: 400px;
    background: linear-gradient(135deg, var(--cream), var(--cream-dark));
    border: 1px solid var(--sand);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.author-image-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid var(--sand);
    border-radius: calc(var(--radius-xl) - 4px);
    pointer-events: none;
}

.author-placeholder {
    color: var(--stone);
    opacity: 0.5;
}

.author-tag {
    margin-top: var(--space-sm);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--warm-gray);
    background: var(--cream);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--sand);
}

.author-content .section-tag {
    text-align: left;
}

.author-quote {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: var(--space-lg);
}

.author-text {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

.author-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--sand);
}

.signature-line {
    width: 40px;
    height: 2px;
    background: var(--terracotta);
}

.author-signature span {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 0.92rem;
    color: var(--charcoal);
}

/* ═══════════════════════════════════════════════
   PURCHASE / CTA
   ═══════════════════════════════════════════════ */
.purchase {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}

.purchase-layout {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: var(--space-2xl);
    align-items: center;
}

.price-block {
    margin: var(--space-lg) 0;
    padding: var(--space-lg);
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-lg);
}

.price-old {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--warm-gray);
    margin-bottom: 8px;
}

.old-value {
    text-decoration: line-through;
    color: var(--stone);
}

.price-current {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.price-currency {
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-top: 8px;
}

.price-value {
    font-family: var(--font-serif);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--terracotta);
    line-height: 0.9;
}

.price-cents {
    font-family: var(--font-sans);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--terracotta);
    margin-top: 4px;
}

.price-installments {
    font-size: 0.88rem;
    color: var(--warm-gray);
    margin-top: 8px;
}

.purchase-guarantees {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: var(--space-lg);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--charcoal);
}

.guarantee-item svg {
    color: var(--terracotta);
    flex-shrink: 0;
}

/* Purchase Mini Testimonial */
.purchase-testimonial {
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-testimonial {
    background: var(--warm-white);
    border: 1px solid var(--sand);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
}

.mini-stars {
    color: var(--terracotta-light);
    font-size: 1.1rem;
    letter-spacing: 3px;
    margin-bottom: var(--space-md);
}

.mini-testimonial p {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--charcoal);
    margin-bottom: var(--space-md);
}

.mini-author {
    font-size: 0.85rem;
    color: var(--warm-gray);
}

/* ═══════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════ */
.faq {
    padding: var(--space-3xl) 0;
    background: var(--warm-white);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--sand);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--ink);
    text-align: left;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.faq-question:hover {
    color: var(--terracotta);
}

.faq-icon {
    color: var(--terracotta);
    transition: transform var(--duration-normal) var(--ease-smooth);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--duration-slow) var(--ease-smooth),
                padding var(--duration-slow) var(--ease-smooth);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding-bottom: var(--space-md);
    font-size: 0.95rem;
    color: var(--warm-gray);
    line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════════════ */
.final-cta {
    padding: var(--space-3xl) 0;
    background: var(--ink);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(184, 75, 20, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.final-cta-content {
    position: relative;
    z-index: 1;
}

.final-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    margin-bottom: var(--space-sm);
}

.final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: var(--space-lg);
}

.final-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.45);
    margin-top: var(--space-lg);
}

.final-guarantee svg {
    color: var(--terracotta-light);
}

/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */
.footer {
    padding: var(--space-xl) 0;
    background: var(--ink);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: rgba(255,255,255,0.7);
}

.footer-brand .logo-icon {
    color: var(--terracotta-light);
}

.footer-brand em {
    color: var(--terracotta-light);
}

.footer-copy {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--duration-fast) var(--ease-smooth);
}

.footer-links a:hover {
    color: var(--terracotta-light);
}

/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes scrollPulse {
    0% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.4; transform: scaleY(0.6); }
    100% { opacity: 1; transform: scaleY(1); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .author-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .author-content .section-tag {
        text-align: center;
    }

    .author-signature {
        justify-content: center;
    }

    .purchase-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    /* Mobile menu */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        align-items: center;
        justify-content: center;
        gap: 32px;
        z-index: 5;
    }

    .nav-links.active a {
        font-size: 1.2rem;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }

    .summary-card:nth-child(odd) {
        border-right: none;
    }

    .summary-card:nth-last-child(2) {
        border-bottom: 1px solid var(--sand);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .author-image-frame {
        width: 260px;
        height: 320px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .recognition-divider {
        display: none;
    }

    .recognition-grid {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-3xl: 5rem;
        --space-2xl: 3.5rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .price-value {
        font-size: 3.5rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }
}
