/* ============================================================
   ASTRA — Tarot & Astrology Platform
   Main Stylesheet v1.0
   Design: Dark mystical luxury — deep violet, gold accents
   Fonts: Cormorant Garamond (display) + Jost (UI)
   ============================================================ */

/* ─── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    /* Core palette */
    --bg:           #06030F;
    --bg-2:         #0C0720;
    --bg-3:         #130D2E;
    --bg-card:      #100B24;
    --bg-glass:     rgba(19, 13, 46, 0.7);

    --gold:         #D4AF37;
    --gold-light:   #F5E6A3;
    --gold-dim:     rgba(212, 175, 55, 0.15);
    --gold-glow:    rgba(212, 175, 55, 0.35);

    --violet:       #7C3AED;
    --violet-light: #A78BFA;
    --violet-dim:   rgba(124, 58, 237, 0.15);

    --silver:       #C0C8D8;
    --silver-dim:   #7A8499;
    --text:         #E8E0F5;
    --text-muted:   #8A84A0;
    --text-dim:     #5A5470;

    --border:       rgba(212, 175, 55, 0.15);
    --border-light: rgba(212, 175, 55, 0.08);

    /* Gradients */
    --grad-gold:    linear-gradient(135deg, #D4AF37 0%, #F5E6A3 50%, #D4AF37 100%);
    --grad-violet:  linear-gradient(135deg, #4C1D95 0%, #7C3AED 100%);
    --grad-hero:    radial-gradient(ellipse at 30% 40%, rgba(124, 58, 237, 0.25) 0%, transparent 60%),
                    radial-gradient(ellipse at 80% 20%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
                    linear-gradient(180deg, #06030F 0%, #0C0720 100%);

    /* Type */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:    'Jost', system-ui, sans-serif;

    /* Spacing */
    --gap:   clamp(1.5rem, 4vw, 3rem);
    --gapXL: clamp(3rem, 8vw, 6rem);

    /* Radius */
    --r:   12px;
    --r-lg: 20px;

    /* Shadows */
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.2);
    --shadow-card: 0 4px 40px rgba(0, 0, 0, 0.5);

    /* Transitions */
    --tr: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --tr-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
.noise-overlay {
    position: fixed; inset: 0; z-index: 0; pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    opacity: 0.025;
    background-size: 200px;
}

/* ─── TYPOGRAPHY ───────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: var(--text);
}

h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); line-height: 1.05; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

.display { font-size: clamp(3.5rem, 9vw, 7rem); font-weight: 300; font-style: italic; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--silver); font-weight: 300; line-height: 1.8; }

.gold-text {
    background: var(--grad-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.italic { font-style: italic; }

a { color: var(--gold); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--gold-light); }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── LAYOUT ───────────────────────────────────────────────── */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 5vw, 4rem);
}

.section { padding: var(--gapXL) 0; }
.section-sm { padding: var(--gap) 0; }

/* ─── BUTTONS ──────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.85rem 2rem; border-radius: var(--r);
    border: none; cursor: pointer;
    transition: all var(--tr); position: relative; overflow: hidden;
    text-decoration: none; white-space: nowrap;
}
.btn::after {
    content: ''; position: absolute; inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0; transition: opacity var(--tr);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
    background: var(--grad-gold);
    color: #0C0720; font-weight: 600;
    box-shadow: 0 4px 24px var(--gold-glow);
}
.btn-primary:hover {
    box-shadow: 0 6px 36px rgba(212, 175, 55, 0.55);
    transform: translateY(-2px); color: #0C0720;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}
.btn-outline:hover {
    background: var(--gold-dim);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: translateY(-2px); color: var(--gold-light);
}

.btn-ghost {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--silver);
}
.btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-gold { background: var(--grad-gold); color: #0C0720; font-weight: 600; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.5rem; font-size: 1rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.1rem; border-radius: 16px; }

.btn-icon {
    background: none; border: none; color: var(--silver-dim);
    cursor: pointer; padding: 0.4rem;
    transition: color var(--tr);
}
.btn-icon:hover { color: var(--gold); }

/* ─── HEADER ───────────────────────────────────────────────── */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    transition: all 0.4s ease;
    padding: 0;
}
.site-header.scrolled {
    background: rgba(6, 3, 15, 0.9);
    backdrop-filter: blur(20px) saturate(1.5);
    border-bottom: 1px solid var(--border-light);
}

