/* ===========================
   Divine Numero — style.css
   =========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* --- CSS Variables --- */
:root {
    --navy:        #7C3D2D;
    --navy-mid:    #9E5040;
    --navy-light:  #C07A68;
    --navy-dark:   #3A180C;
    --gold:        #B8742A;
    --gold-light:  #D4943C;
    --gold-bright: #E8B458;
    --gold-pale:   #FEFBE0;
    --gold-bg:     #F9EDB0;
    --bg:          #FDFBEE;
    --bg-warm:     #F7F0D0;
    --surface:     #FFFEF7;
    --text:        #1A0C05;
    --text-soft:   #3D2015;
    --muted:       #7A5845;
    --border:      #E4CCAC;
    --border-soft: #EEE0CC;
    --radius:      14px;
    --radius-sm:   10px;
    --shadow-xs:   0 1px 3px rgba(60,20,5,.05);
    --shadow:      0 4px 16px rgba(60,20,5,.08), 0 2px 6px rgba(60,20,5,.04);
    --shadow-lg:   0 12px 40px rgba(60,20,5,.10), 0 4px 12px rgba(60,20,5,.05);
    --shadow-xl:   0 24px 64px rgba(60,20,5,.12), 0 8px 24px rgba(60,20,5,.06);

    /* Number type colors */
    --lp-color:    #6B3B2A;
    --lp-bg:       #F8E8DF;
    --expr-color:  #2A6040;
    --expr-bg:     #E4F5EC;
    --su-color:    #7B3A7B;
    --su-bg:       #F5E4F5;
    --bd-color:    #B86030;
    --bd-bg:       #FAEADA;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    line-height: 1.25;
    color: var(--navy);
}

a { color: var(--navy-mid); text-decoration: none; transition: color .18s; }
a:hover { color: var(--gold); }

img { max-width: 100%; display: block; }
ul  { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-muted { color: var(--muted); }

/* ===========================
   FLASH MESSAGES
   =========================== */
.flash {
    padding: 12px 0;
    font-size: 0.9rem;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 200;
}
.flash-error   { background: #fee2e2; color: #991b1b; border-bottom: 1px solid #fca5a5; }
.flash-success { background: #dcfce7; color: #166534; border-bottom: 1px solid #86efac; }
.flash .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.flash-close { background: none; border: none; font-size: 1.3rem; cursor: pointer; opacity: .5; color: inherit; line-height: 1; }
.flash-close:hover { opacity: 1; }

/* ===========================
   HEADER
   =========================== */
.site-header {
    background: var(--navy-dark);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255,255,255,.06);
    box-shadow: 0 2px 20px rgba(0,0,0,.35);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 66px;
    gap: 16px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .2s;
}
.logo:hover { color: #fff; opacity: .85; }

.logo-symbol {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 0 6px rgba(240,160,80,.4));
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    color: #fff;
}
.logo-text em { font-style: italic; color: var(--gold-bright); }

/* Nav */
.main-nav {
    display: flex;
    gap: 28px;
    align-items: center;
}
.main-nav a {
    color: rgba(255,255,255,.75);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: .01em;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
}
.main-nav a:hover {
    color: var(--gold-bright);
    border-bottom-color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-actions > a:not(.btn) {
    color: rgba(255,255,255,.75);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 4px 0;
    border-bottom: 2px solid transparent;
    transition: color .18s, border-color .18s;
}
.header-actions > a:not(.btn):hover {
    color: var(--gold-bright);
    border-bottom-color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all .25s;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 24px;
    border-radius: var(--radius);
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .18s, transform .15s, box-shadow .18s, border-color .18s, color .18s;
    text-decoration: none;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
    background: var(--navy);
    color: #fff;
    border-color: var(--navy);
}
.btn-primary:hover {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
    color: #fff;
    box-shadow: 0 4px 14px rgba(26,46,74,.25);
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: #fff;
    border-color: var(--gold);
    box-shadow: 0 2px 8px rgba(184,130,42,.25);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-bright) 100%);
    border-color: var(--gold-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184,130,42,.40);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--navy-light);
}
.btn-outline:hover {
    border-color: var(--navy);
    background: var(--bg-warm);
    color: var(--navy-dark);
}

