/* ============================================================
   GetHora — Shared Styles (style.css)
   Brand: hora · Zen-Tech Aesthetic
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400&family=Plus+Jakarta+Sans:wght@300;400;500;600&display=swap');

:root {
    --deep-forest: #1A2F2A;
    --sage: #88A096;
    --linen: #F9F7F2;
    --mint: #CFFFE5;
    --clay: #D4CDC3;
    --white: #FFFFFF;
    --text: #1A2F2A;
    --text-light: #6B6B63;
    --error: #C0392B;
    --success: #27AE60;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--linen);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
}

/* ============================================================
   NAV
   ============================================================ */
nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(249,247,242,.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--clay);
}
.nav-inner {
    max-width: 1080px; margin: 0 auto; padding: 14px 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.nav-logo { height: 44px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-link {
    font-size: 13px; font-weight: 500; color: var(--text-light);
    text-decoration: none; transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav-cta {
    background: var(--deep-forest); color: var(--linen);
    padding: 10px 24px; border-radius: 50px; text-decoration: none;
    font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
    transition: all .2s; border: none; cursor: pointer;
}
.nav-cta:hover { background: #0f1f1a; transform: translateY(-1px); }
.nav-cta-outline {
    background: transparent; color: var(--deep-forest);
    padding: 9px 23px; border-radius: 50px; text-decoration: none;
    font-size: 13px; font-weight: 500;
    border: 1.5px solid var(--deep-forest); cursor: pointer;
    transition: all .2s;
}
.nav-cta-outline:hover { background: var(--deep-forest); color: var(--linen); }
.lang-switch {
    font-size: 12px; font-weight: 500; color: var(--sage);
    text-decoration: none; letter-spacing: 0.05em;
    padding: 4px 8px; border-radius: 6px;
    border: 1px solid var(--clay); transition: all .2s;
}
.lang-switch:hover { color: var(--deep-forest); border-color: var(--deep-forest); }

/* ============================================================
   NAV DROPDOWN (CSS-only: :hover + :focus-within)
   ============================================================ */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle {
    background: none; border: none; cursor: pointer;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px; font-weight: 500; color: var(--text-light);
    display: flex; align-items: center; gap: 4px;
    padding: 0; transition: color .2s;
}
.nav-dropdown-toggle:hover,
.nav-dropdown:focus-within .nav-dropdown-toggle { color: var(--text); }
.nav-dropdown-arrow { font-size: 10px; line-height: 1; display: inline-block; transition: transform .2s; }
.nav-dropdown:hover .nav-dropdown-arrow,
.nav-dropdown:focus-within .nav-dropdown-arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
    position: absolute; top: calc(100% + 10px); right: 0;
    background: var(--white); border: 1px solid var(--clay);
    border-radius: 12px; padding: 6px; min-width: 190px;
    box-shadow: 0 4px 20px rgba(26,47,42,.1);
    opacity: 0; visibility: hidden; transform: translateY(-6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s;
    z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-item {
    display: block; padding: 9px 14px;
    font-size: 13px; font-weight: 400; color: var(--text-light);
    text-decoration: none; border-radius: 8px; white-space: nowrap;
    transition: background .15s, color .15s;
}
.nav-dropdown-item:hover { background: var(--linen); color: var(--deep-forest); }

@media (max-width: 768px) {
    .nav-dropdown { display: none; }
}

/* ============================================================
   LAYOUT
   ============================================================ */
section { padding: 100px 24px; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.section-label {
    font-size: 11px; font-weight: 500; letter-spacing: 2.5px;
    text-transform: uppercase; color: var(--sage); margin-bottom: 14px;
}
.page-content { padding-top: 80px; min-height: 100vh; }

/* ============================================================
   LANDING — HERO
   ============================================================ */
.hero { padding: 150px 24px 80px; text-align: center; }
.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(36px, 5.5vw, 62px);
    font-weight: 600; line-height: 1.08;
    max-width: 680px; margin: 0 auto 24px;
    letter-spacing: -0.5px; color: var(--deep-forest);
}
.hero h1 em { font-style: italic; color: var(--sage); }
.hero-sub {
    font-size: 17px; color: var(--text-light); max-width: 500px;
    margin: 0 auto 40px; font-weight: 300; line-height: 1.7;
}
.hero-cta-group { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.hero-note { font-size: 12px; color: var(--sage); }
.hero-photo {
    margin-top: 56px; border-radius: 20px; overflow: hidden;
    max-width: 800px; margin-left: auto; margin-right: auto;
    box-shadow: 0 12px 48px rgba(26,47,42,.1);
}
.hero-photo img { width: 100%; display: block; }

/* ============================================================
   LANDING — BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--deep-forest); color: var(--linen);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 500;
    padding: 15px 34px; border-radius: 50px;
    text-decoration: none; transition: all .25s;
    box-shadow: 0 4px 16px rgba(26,47,42,.2);
    border: none; cursor: pointer; letter-spacing: 0.01em;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(26,47,42,.3); background: #0f1f1a; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }
.btn-light {
    display: inline-flex; background: var(--linen); color: var(--deep-forest);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 600;
    padding: 15px 34px; border-radius: 50px;
    text-decoration: none; transition: all .25s;
}
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,.2); }

/* ============================================================
   LANDING — TRUST BAR
   ============================================================ */
.trust-bar {
    padding: 36px 24px; text-align: center;
    border-top: 1px solid var(--clay); border-bottom: 1px solid var(--clay);
}
.trust-bar p { font-size: 11px; color: var(--sage); letter-spacing: 1.5px; text-transform: uppercase; font-weight: 500; }
.trust-logos { display: flex; justify-content: center; gap: 36px; margin-top: 14px; flex-wrap: wrap; }
.trust-logo { font-size: 13px; font-weight: 400; color: var(--text-light); opacity: .7; display: flex; align-items: center; gap: 6px; }

/* ============================================================
   LANDING — 3 STEPS
   ============================================================ */
.transformation { background: var(--white); }
.transformation .container { text-align: center; }
.transformation h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 600; margin-bottom: 14px; color: var(--deep-forest);
}
.transformation .subtitle { color: var(--text-light); font-size: 15px; max-width: 460px; margin: 0 auto 56px; font-weight: 300; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps::before {
    content: ''; position: absolute; top: 36px; left: 16%; right: 16%;
    height: 1px; background: var(--clay); z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: var(--mint); display: flex; align-items: center; justify-content: center;
    margin: 0 auto 18px;
}
.step-icon svg { width: 32px; height: 32px; }
.step h3 { font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-light); max-width: 240px; margin: 0 auto; font-weight: 300; line-height: 1.6; }

/* ============================================================
   LANDING — CONTENT BLOCKS
   ============================================================ */
.content-block {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 72px; align-items: center; margin-bottom: 80px;
}
.content-block:last-child { margin-bottom: 0; }
.content-block.reversed { direction: rtl; }
.content-block.reversed > * { direction: ltr; }
.cb-visual { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(26,47,42,.06); }
.cb-visual img { width: 100%; display: block; }
.cb-visual-mock {
    background: var(--white); border-radius: 20px;
    padding: 40px; display: flex; align-items: center; justify-content: center;
    min-height: 300px; border: 1px solid var(--clay);
}
.mock-phone {
    background: var(--linen); border-radius: 24px;
    padding: 20px 16px; box-shadow: 0 4px 20px rgba(0,0,0,.05);
    width: 260px; font-size: 13px; line-height: 1.5;
}
.mock-bubble {
    background: #DCF8C6; border-radius: 12px 12px 12px 4px;
    padding: 10px 14px; margin-bottom: 8px; font-size: 13px;
}
.mock-bubble.bot {
    background: var(--white); border: 1px solid var(--clay);
    border-radius: 12px 12px 4px 12px;
}
.mock-bubble .time { font-size: 10px; color: var(--sage); text-align: right; margin-top: 4px; }
.cb-text h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600; margin-bottom: 14px; line-height: 1.2; color: var(--deep-forest);
}
.cb-text p { font-size: 15px; color: var(--text-light); font-weight: 300; line-height: 1.7; margin-bottom: 10px; }
.cb-text .hl { color: var(--deep-forest); font-weight: 500; }

/* ============================================================
   LANDING — SOCIAL PROOF
   ============================================================ */
.social-proof { background: var(--white); text-align: center; }
.social-proof h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 48px; color: var(--deep-forest); }
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testimonial { background: var(--linen); border-radius: 16px; padding: 28px 22px; text-align: left; }
.t-stars { color: #D4A574; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.t-text { font-size: 14px; font-style: italic; color: var(--text); margin-bottom: 18px; line-height: 1.6; font-weight: 300; }
.t-author { display: flex; align-items: center; gap: 10px; }
.t-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--mint); display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; color: var(--deep-forest);
}
.t-name { font-size: 13px; font-weight: 500; }
.t-role { font-size: 11px; color: var(--sage); }

/* ============================================================
   LANDING — PRICING
   ============================================================ */
.pricing { text-align: center; }
.pricing h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 14px; color: var(--deep-forest); }
.pricing .subtitle { color: var(--text-light); font-size: 15px; margin-bottom: 48px; font-weight: 300; }
.price-card {
    background: var(--white); border: 1.5px solid var(--deep-forest);
    border-radius: 20px; padding: 44px 36px;
    max-width: 380px; margin: 0 auto;
}
.price-amount { font-family: 'Fraunces', serif; font-size: 52px; font-weight: 700; color: var(--deep-forest); }
.price-amount-text { font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700; color: var(--deep-forest); line-height: 1.2; }
.price-desc { font-size: 14px; color: var(--sage); margin: 6px 0 24px; }
.price-features { list-style: none; text-align: left; margin-bottom: 28px; }
.price-features li {
    padding: 9px 0; border-bottom: 1px solid var(--clay);
    font-size: 14px; display: flex; align-items: center; gap: 10px; font-weight: 300;
}
.price-features li::before { content: '\2713'; color: var(--deep-forest); font-weight: 600; font-size: 13px; }
.price-features li:last-child { border-bottom: none; }
.price-after { font-size: 12px; color: var(--sage); margin-top: 14px; line-height: 1.6; }

/* ============================================================
   LANDING — FAQ
   ============================================================ */
.faq { background: var(--white); }
.faq .container { max-width: 680px; }
.faq h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; text-align: center; margin-bottom: 48px; color: var(--deep-forest); }
.faq-item { border-bottom: 1px solid var(--clay); }
.faq-q {
    width: 100%; background: none; border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 500; text-align: left;
    padding: 18px 0; cursor: pointer;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--text);
}
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--sage); transition: transform .3s; }
.faq-q.active::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 18px; font-size: 14px; color: var(--text-light); line-height: 1.7; font-weight: 300; }