.header-inner {
    max-width: 1280px; margin: 0 auto;
    padding: 1.25rem clamp(1.25rem, 5vw, 4rem);
    display: flex; align-items: center; gap: 2rem;
}

/* Logo */
.logo {
    display: flex; align-items: center; gap: 0.75rem;
    text-decoration: none; flex-shrink: 0;
}
.logo-emblem svg { transition: transform var(--tr-slow); }
.logo:hover .logo-emblem svg { transform: rotate(15deg) scale(1.05); }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
    font-family: var(--font-display);
    font-size: 1.5rem; font-weight: 600; line-height: 1;
    background: var(--grad-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-sub { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); }

/* Nav */
.main-nav { flex: 1; }
.main-nav ul { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.main-nav > ul > li { position: relative; }
.main-nav a {
    display: block; padding: 0.5rem 0.85rem;
    font-size: 0.88rem; font-weight: 400; letter-spacing: 0.05em;
    color: var(--silver); text-decoration: none;
    transition: color var(--tr); border-radius: 6px;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

/* Dropdown */
.dropdown {
    position: absolute; top: calc(100% + 0.5rem); left: 0;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); padding: 0.5rem; list-style: none;
    min-width: 200px; opacity: 0; visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(20px);
}
.main-nav li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { font-size: 0.85rem; padding: 0.5rem 0.75rem; border-radius: 6px; white-space: nowrap; }
.dropdown a:hover { background: var(--gold-dim); color: var(--gold); }

/* Header right */
.header-right { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }

/* Burger */
.burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 0.25rem;
}
.burger span {
    display: block; width: 24px; height: 1.5px;
    background: var(--silver); border-radius: 2px;
    transition: all 0.3s ease;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
    position: fixed; top: 0; right: -100%; width: min(360px, 100vw);
    height: 100%; background: var(--bg-3);
    border-left: 1px solid var(--border);
    z-index: 99; padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto; list-style: none;
}
.mobile-nav.open { right: 0; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
    display: block; padding: 1rem 0;
    font-family: var(--font-display); font-size: 1.5rem;
    color: var(--silver); border-bottom: 1px solid var(--border-light);
    transition: color var(--tr);
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn-gold { margin-top: 1.5rem; border-radius: var(--r); text-align: center; display: block; padding: 1rem; }

/* ─── HERO SECTION ─────────────────────────────────────────── */
.hero {
    position: relative; min-height: 100vh;
    display: flex; align-items: center;
    background: var(--grad-hero);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute; inset: 0; z-index: 0;
    overflow: hidden;
}

/* Stars */
.stars-field {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(212,175,55,0.6) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.4) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(212,175,55,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
        radial-gradient(1px 1px at 85% 80%, rgba(212,175,55,0.4) 0%, transparent 100%),
        radial-gradient(2px 2px at 20% 85%, rgba(167,139,250,0.5) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 15%, rgba(255,255,255,0.5) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 60% 75%, rgba(212,175,55,0.4) 0%, transparent 100%);
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%   { opacity: 0.6; }
    50%  { opacity: 1; }
    100% { opacity: 0.7; }
}

/* Cosmic glow orbs */
.orb {
    position: absolute; border-radius: 50%;
    filter: blur(80px); animation: float 12s ease-in-out infinite;
}
.orb-1 {
    width: 500px; height: 500px; top: -100px; right: -100px;
    background: radial-gradient(circle, rgba(124,58,237,0.3) 0%, transparent 70%);
}
.orb-2 {
    width: 400px; height: 400px; bottom: 0; left: -80px;
    background: radial-gradient(circle, rgba(212,175,55,0.15) 0%, transparent 70%);
    animation-delay: -5s;
}
.orb-3 {
    width: 300px; height: 300px; top: 30%; right: 25%;
    background: radial-gradient(circle, rgba(167,139,250,0.15) 0%, transparent 70%);
    animation-delay: -3s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50%       { transform: translateY(-30px) scale(1.05); }
}

/* Constellation SVG */
.constellation {
    position: absolute; right: 0; top: 0; bottom: 0;
    width: 50%; opacity: 0.12;
    pointer-events: none;
}

/* Hero content */
.hero-content {
    position: relative; z-index: 2;
    max-width: 1280px; margin: 0 auto;
    padding: var(--gap) clamp(1.25rem, 5vw, 4rem);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}

.hero-text { max-width: 620px; }

.hero-eyebrow {
    display: inline-flex; align-items: center; gap: 0.6rem;
    font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.2s ease forwards;
}
.hero-eyebrow::before {
    content: ''; width: 30px; height: 1px; background: var(--gold);
}

.hero-title {
    font-family: var(--font-display); font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 300; line-height: 1.05;
    margin-bottom: 1.5rem;
    opacity: 0; animation: fadeUp 0.8s 0.4s ease forwards;
}
.hero-title em {
    font-style: italic;
    background: var(--grad-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem); color: var(--silver); font-weight: 300;
    line-height: 1.8; margin-bottom: 2.5rem; max-width: 480px;
    opacity: 0; animation: fadeUp 0.8s 0.6s ease forwards;
}

.hero-cta {
    display: flex; gap: 1rem; flex-wrap: wrap;
    opacity: 0; animation: fadeUp 0.8s 0.8s ease forwards;
}

.hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    padding-top: 2rem; border-top: 1px solid var(--border-light);
    opacity: 0; animation: fadeUp 0.8s 1s ease forwards;
}