.btn-secondary {
    background: var(--bg);
    color: var(--text-soft);
    border-color: var(--border);
}
.btn-secondary:hover {
    background: var(--bg-warm);
    border-color: var(--muted);
}

.btn-sm  { padding: 8px 16px; font-size: 0.84rem; }
.btn-full { width: 100%; }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border-color: #25D366;
}
.btn-whatsapp:hover {
    background: #1fbd5a;
    border-color: #1fbd5a;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37,211,102,.3);
}

/* ===========================
   HERO
   =========================== */
.hero {
    padding: 56px 0 68px;
    background: linear-gradient(150deg, #FEF9E0 0%, #FDFBEE 55%, #FEFCEE 100%);
}

/* Full-width intro block */
.hero-intro {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 48px;
}
.hero-intro .hero-subtitle { max-width: 640px; margin-left: auto; margin-right: auto; }
.hero-intro .number-preview { justify-content: center; }

/* Analysis card: form kiri + testimoni kanan */
.analysis-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.analysis-card-testi {
    border-left: 1px solid var(--border-soft);
    padding-left: 40px;
}
.testi-section-title {
    font-size: 0.92rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .01em;
}
.testi-section-title svg { flex-shrink: 0; color: var(--gold); }

@media (max-width: 900px) {
    .analysis-card-inner { grid-template-columns: 1fr; gap: 28px; }
    .analysis-card-testi { border-left: none; border-top: 1px solid var(--border-soft); padding-left: 0; padding-top: 28px; }
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 99px;
    margin-bottom: 22px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Title */
.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.12;
}
.hero-title em {
    color: var(--gold);
    font-style: italic;
    position: relative;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--muted);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.75;
}

/* Analysis Card (Form) */
.analysis-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-soft);
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
}
.analysis-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold-light));
}

.analysis-card-title {
    font-size: 1.2rem;
    margin-bottom: 24px;
    color: var(--navy);
}

/* Form */

.form-group { margin-bottom: 22px; }

.form-label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 7px;
    letter-spacing: .01em;
}
.required { color: #dc2626; }

.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    transition: border-color .18s, box-shadow .18s, background .18s;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
}
.form-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(124,61,45,.16);
    background: #fff;
}
.form-input::placeholder { color: #aab4be; }
.form-textarea { resize: vertical; min-height: 130px; }

.form-hint {
    display: block;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 5px;
    line-height: 1.5;
}
.form-disclaimer {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

/* Number preview chips */
.number-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.number-chip {
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1.5px solid var(--chip-color, var(--border));
    color: var(--chip-color, var(--navy));
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 0.81rem;
    font-weight: 600;
    background: var(--surface);
    transition: box-shadow .18s;
}
.number-chip:hover { box-shadow: 0 2px 10px rgba(0,0,0,.1); }
.chip-icon { opacity: .45; font-size: 0.7rem; }

/* ===========================
   SIDEBAR
   =========================== */
.sidebar-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
    margin-bottom: 20px;
}
.sidebar-card-title {
    font-size: 0.92rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: .01em;
}
.sidebar-card-title svg { flex-shrink: 0; color: var(--gold); }

/* Recent list */
.recent-list { display: flex; flex-direction: column; gap: 8px; }
.recent-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    background: var(--bg);
    border-radius: 8px;
    font-size: 0.87rem;
    border: 1px solid var(--border-soft);
    transition: background .15s;
}
.recent-item:hover { background: var(--bg-warm); }
.recent-name { font-weight: 600; color: var(--text); }
.recent-numbers { display: flex; gap: 6px; }

.tag-lp, .tag-expr {
    padding: 3px 10px;
    border-radius: 99px;
    font-size: 0.76rem;
    font-weight: 700;
}
.tag-lp   { background: var(--lp-bg);   color: var(--lp-color);   }
.tag-expr { background: var(--expr-bg); color: var(--expr-color); }