/* ============================================================
   LANDING — FINAL CTA
   ============================================================ */
.final-cta { text-align: center; background: var(--deep-forest); color: var(--linen); }
.final-cta h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; margin-bottom: 14px; }
.final-cta p { font-size: 15px; opacity: .7; margin-bottom: 32px; font-weight: 300; }

/* ============================================================
   AUTH PAGES
   ============================================================ */
.auth-container {
    max-width: 420px; margin: 120px auto 60px; padding: 0 24px;
    text-align: center;
}
.auth-card {
    background: var(--white); border-radius: 20px;
    padding: 40px 32px; box-shadow: 0 2px 16px rgba(26,47,42,.06);
}
.auth-card h1 {
    font-family: 'Fraunces', serif; font-size: 28px;
    font-weight: 600; margin-bottom: 8px; color: var(--deep-forest);
}
.auth-card .subtitle {
    font-size: 14px; color: var(--text-light); font-weight: 300;
    margin-bottom: 28px;
}

/* FORMS */
.form-group { margin-bottom: 16px; text-align: left; }
.form-group label {
    display: block; font-size: 12px; font-weight: 500;
    color: var(--text-light); margin-bottom: 6px;
    letter-spacing: 0.5px; text-transform: uppercase;
}
.form-group input, .form-group select {
    width: 100%; padding: 12px 16px; border: 1.5px solid var(--clay);
    border-radius: 10px; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px; color: var(--text); background: var(--linen);
    transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus {
    outline: none; border-color: var(--deep-forest);
}
.form-group input::placeholder { color: var(--clay); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; width: 100%; padding: 14px 24px;
    border-radius: 50px; font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 15px; font-weight: 500; cursor: pointer;
    transition: all .2s; border: none; text-decoration: none;
}
.btn-google {
    background: var(--white); color: var(--text);
    border: 1.5px solid var(--clay);
}
.btn-google:hover { border-color: var(--text); }
.btn-google svg { width: 18px; height: 18px; }
.btn-danger { background: var(--error); color: white; }
.btn-danger:hover { opacity: .9; }
.btn-outline {
    background: transparent; color: var(--deep-forest);
    border: 1.5px solid var(--clay);
}
.btn-outline:hover { border-color: var(--deep-forest); }

.divider {
    display: flex; align-items: center; gap: 16px;
    margin: 20px 0; color: var(--clay); font-size: 12px;
}
.divider::before, .divider::after {
    content: ''; flex: 1; height: 1px; background: var(--clay);
}
.auth-footer {
    margin-top: 20px; font-size: 13px; color: var(--text-light);
}
.auth-footer a { color: var(--deep-forest); font-weight: 500; text-decoration: none; }

.alert {
    padding: 12px 16px; border-radius: 10px; font-size: 13px;
    margin-bottom: 16px; display: none;
}
.alert-error { background: #FDECEA; color: var(--error); display: block; }
.alert-success { background: #E8F5E9; color: var(--success); display: block; }

/* ============================================================
   DASHBOARD
   ============================================================ */
.dashboard { padding-top: 90px; padding-bottom: 60px; }
.dash-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 40px;
}
.dash-header h1 {
    font-family: 'Fraunces', serif; font-size: 32px;
    font-weight: 600; color: var(--deep-forest);
}
.dash-user {
    display: flex; align-items: center; gap: 12px;
    font-size: 13px; color: var(--text-light);
}
.dash-section { margin-bottom: 40px; }
.dash-section-header {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 16px;
}
.dash-section-header h2 {
    font-family: 'Fraunces', serif; font-size: 22px;
    font-weight: 600; color: var(--deep-forest);
}
.card {
    background: var(--white); border-radius: 16px;
    padding: 24px; box-shadow: 0 2px 12px rgba(26,47,42,.04);
}

/* STAFF TABLE */
.staff-table { width: 100%; border-collapse: collapse; }
.staff-table th {
    text-align: left; font-size: 11px; font-weight: 500;
    color: var(--sage); text-transform: uppercase;
    letter-spacing: 1px; padding: 10px 12px;
    border-bottom: 1px solid var(--clay);
}
.staff-table td {
    padding: 14px 12px; border-bottom: 1px solid var(--linen);
    font-size: 14px; font-weight: 300;
}
.staff-table tr:last-child td { border-bottom: none; }
.staff-table .actions { display: flex; gap: 8px; }
.staff-table .btn-sm {
    padding: 6px 14px; font-size: 12px; border-radius: 8px;
    cursor: pointer; border: none; font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500; transition: all .2s;
}
.btn-edit { background: var(--linen); color: var(--text); }
.btn-edit:hover { background: var(--clay); }
.btn-delete { background: #FDECEA; color: var(--error); }
.btn-delete:hover { background: #F5C6CB; }
.inline-confirm { display: inline-flex; gap: 6px; align-items: center; }
.inline-confirm .btn-sm { font-size: 11px; padding: 4px 12px; }
.badge-active {
    display: inline-block; padding: 3px 10px;
    border-radius: 50px; font-size: 11px; font-weight: 500;
}
.badge-active.active { background: var(--mint); color: var(--deep-forest); }
.badge-active.inactive { background: var(--linen); color: var(--sage); }

/* MODAL */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(26,47,42,.4); backdrop-filter: blur(4px);
    z-index: 200; display: none; align-items: center; justify-content: center;
}
.modal-overlay.active { display: flex; }
.modal {
    background: var(--white); border-radius: 20px;
    padding: 36px 32px; width: 90%; max-width: 480px;
    box-shadow: 0 12px 48px rgba(26,47,42,.15);
}
.modal h2 {
    font-family: 'Fraunces', serif; font-size: 22px;
    font-weight: 600; margin-bottom: 20px; color: var(--deep-forest);
}
.modal-actions { display: flex; gap: 12px; margin-top: 24px; }
.modal-actions .btn { flex: 1; }

/* LEGAL PAGES */
.legal { max-width: 720px; margin: 100px auto 60px; padding: 0 24px; }
.legal h1 { font-family: 'Fraunces', serif; font-size: 32px; font-weight: 600; margin-bottom: 8px; color: var(--deep-forest); }
.legal .date { font-size: 13px; color: var(--sage); margin-bottom: 40px; }
.legal h2 { font-family: 'Fraunces', serif; font-size: 20px; font-weight: 600; margin: 32px 0 12px; color: var(--deep-forest); }
.legal p, .legal li { font-size: 14px; color: var(--text-light); line-height: 1.8; font-weight: 300; margin-bottom: 12px; }
.legal ul { padding-left: 20px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 13px; }
.legal th, .legal td { padding: 10px 12px; border: 1px solid var(--clay); text-align: left; }
.legal th { background: var(--linen); font-weight: 500; color: var(--text); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 36px 24px; text-align: center;
    font-size: 12px; color: var(--sage);
    border-top: 1px solid var(--clay);
}
footer a { color: var(--deep-forest); text-decoration: none; }
footer .footer-links { display: flex; justify-content: center; gap: 16px; margin-bottom: 8px; }
footer .footer-resources { margin-bottom: 20px; }
footer .footer-resources-label { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); margin-bottom: 4px; }
footer .footer-resources a { display: block; font-size: 13px; color: var(--text-light); line-height: 2; text-decoration: none; }
footer .footer-resources a:hover { color: var(--deep-forest); }
footer .footer-resources .faq-item { border-bottom: none; display: inline-block; }
footer .footer-resources .faq-question { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--sage); padding: 0 0 4px; justify-content: center; gap: 6px; width: auto; cursor: pointer; }
footer .footer-resources .faq-question::after { font-size: 12px; }
footer .footer-resources .faq-answer { padding: 0; text-align: center; max-height: 0; overflow: hidden; transition: max-height .3s ease; }
footer .footer-resources .faq-item.open .faq-answer { max-height: 600px; }

/* ============================================================
   CHANGELOG
   ============================================================ */
.changelog { padding: 80px 0; }
.changelog h2 { font-family: 'Fraunces', serif; font-size: clamp(28px, 4vw, 40px); font-weight: 600; color: var(--deep-forest); }
.changelog .subtitle { color: var(--text-light); font-size: 15px; font-weight: 300; }
.changelog-track {
    max-width: 600px; margin: 0 auto; max-height: 420px;
    overflow-y: auto; padding-right: 12px;
    scrollbar-width: thin; scrollbar-color: var(--clay) transparent;
}
.changelog-track::-webkit-scrollbar { width: 4px; }
.changelog-track::-webkit-scrollbar-track { background: transparent; }
.changelog-track::-webkit-scrollbar-thumb { background: var(--clay); border-radius: 4px; }
.changelog-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--clay); align-items: flex-start;
}
.changelog-item:last-child { border-bottom: none; }
.changelog-date {
    min-width: 90px; font-size: 12px; font-weight: 500;
    color: var(--sage); padding-top: 2px; white-space: nowrap;
}
.changelog-dot {
    width: 8px; height: 8px; min-width: 8px; background: var(--mint);
    border-radius: 50%; margin-top: 6px; border: 2px solid var(--deep-forest);
}
.changelog-text { font-size: 14px; color: var(--text); line-height: 1.6; }
.changelog-tag {
    display: inline-block; font-size: 10px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
    padding: 2px 8px; border-radius: 4px; margin-right: 6px; vertical-align: middle;
}
.tag-new { background: var(--mint); color: var(--deep-forest); }
.tag-improve { background: #E8F0FE; color: #1A56DB; }
.tag-fix { background: #FFF3E0; color: #E65100; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
    .steps { grid-template-columns: 1fr; gap: 28px; }
    .steps::before { display: none; }
    .content-block, .content-block.reversed { grid-template-columns: 1fr; direction: ltr; gap: 36px; }
    .testimonials { grid-template-columns: 1fr; }
    .hero-photo { margin-top: 40px; }
    .dash-header { flex-direction: column; align-items: flex-start; gap: 16px; }
    .staff-table { font-size: 12px; }
    .staff-table th, .staff-table td { padding: 10px 8px; }
    .modal { padding: 28px 24px; }
    .nav-links { gap: 12px; }
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* LOADING */
.spinner {
    width: 24px; height: 24px; border: 2.5px solid var(--clay);
    border-top-color: var(--deep-forest);
    border-radius: 50%; animation: spin .6s linear infinite;
    margin: 0 auto;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-page {
    display: flex; align-items: center; justify-content: center;
    min-height: 60vh;
}

/* ============================================================
   NANNY GUIDE PAGE — WhatsApp bubbles, privacy cards, avoid list
   ============================================================ */

/* Can-send section: labeled example cards */
.wa-examples { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.wa-example-card { border: 1px solid var(--clay); border-radius: 16px; overflow: hidden; }
.wa-example-label { background: var(--mint); color: var(--deep-forest); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 8px 14px; }
.wa-chat { background: #e5ded8 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' opacity='.06'%3E%3Ccircle cx='30' cy='30' r='28' fill='%231A2F2A'/%3E%3C/svg%3E"); border-radius: 0 0 12px 12px; padding: 12px; }
.wa-bubble-out { background: #dcf8c6; border-radius: 16px 16px 4px 16px; padding: 8px 12px; margin: 4px 0 4px 20px; font-size: 13px; line-height: 1.5; color: #111; }
.wa-bubble-in { background: #fff; border-radius: 16px 16px 16px 4px; padding: 8px 12px; margin: 4px 20px 4px 0; font-size: 13px; line-height: 1.5; color: #111; }
.wa-bubble-in.confirmed { color: #1A7A4A; font-weight: 500; }
.wa-time { font-size: 10px; color: #999; text-align: right; margin-top: 2px; }
.wa-voice { display: flex; align-items: center; gap: 8px; }
.wa-play { width: 28px; height: 28px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-play::after { content: ''; border-left: 9px solid #fff; border-top: 5px solid transparent; border-bottom: 5px solid transparent; margin-left: 2px; }
.wa-waveform { flex: 1; display: flex; align-items: center; gap: 2px; height: 20px; }
.wa-waveform span { width: 2px; background: #25d366; border-radius: 1px; }
.wa-img-thumb { display: flex; align-items: center; gap: 8px; background: rgba(0,0,0,.08); border-radius: 8px; padding: 8px; }
.wa-img-icon { font-size: 22px; }

/* Avoid list */
.avoid-list { list-style: none; margin: 24px 0; padding: 0; }
.avoid-item { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--clay); }
.avoid-item:last-child { border-bottom: none; }
.avoid-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.avoid-text strong { display: block; font-size: 14px; color: var(--text); font-weight: 500; margin-bottom: 4px; }
.avoid-text span { font-size: 13px; color: var(--text-light); font-weight: 300; line-height: 1.6; }

/* Privacy cards */
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 24px 0; }
.privacy-card { background: var(--white); border: 1px solid var(--clay); border-radius: 16px; padding: 18px 20px; }
.privacy-card-icon { font-size: 18px; margin-bottom: 8px; }
.privacy-card-title { font-size: 13px; font-weight: 600; color: var(--deep-forest); margin-bottom: 5px; }
.privacy-card-text { font-size: 12px; color: var(--text-light); line-height: 1.6; font-weight: 300; margin: 0; }

@media (max-width: 768px) {
    .wa-examples { grid-template-columns: 1fr; }
    .privacy-grid { grid-template-columns: 1fr; }
}