.stat-item { text-align: left; }
.stat-number {
    font-family: var(--font-display); font-size: 2.2rem;
    background: var(--grad-gold);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text; line-height: 1;
}
.stat-label { font-size: 0.78rem; color: var(--text-muted); letter-spacing: 0.05em; margin-top: 0.2rem; }

/* Hero visual - spinning wheel */
.hero-visual {
    position: relative; display: flex;
    align-items: center; justify-content: center;
    opacity: 0; animation: fadeIn 1.2s 0.5s ease forwards;
}

.astro-wheel {
    position: relative; width: min(420px, 100%); aspect-ratio: 1;
}
.astro-wheel svg { width: 100%; height: 100%; }

/* Outer ring animation */
.wheel-outer { animation: rotateWheel 60s linear infinite; transform-origin: center; }
.wheel-mid { animation: rotateWheel 40s linear infinite reverse; transform-origin: center; }
.wheel-inner { animation: rotateWheel 20s linear infinite; transform-origin: center; }
.wheel-glow { animation: pulseGlow 4s ease-in-out infinite; transform-origin: center; }

@keyframes rotateWheel { to { transform: rotate(360deg); } }
@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50%       { opacity: 0.8; transform: scale(1.02); }
}

/* ─── SECTION HEADERS ──────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: var(--gap); }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--silver); max-width: 600px; margin: 0 auto; }

.section-tag {
    display: inline-block; font-size: 0.72rem;
    letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.75rem;
    position: relative; padding: 0 1.5rem;
}
.section-tag::before, .section-tag::after {
    content: ''; position: absolute; top: 50%;
    width: 1.2rem; height: 1px; background: var(--gold);
}
.section-tag::before { left: 0; }
.section-tag::after  { right: 0; }

/* Decorative divider */
.ornament {
    display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin: 2rem auto; color: var(--gold-glow);
}
.ornament::before, .ornament::after {
    content: ''; flex: 1; max-width: 100px;
    height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ─── SERVICES SECTION ─────────────────────────────────────── */
.services-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

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

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    padding: 2rem;
    position: relative; overflow: hidden;
    transition: all var(--tr);
    text-decoration: none; color: inherit;
    cursor: pointer; display: block;
}
.service-card::before {
    content: ''; position: absolute; inset: 0; border-radius: var(--r-lg);
    background: var(--grad-gold);
    opacity: 0; transition: opacity var(--tr);
    z-index: 0;
}
.service-card::after {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--grad-gold);
    opacity: 0; transition: opacity var(--tr); border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-card:hover::after { opacity: 1; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
    width: 56px; height: 56px; border-radius: 14px;
    background: var(--gold-dim);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; margin-bottom: 1.25rem;
    border: 1px solid var(--border);
    transition: all var(--tr);
}
.service-card:hover .service-icon {
    background: var(--gold-glow); box-shadow: 0 0 20px var(--gold-glow);
}