/* Testimonials */
.testimonial-list { display: flex; flex-direction: column; gap: 14px; max-height: 420px; overflow-y: auto; }
.testimonial-item {
    padding: 14px;
    background: var(--gold-pale);
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 7px;
    flex-wrap: wrap;
}
.testimonial-name { font-weight: 700; font-size: 0.86rem; color: var(--navy); }
.testimonial-lp {
    background: var(--gold-bg);
    color: var(--gold);
    padding: 2px 8px;
    border-radius: 99px;
    font-size: 0.73rem;
    font-weight: 700;
    border: 1px solid var(--gold);
}
.testimonial-stars { color: #f59e0b; font-size: 0.82rem; margin-left: auto; letter-spacing: 1px; }
.testimonial-content {
    font-size: 0.83rem;
    color: var(--text-soft);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* About card */
.about-card p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.link-subtle { font-size: 0.84rem; color: var(--gold); font-weight: 600; }
.link-subtle:hover { color: var(--gold-light); text-decoration: underline; }

/* ===========================
   HOW IT WORKS
   =========================== */
.how-it-works {
    background: var(--navy);
    padding: 72px 0;
    margin-top: 48px;
    position: relative;
    overflow: hidden;
}
.how-it-works::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,.03);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2 { font-size: 1.9rem; margin-bottom: 12px; }
.how-it-works .section-header h2 { color: #fff; }
.how-it-works .section-header p  { color: rgba(255,255,255,.6); font-size: 1rem; }
.section-header p { color: var(--muted); font-size: 1rem; }

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.step-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 32px 28px;
    text-align: center;
    transition: background .2s, transform .2s;
}
.step-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
}
.step-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    color: var(--gold-bright);
    font-weight: 700;
    margin-bottom: 14px;
    text-shadow: 0 2px 10px rgba(240,192,96,.3);
}
.step-card h3 { color: #fff; font-size: 1.1rem; margin-bottom: 10px; }
.step-card p  { color: rgba(255,255,255,.58); font-size: 0.9rem; line-height: 1.6; }

/* ===========================
   RESULT PAGE
   =========================== */
.result-page { padding-bottom: 100px; }

/* Profile Banner */
.profile-banner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    color: #fff;
    padding: 40px 0;
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}
.profile-banner::after {
    content: '✦';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8rem;
    color: rgba(255,255,255,.04);
    pointer-events: none;
    line-height: 1;
}

.profile-banner-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.profile-info {
    display: flex;
    align-items: flex-start;
    gap: 22px;
}
.profile-symbol {
    font-size: 2.8rem;
    color: var(--gold-bright);
    line-height: 1;
    text-shadow: 0 0 20px rgba(240,192,96,.5);
    flex-shrink: 0;
}
.profile-name  { font-size: 2.1rem; color: #fff; margin-bottom: 5px; }
.profile-birth { color: rgba(255,255,255,.65); font-size: 1rem; }

.karmic-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,200,0,.12);
    border: 1px solid rgba(255,200,0,.35);
    color: #fde68a;
    padding: 5px 14px;
    border-radius: 99px;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 12px;
}

.profile-actions-top { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.profile-actions-top .btn-outline {
    color: #fff;
    border-color: rgba(255,255,255,.4);
}
.profile-actions-top .btn-outline:hover {
    background: rgba(255,255,255,.1);
    border-color: rgba(255,255,255,.7);
    color: #fff;
}

/* Result container */
.result-container { max-width: 960px; }

/* Summary Cards */
.summary-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 56px;
}
.summary-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
    border-top: 4px solid var(--card-color, var(--navy));
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden;
}
.summary-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--card-bg, var(--lp-bg));
    opacity: .35;
    pointer-events: none;
}
.summary-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.summary-card-label {
    font-size: 0.73rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 10px;
    position: relative;
}
.summary-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--card-color, var(--navy));
    line-height: 1;
    margin-bottom: 10px;
    position: relative;
}
.summary-card-title {
    font-size: 0.8rem;
    color: var(--muted);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
}