.service-card h3 {
    font-size: 1.4rem; margin-bottom: 0.6rem;
    font-family: var(--font-display);
}
.service-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.7; }
.service-card .price {
    font-family: var(--font-display); font-size: 1.3rem;
    color: var(--gold); font-style: italic;
}
.service-card .duration { font-size: 0.78rem; color: var(--text-dim); margin-top: 0.25rem; }
.service-arrow {
    position: absolute; bottom: 1.5rem; right: 1.5rem;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--gold-dim); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: all var(--tr); color: var(--gold);
}
.service-card:hover .service-arrow {
    background: var(--gold); color: var(--bg); transform: rotate(45deg);
}

/* ─── NATAL CARD PROMO ─────────────────────────────────────── */
.natal-promo {
    position: relative; border-radius: var(--r-lg);
    background: linear-gradient(135deg, var(--bg-3) 0%, rgba(124,58,237,0.1) 100%);
    border: 1px solid var(--border);
    overflow: hidden; padding: clamp(2.5rem, 6vw, 5rem);
    display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.natal-promo-glow {
    position: absolute; width: 400px; height: 400px;
    border-radius: 50%; top: -100px; right: -80px;
    background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
    pointer-events: none;
}
.natal-promo-content > * { position: relative; z-index: 1; }
.natal-promo h2 { margin-bottom: 1rem; }
.natal-promo p { color: var(--silver); margin-bottom: 2rem; }

.natal-features { list-style: none; margin-bottom: 2rem; }
.natal-features li {
    display: flex; align-items: flex-start; gap: 0.75rem;
    padding: 0.6rem 0; font-size: 0.9rem; color: var(--silver);
    border-bottom: 1px solid var(--border-light);
}
.natal-features li::before {
    content: '✦'; color: var(--gold); font-size: 0.7rem; margin-top: 0.3rem; flex-shrink: 0;
}

/* Natal chart preview visual */
.natal-visual {
    display: flex; align-items: center; justify-content: center;
}

/* ─── TAROT SPREAD PREVIEW ─────────────────────────────────── */
.tarot-section {
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}

.tarot-cards-preview {
    display: flex; justify-content: center; gap: 1rem;
    margin-bottom: 3rem; perspective: 1000px;
}

.tarot-card-preview {
    width: 80px; height: 140px;
    border-radius: 10px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    transition: transform var(--tr);
    flex-shrink: 0;
}
.tarot-card-preview:nth-child(1) { transform: rotate(-8deg) translateY(10px); }
.tarot-card-preview:nth-child(2) { transform: rotate(-4deg) translateY(4px); }
.tarot-card-preview:nth-child(3) { transform: rotate(0deg); z-index: 3; width: 96px; height: 168px; }
.tarot-card-preview:nth-child(4) { transform: rotate(4deg) translateY(4px); }
.tarot-card-preview:nth-child(5) { transform: rotate(8deg) translateY(10px); }

.tarot-card-preview:hover { transform: rotate(0) translateY(-12px) scale(1.05); z-index: 5; }

.card-back {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #1a0a3e 0%, #2d1065 50%, #1a0a3e 100%);
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
}
.card-back::before {
    content: ''; position: absolute; inset: 8px;
    border: 1px solid rgba(212,175,55,0.3); border-radius: 6px;
}
.card-back::after {
    content: '✦'; color: var(--gold); font-size: 1.5rem; opacity: 0.6;
}

/* ─── PROCESS SECTION ──────────────────────────────────────── */
.process-steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem; position: relative;
}
.process-steps::before {
    content: ''; position: absolute;
    top: 28px; left: 10%; right: 10%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--gold-dim), var(--border), transparent);
}

.step {
    text-align: center; padding: 1rem;
    position: relative;
}
.step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.4rem; color: var(--gold);
    margin: 0 auto 1.25rem; position: relative; z-index: 1;
    box-shadow: 0 0 20px var(--gold-dim);
}
.step h4 { font-family: var(--font-display); font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--text-muted); }

/* ─── REVIEWS SECTION ──────────────────────────────────────── */
.reviews-section { background: var(--bg-2); }

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

.review-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--r-lg); padding: 2rem;
    position: relative; transition: border-color var(--tr);
}
.review-card:hover { border-color: var(--gold); }

.review-quote {
    font-family: var(--font-display); font-size: 4rem; line-height: 0.5;
    color: var(--gold); opacity: 0.3; margin-bottom: 1rem;
}
.review-text {
    font-size: 0.92rem; color: var(--silver); line-height: 1.8;
    font-style: italic; margin-bottom: 1.5rem;
}
.review-stars {
    color: var(--gold); letter-spacing: 2px; font-size: 0.75rem; margin-bottom: 1rem;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--grad-violet);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-light);
    flex-shrink: 0;
}
.reviewer-name { font-size: 0.9rem; font-weight: 500; }
.reviewer-detail { font-size: 0.76rem; color: var(--text-muted); }

/* ─── BLOG PREVIEW ─────────────────────────────────────────── */
.blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--bg-card); border: 1px solid var(--border-light);
    border-radius: var(--r-lg); overflow: hidden;
    transition: all var(--tr); display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: var(--shadow-card); }
.blog-card:hover h3 { color: var(--gold-light); }

.blog-card-image {
    width: 100%; aspect-ratio: 16/9; overflow: hidden;
    background: var(--bg-3);
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--tr-slow); }
.blog-card:hover .blog-card-image img { transform: scale(1.06); }
.blog-card-image-placeholder {
    width: 100%; height: 100%;
    background: linear-gradient(135deg, var(--bg-3), var(--bg-2));
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; opacity: 0.4;
}

.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-category-tag {
    display: inline-block; font-size: 0.7rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--gold);
    margin-bottom: 0.75rem;
}
.blog-card h3 {
    font-family: var(--font-display); font-size: 1.25rem;
    margin-bottom: 0.6rem; transition: color var(--tr);
}
.blog-card p { font-size: 0.85rem; color: var(--text-muted); flex: 1; }
.blog-meta {
    display: flex; gap: 1rem; margin-top: 1rem;
    font-size: 0.75rem; color: var(--text-dim);
}

/* ─── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
    position: relative; border-radius: var(--r-lg);
    background: linear-gradient(135deg, rgba(124,58,237,0.2) 0%, rgba(212,175,55,0.05) 100%);
    border: 1px solid var(--border); overflow: hidden;
    padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 5vw, 5rem);
    text-align: center;
}
.cta-banner::before {
    content: ''; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124,58,237,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(212,175,55,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.cta-banner > * { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.cta-banner p { color: var(--silver); max-width: 500px; margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── FOOTER ───────────────────────────────────────────────── */
.site-footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border-light);
    padding: 5rem 0 2rem;
    position: relative; overflow: hidden;
}

.footer-stars { position: absolute; inset: 0; opacity: 0.3; pointer-events: none; }

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

.footer-tagline { font-style: italic; color: var(--text-muted); margin: 1rem 0; font-family: var(--font-display); }
.footer-socials { display: flex; gap: 0.75rem; }
.social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--silver-dim); transition: all var(--tr);
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 0 12px var(--gold-dim); }

.footer-col h4 {
    font-family: var(--font-display); font-size: 1rem;
    color: var(--gold); font-style: italic; margin-bottom: 1.25rem;
    padding-bottom: 0.6rem; border-bottom: 1px solid var(--border-light);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.85rem; color: var(--silver-dim); transition: color var(--tr); }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
    padding-top: 2rem; border-top: 1px solid var(--border-light);
    display: flex; justify-content: space-between; align-items: center;
    gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-dim); }