/* Interpretation sections */
.interp-section {
    background: var(--surface);
    border-radius: 16px;
    margin-bottom: 32px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

/* Header uses solid color + overlay for cross-browser gradient effect */
.interp-header {
    background: var(--interp-color, var(--navy));
    padding: 30px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    overflow: hidden;
}
.interp-header::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(to left, rgba(255,255,255,.14), transparent);
    pointer-events: none;
}

.interp-number-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(255,255,255,.14);
    border: 2px solid rgba(255,255,255,.28);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 2px 8px rgba(0,0,0,.1);
}

.interp-meta { flex: 1; position: relative; z-index: 1; }

.interp-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: rgba(255,255,255,.65);
    display: block;
    margin-bottom: 5px;
}
.interp-title    { font-size: 1.55rem; color: #fff; margin-bottom: 5px; text-shadow: 0 1px 4px rgba(0,0,0,.15); }
.interp-subtitle { font-size: 0.85rem; color: rgba(255,255,255,.6); }

.interp-body { padding: 30px 36px; }

.interp-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-soft);
    margin-bottom: 24px;
}

/* Keyword badges — no color-mix, uses pseudo-element tint */
.keyword-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}
.keyword-badge {
    display: inline-flex;
    align-items: center;
    position: relative;
    color: var(--badge-color, var(--navy));
    border: 1.5px solid var(--badge-color, var(--navy));
    padding: 5px 16px;
    border-radius: 99px;
    font-size: 0.81rem;
    font-weight: 700;
    overflow: hidden;
    letter-spacing: .01em;
}
.keyword-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: currentColor;
    opacity: .08;
    pointer-events: none;
}

/* Tips */
.tips-block {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 22px 26px;
    margin-bottom: 26px;
    border: 1px solid var(--border-soft);
}
.tips-heading {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--navy);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.tips-list { display: flex; flex-direction: column; gap: 10px; }
.tips-list li {
    font-size: 0.92rem;
    color: var(--text);
    padding-left: 22px;
    position: relative;
    line-height: 1.55;
}
.tips-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* Advice grid */
.advice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.advice-card {
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 18px 22px;
    border: 1px solid var(--border-soft);
    transition: box-shadow .18s;
}
.advice-card:hover { box-shadow: var(--shadow-xs); }
.advice-card h4 {
    font-size: 0.85rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 7px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.advice-card h4 svg { color: var(--gold); flex-shrink: 0; }
.advice-card p { font-size: 0.9rem; color: var(--text-soft); line-height: 1.65; }

/* ===========================
   CORRELATIONS
   =========================== */
.correlations-section { margin-bottom: 44px; }

.correlations-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.corr-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
    transition: transform .2s;
}
.corr-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.corr-label {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--gold);
    margin-bottom: 12px;
}
.corr-text {
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 18px;
}
.corr-score-bar {
    display: flex;
    align-items: center;
    gap: 10px;
}
.corr-score-label { font-size: 0.76rem; color: var(--muted); white-space: nowrap; }
.score-bar-track {
    flex: 1;
    height: 7px;
    background: var(--bg-warm);
    border-radius: 99px;
    overflow: hidden;
}
.score-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--navy) 0%, var(--gold-light) 100%);
    border-radius: 99px;
    transition: width .7s cubic-bezier(.4,0,.2,1);
}
.corr-score-value { font-size: 0.84rem; font-weight: 800; color: var(--navy); white-space: nowrap; }

/* ===========================
   SYNTHESIS
   =========================== */
.synthesis-section { margin-bottom: 44px; }
.synthesis-inner {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-mid) 100%);
    border-radius: 16px;
    padding: 40px 48px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.synthesis-inner::before {
    content: '✦';
    position: absolute;
    font-size: 10rem;
    color: rgba(255,255,255,.03);
    left: -2rem; top: -2rem;
    line-height: 1;
    pointer-events: none;
}
.synthesis-inner h2 {
    color: var(--gold-bright);
    margin-bottom: 22px;
    font-size: 1.6rem;
    text-shadow: 0 2px 8px rgba(240,192,96,.2);
}
.synthesis-text {
    font-size: 1.06rem;
    color: rgba(255,255,255,.85);
    line-height: 1.85;
    font-style: italic;
    max-width: 740px;
    margin: 0 auto;
    border: none;
    padding: 0;
    font-family: 'Playfair Display', Georgia, serif;
}

/* ===========================
   STRENGTHS & CHALLENGES
   =========================== */
.sc-section { margin-bottom: 56px; }
.sc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.sc-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
}
.sc-card h3 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.sc-strengths { border-top: 4px solid var(--expr-color); }
.sc-challenges { border-top: 4px solid var(--gold); }
.sc-strengths h3 { color: var(--expr-color); }
.sc-challenges h3 { color: var(--gold); }
.sc-card ul { display: flex; flex-direction: column; gap: 12px; }
.sc-card li {
    font-size: 0.92rem;
    color: var(--text);
    padding-left: 24px;
    position: relative;
    line-height: 1.5;
}
.sc-strengths li::before { content: '✓'; position: absolute; left: 0; color: var(--expr-color); font-weight: 800; }
.sc-challenges li::before { content: '△'; position: absolute; left: 0; color: var(--gold); font-weight: 800; }

/* Action bar */
.action-bar {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 36px 0 0;
    border-top: 1px solid var(--border);
}

/* ===========================
   TESTIMONIAL FORM (result page)
   =========================== */
.testi-form-section {
    margin-top: 48px;
    padding-top: 40px;
    border-top: 1px solid var(--border-soft);
}
.testi-form-header {
    text-align: center;
    margin-bottom: 28px;
}
.testi-form-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.testi-form-header p {
    color: var(--muted);
    font-size: 0.95rem;
}
.testi-form {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.testi-form-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 16px;
    align-items: start;
}
.testi-field { display: flex; flex-direction: column; gap: 6px; }
.testi-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
.testi-input {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    transition: border-color .18s, box-shadow .18s;
}
.testi-input:focus {
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 3px rgba(124,61,45,.16);
    background: #fff;
}
.testi-textarea {
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 0.93rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg);
    outline: none;
    resize: vertical;
    min-height: 90px;
    transition: border-color .18s, box-shadow .18s;
    line-height: 1.6;
}
.testi-textarea:focus {
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 3px rgba(124,61,45,.16);
    background: #fff;
}
.testi-textarea::placeholder, .testi-input::placeholder { color: #aab4be; }

/* Star picker */
.star-picker {
    display: flex;
    gap: 4px;
    margin-top: 2px;
}
.star-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #d1d5db;
    transition: color .12s, transform .1s;
    padding: 0 1px;
    line-height: 1;
}
.star-btn.active { color: #f59e0b; }
.star-btn:hover  { transform: scale(1.15); }

.testi-bottom-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* Share button + dropdown */
.share-wrap { position: relative; }

.share-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(26,46,74,.14);
    min-width: 180px;
    z-index: 100;
    overflow: hidden;
}
.share-dropdown[hidden] { display: none; }

.share-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    background: none;
    border: none;
    width: 100%;
    cursor: pointer;
    transition: background .13s;
    font-family: inherit;
}
.share-option:hover { background: var(--bg); }
.share-option + .share-option { border-top: 1px solid var(--border-soft); }

/* Thank-you state */
.testi-thankyou {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 560px;
    margin: 0 auto;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    border-radius: var(--radius);
    padding: 20px 24px;
}
.testi-ty-icon {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}
.testi-thankyou strong {
    display: block;
    color: var(--navy);
    margin-bottom: 4px;
}
.testi-thankyou p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.modal-overlay.active { display: flex; }

.modal {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px;
    max-width: 440px;
    width: 100%;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-soft);
    animation: modalIn .25s ease;
}
@keyframes modalIn {
    from { opacity: 0; transform: scale(.96) translateY(8px); }
    to   { opacity: 1; transform: scale(1)  translateY(0); }
}
.modal h3 { font-size: 1.35rem; margin-bottom: 10px; color: var(--navy); }
.modal p  { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; line-height: 1.6; }
.modal-actions { display: flex; flex-direction: column; gap: 10px; }