.footer-disclaimer { font-style: italic; }

/* ─── SCROLL TOP ───────────────────────────────────────────── */
.scroll-top {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 50;
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border);
    color: var(--gold); cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: all var(--tr); box-shadow: var(--shadow-card);
}
.scroll-top.visible { opacity: 1; visibility: visible; pointer-events: auto; }
.scroll-top:hover { background: var(--gold); color: var(--bg); border-color: var(--gold); }

/* ─── CARDS & UTILITIES ────────────────────────────────────── */
.glass-card {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
}

.badge {
    display: inline-flex; align-items: center; gap: 0.3rem;
    padding: 0.25rem 0.75rem; border-radius: 100px;
    font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--border); }
.badge-violet { background: var(--violet-dim); color: var(--violet-light); border: 1px solid rgba(124,58,237,0.3); }

.divider {
    height: 1px; width: 100%;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
    margin: var(--gap) 0;
}

/* ─── FORMS ────────────────────────────────────────────────── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.82rem; color: var(--silver-dim); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.form-input, .form-select, .form-textarea {
    width: 100%; padding: 0.875rem 1rem;
    background: var(--bg-card); border: 1px solid var(--border);
    border-radius: var(--r); color: var(--text);
    font-family: var(--font-body); font-size: 0.9rem;
    transition: border-color var(--tr), box-shadow var(--tr);
    outline: none; appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-dim);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }

/* ─── ANIMATIONS ───────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes shimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

[data-reveal] {
    opacity: 0; transform: translateY(32px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ─── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-subtitle { margin: 0 auto 2.5rem; }
    .hero-cta { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .blog-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .natal-promo { grid-template-columns: 1fr; }
    .natal-visual { display: none; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .hero { min-height: 100svh; }
    .blog-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .process-steps::before { display: none; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}

/* ════════════════════════════════════════════════════════════
   HEADER USER DROPDOWN
════════════════════════════════════════════════════════════ */

.hdr-user {
    position: relative;
}

.hdr-avatar-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--bg-card);
    cursor: pointer; padding: 0;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    transition: border-color var(--tr), box-shadow var(--tr);
    position: relative;
}
.hdr-avatar-btn:hover {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15);
}
.hdr-avatar {
    width: 100%; height: 100%;
    object-fit: cover; border-radius: 50%;
}
.hdr-avatar-fallback {
    width: 100%; height: 100%;
    background: var(--violet);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 0.85rem;
    color: white; border-radius: 50%;
}

/* Dropdown panel */
.hdr-dropdown {
    position: absolute; top: calc(100% + 10px); right: 0;
    width: 220px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,175,55,0.08);
    overflow: hidden;
    opacity: 0; visibility: hidden; transform: translateY(-6px) scale(0.98);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
}
.hdr-dropdown.open {
    opacity: 1; visibility: visible; transform: translateY(0) scale(1);
}

.hdr-dropdown-user {
    padding: 1rem 1.1rem 0.85rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-3);
}
.hdr-dropdown-name {
    font-family: var(--font-display); font-size: 0.95rem; font-style: italic;
    margin-bottom: 0.2rem;
}
.hdr-dropdown-email {
    font-size: 0.7rem; color: var(--text-dim);
    word-break: break-all;
}

.hdr-dropdown-item {
    display: flex; align-items: center; gap: 0.6rem;
    padding: 0.7rem 1.1rem;
    color: var(--text-muted); text-decoration: none;
    font-size: 0.83rem; transition: all var(--tr);
    border-bottom: 1px solid var(--border-light);
}
.hdr-dropdown-item:last-of-type,
.hdr-dropdown-item:last-child { border-bottom: none; }
.hdr-dropdown-item:hover { background: var(--gold-dim); color: var(--silver); }
.hdr-dropdown-item svg { opacity: 0.6; flex-shrink: 0; }
.hdr-dropdown-divider {
    height: 1px; background: var(--border-light); margin: 0;
}
.hdr-dropdown-logout { color: #fca5a5 !important; }
.hdr-dropdown-logout:hover { background: rgba(239,68,68,0.08) !important; }