/* ===========================
   BOOKING PAGE
   =========================== */
.booking-page { padding: 52px 0 88px; }
.booking-container { max-width: 1060px; }

.booking-header {
    text-align: center;
    margin-bottom: 44px;
}
.booking-symbol { font-size: 2.8rem; color: var(--gold); margin-bottom: 14px; text-shadow: 0 2px 12px rgba(184,130,42,.3); }
.booking-header h1 { font-size: 2.2rem; margin-bottom: 12px; }
.booking-header p { color: var(--muted); max-width: 540px; margin: 0 auto; line-height: 1.7; }

.reading-summary-card {
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 22px 28px;
    margin-bottom: 36px;
    position: relative;
}
.reading-summary-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: var(--radius) var(--radius) 0 0;
}
.reading-summary-card h3 { font-size: 1rem; font-family: 'Inter', system-ui, sans-serif; margin-bottom: 16px; color: var(--navy); }
.reading-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.rs-item { display: flex; flex-direction: column; gap: 3px; }
.rs-label { font-size: 0.72rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.rs-value { font-size: 0.95rem; color: var(--text); font-weight: 500; }
.rs-number { font-family: 'Playfair Display', Georgia, serif; font-size: 1.4rem; font-weight: 700; }

.booking-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 32px;
    align-items: start;
}

.form-card {
    background: var(--surface);
    border-radius: 16px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-soft);
    position: relative;
    overflow: hidden;
}
.form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold-light));
}
.form-card h2 { font-size: 1.35rem; margin-bottom: 26px; }

.info-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 22px 26px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-soft);
    margin-bottom: 16px;
}
.info-card h3 { font-size: 1rem; font-family: 'Inter', system-ui, sans-serif; font-weight: 700; margin-bottom: 14px; color: var(--navy); }
.info-list { display: flex; flex-direction: column; gap: 10px; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-soft);
    line-height: 1.5;
}
.info-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--expr-color); }

.info-pricing p { font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; line-height: 1.6; }
.pricing-tiers { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.price-tier {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px 16px;
    border: 1px solid var(--border-soft);
    transition: border-color .15s;
}
.price-tier:hover { border-color: var(--gold); }
.tier-name { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.tier-desc { font-size: 0.8rem; color: var(--muted); }

.info-contact p { font-size: 0.88rem; color: var(--muted); margin-bottom: 14px; }

/* Booking confirmation */
.success-icon { display: flex; justify-content: center; margin-bottom: 16px; }
.booking-confirm-details {
    background: var(--bg);
    border-radius: var(--radius);
    padding: 22px;
    margin: 26px 0;
    display: grid;
    gap: 14px;
    border: 1px solid var(--border-soft);
}
.confirm-item { display: flex; flex-direction: column; gap: 3px; }
.confirm-label { font-size: 0.73rem; color: var(--muted); font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
.confirm-value { font-size: 0.95rem; color: var(--text); }
.confirm-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   STATIC PAGES (Disclaimer)
   =========================== */
.static-page { padding: 52px 0 88px; }
.static-container { max-width: 800px; }

.static-header { text-align: center; margin-bottom: 44px; }
.static-header h1 { font-size: 2.1rem; margin-bottom: 10px; }
.static-subtitle { color: var(--muted); font-size: 0.9rem; }

.toc {
    background: var(--gold-pale);
    border: 1.5px solid var(--gold);
    border-radius: var(--radius);
    padding: 18px 26px;
    margin-bottom: 36px;
}
.toc h3 { font-size: 1rem; margin-bottom: 12px; color: var(--navy); }
.toc ol { padding-left: 20px; list-style: decimal; display: flex; flex-direction: column; gap: 6px; }
.toc a { font-size: 0.9rem; color: var(--navy); }
.toc a:hover { color: var(--gold); }

.static-section { margin-bottom: 40px; }
.static-section h2 {
    font-size: 1.35rem;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gold);
    margin-bottom: 18px;
    color: var(--navy);
}
.static-section h3 { font-size: 1.05rem; font-family: 'Inter', system-ui, sans-serif; font-weight: 700; margin: 18px 0 9px; color: var(--navy); }
.static-section p  { font-size: 0.95rem; color: var(--text-soft); line-height: 1.75; margin-bottom: 12px; }
.static-section ul { padding-left: 20px; list-style: disc; display: flex; flex-direction: column; gap: 7px; }
.static-section ul li { font-size: 0.92rem; color: var(--text-soft); line-height: 1.65; }

.disclaimer-box {
    background: #fef3c7;
    border: 1.5px solid #f59e0b;
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #78350f;
    margin-bottom: 16px;
    line-height: 1.6;
}

.pythagorean-table { overflow-x: auto; margin: 18px 0; }
.pythagorean-table table {
    width: auto;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.pythagorean-table th,
.pythagorean-table td {
    padding: 9px 22px;
    border: 1px solid var(--border);
    text-align: center;
}
.pythagorean-table th { background: var(--navy); color: #fff; font-weight: 700; }
.pythagorean-table tr:nth-child(even) td { background: var(--bg); }

.static-footer-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 44px; }

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,.78);
    padding-top: 56px;
}

.footer-grid {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { flex: 1; }
.footer-links,
.footer-contact { flex-shrink: 0; }

.footer-brand .logo-symbol { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 10px; filter: drop-shadow(0 0 8px rgba(240,160,80,.4)); }
.footer-brand .logo-text   { color: #fff; font-size: 1.2rem; }
.footer-brand .logo-text em { color: var(--gold-bright); }
.footer-tagline {
    font-size: 0.87rem;
    color: rgba(255,255,255,.54);
    margin: 14px 0 18px;
    line-height: 1.65;
    max-width: 240px;
}

.socmed { display: flex; gap: 10px; }
.socmed-link {
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 8px;
    transition: color .18s, border-color .18s, background .18s;
}
.socmed-link:hover {
    color: var(--gold-bright);
    border-color: var(--gold);
    background: rgba(240,192,96,.08);
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.65); font-size: 0.9rem; transition: color .18s; }
.footer-links a:hover { color: var(--gold-bright); }

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.9rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 9px;
    line-height: 1.4;
}
.footer-contact a { color: rgba(255,255,255,.65); transition: color .18s; }
.footer-contact a:hover { color: var(--gold-bright); }

.footer-bottom { padding: 18px 0; background: rgba(0,0,0,.25); }
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,.42); }
.footer-disclaimer-note a { color: rgba(255,255,255,.55); }
.footer-disclaimer-note a:hover { color: var(--gold-bright); }

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .site-header, .site-footer, .action-bar, .profile-actions-top,
    .modal-overlay, .flash, .how-it-works { display: none !important; }

    body { background: #fff; color: #000; }
    .result-page  { padding: 0; }
    .profile-banner   { background: var(--navy)     !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .interp-header    { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .synthesis-inner  { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
    .score-bar-fill   { -webkit-print-color-adjust: exact; print-color-adjust: exact; }

    .summary-cards       { grid-template-columns: repeat(4,1fr); }
    .advice-grid         { grid-template-columns: 1fr 1fr; }
    .correlations-grid   { grid-template-columns: 1fr 1fr; }
    .sc-grid             { grid-template-columns: 1fr 1fr; }

    .interp-section, .corr-card, .sc-card, .summary-card {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    a { color: inherit !important; text-decoration: none !important; }
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1000px) {
    .hero-body         { grid-template-columns: 1fr; }
    .steps-grid        { grid-template-columns: 1fr; gap: 16px; }
    .summary-cards     { grid-template-columns: repeat(2,1fr); }
    .advice-grid       { grid-template-columns: 1fr; }
    .correlations-grid { grid-template-columns: 1fr; }
    .booking-grid      { grid-template-columns: 1fr; }
    /* footer-grid uses display:flex — use flex-wrap instead of grid-template-columns */
    .footer-grid       { flex-wrap: wrap; gap: 28px; }
    .footer-links,
    .footer-contact    { min-width: 140px; }
}

@media (max-width: 680px) {
    /* Header */
    .main-nav { display: none; }
    .main-nav.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 66px; left: 0; right: 0;
        background: var(--navy-dark);
        padding: 18px 24px;
        gap: 18px;
        box-shadow: 0 10px 30px rgba(30,27,75,.35);
        z-index: 99;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .hamburger { display: flex; }
    .site-header { position: relative; }

    /* Layout */
    .container { padding: 0 16px; }

    /* Hero */
    .hero { padding: 28px 0 36px; }
    .hero-intro { margin-bottom: 28px; }
    .hero-subtitle { margin-bottom: 24px; font-size: 0.97rem; }
    .analysis-card { padding: 20px; }

    /* How it works */
    .how-it-works { padding: 44px 0; }
    .section-header { margin-bottom: 28px; }
    .section-header h2 { font-size: 1.5rem; }
    .steps-grid { grid-template-columns: 1fr; }
    .step-card  { padding: 22px 20px; }

    /* Profile banner */
    .profile-banner { padding: 24px 0; }
    .profile-banner-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
    .profile-name { font-size: 1.5rem; }
    .profile-banner::after { display: none; }
    .profile-actions-top { width: 100%; }

    /* Summary cards */
    .summary-cards { grid-template-columns: repeat(2,1fr); gap: 12px; }

    /* Interpretation */
    .interp-header { flex-direction: column; text-align: center; padding: 24px 20px; gap: 14px; }
    .interp-body   { padding: 20px; }
    .interp-header::after { display: none; }

    /* Synthesis */
    .synthesis-inner { padding: 28px 20px; }
    .synthesis-inner h2 { font-size: 1.35rem; }
    .synthesis-text { font-size: 0.97rem; }

    /* Strengths & Challenges */
    .sc-grid { grid-template-columns: 1fr; }

    /* Action bar */
    .action-bar { flex-direction: column; align-items: stretch; }
    .action-bar .btn { width: 100%; justify-content: center; }

    /* Testimonial form */
    .testi-form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-grid   { flex-direction: column; gap: 24px; }
    .footer-bottom .container { flex-direction: column; text-align: center; }

    /* Booking */
    .booking-page { padding: 28px 0 52px; }
    .booking-header h1 { font-size: 1.7rem; }
    .booking-header { margin-bottom: 28px; }
    .reading-summary-card { padding: 16px 18px; }
    .form-card { padding: 20px; }

    /* Static pages */
    .static-page { padding: 28px 0 52px; }
    .static-header h1 { font-size: 1.65rem; }
    .static-footer-actions { flex-direction: column; }

    /* Misc */
    .confirm-actions { flex-direction: column; }
    .testi-bottom-row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    /* Summary cards — keep 2-col but tighter */
    .summary-card { padding: 18px 12px; }
    .summary-card-number { font-size: 2.6rem; }
    .summary-card-title { font-size: 0.75rem; }

    /* Interpretation badge smaller */
    .interp-number-badge { width: 68px; height: 68px; font-size: 2rem; }
    .interp-title { font-size: 1.3rem; }

    /* Correlation score bar — hide verbose label on tiny screens */
    .corr-score-label { display: none; }
    .corr-score-bar { gap: 8px; }

    /* Testi thankyou — stack vertically */
    .testi-thankyou { flex-direction: column; text-align: center; }
    .testi-thankyou .share-wrap { width: 100%; }
    .testi-thankyou .btn { width: 100%; justify-content: center; }

    /* Profile symbol smaller */
    .profile-symbol { font-size: 2rem; }

    /* Booking price tiers */
    .reading-summary-grid { grid-template-columns: 1fr 1fr; }

    /* Flash message text wrapping */
    .flash .container { flex-wrap: wrap; gap: 8px; }
    .flash-close { margin-left: auto; }
}
