/* ============================================================
   index.css — AIDO Healthcare Homepage
   Usage: <link rel="stylesheet" href="{% static 'css/index.css' %}">
   ============================================================ */

/* ── HERO BACKGROUND ── */
.hero-bg {
    background: linear-gradient(120deg, #0f172a 40%, rgba(15,23,42,0.6)),
        url('../images/hero1.jpg');
    background-size: cover;
    background-position: center;
}

/* ── CURVE ── */
.curve {
    border-bottom-left-radius: 50% 10%;
    border-bottom-right-radius: 50% 10%;
}

/* ── SERVICE ACTIVE STATE ── */
.service-active {
    background: #e2e8f0;
    color: #0f172a;
    border: 1px solid #cbd5e1;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.service-active p {
    color: #475569;
}

/* ── SERVICE CARD ── */
.service-card {
    min-width: 280px;
    height: 340px;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    flex-shrink: 0;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid #f1f5f9;
}

/* HOVER */
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

/* IMAGE */
.service-card img {
    width: 100%;
    height: 210px;
    object-fit: contain;
    background: #f8fafc;
    padding: 10px;
    transition: transform 0.5s ease;
}

/* IMAGE HOVER */
.service-card:hover img {
    transform: scale(1.03);
}

/* TITLE */
.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 18px;
    color: #1e293b;
}

/* DESCRIPTION */
.service-card p {
    color: #64748b;
    margin-top: 8px;
    font-size: 16px;
    padding: 0 14px;
}

/* ── SCROLL ANIMATION ── */
@keyframes scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* .animate-scroll {
    width: max-content;
    animation: scroll 38s linear infinite;
} */
 .animate-scroll {
    width: max-content;
    display: flex;
    align-items: stretch;
    animation: scroll 50s linear infinite;
    padding-right: 300px;
}

/* PAUSE ON HOVER */
.animate-scroll:hover {
    animation-play-state: paused;
}

/* ── SMOOTH SCROLL ── */
html {
    scroll-behavior: smooth;
}

/* ============================================================
   how-it-works.css — AIDO How It Works Page
   Usage: <link rel="stylesheet" href="{% static 'css/how-it-works.css' %}">
   ============================================================ */

:root {
    --teal: #00b894;
    --teal-mid: #00997d;
    --teal-light: #e8faf5;
    --teal-dark: #006b58;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--slate);
    overflow-x: hidden;
}

/* ── NAVBAR ── */
/* .topbar {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 200;
    box-shadow: 0 1px 16px rgba(0,0,0,0.06);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo img { width: 38px; border-radius: 8px; }
.logo-text {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    letter-spacing: -0.01em;
}
.logo-text span { color: var(--teal); }
nav a {
    margin-left: 32px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.01em;
    transition: color 0.2s;
    position: relative;
}
nav a:hover { color: var(--teal); }
nav a.active { color: var(--navy); font-weight: 600; }
nav a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0; right: 0;
    height: 2px;
    background: var(--teal);
    border-radius: 2px;
}
.nav-cta {
    margin-left: 32px !important;
    background: var(--teal);
    color: white !important;
    padding: 9px 22px;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: background 0.2s, transform 0.15s !important;
    box-shadow: 0 3px 12px rgba(0,184,148,0.25);
}
.nav-cta:hover { background: var(--teal-mid) !important; transform: translateY(-1px); } */

/* ── HERO ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #12303f 55%, #0d4035 100%);
    padding: 130px 20px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(0,184,148,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 80% 40%, rgba(0,150,120,0.1) 0%, transparent 70%);
}
.page-hero .pill {
    display: inline-block;
    background: rgba(0,184,148,0.18);
    border: 1px solid rgba(0,184,148,0.35);
    color: #5eecd8;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 100px;
    margin-bottom: 24px;
    position: relative;
}
.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 5.5vw, 58px);
    color: #fff;
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.025em;
    position: relative;
}
.page-hero h1 em { font-style: italic; color: #5eecd8; }
.page-hero p {
    color: rgba(255,255,255,0.62);
    font-size: 17px;
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.65;
    position: relative;
}
.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}
.btn-primary {
    background: var(--teal);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0,184,148,0.35);
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-primary:hover { background: var(--teal-mid); transform: translateY(-2px); }
.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── STATS BAR ── */
.stats-bar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 22px 20px;
}
.stats-inner {
    max-width: 860px;
    margin: auto;
    display: flex;
    justify-content: center;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    padding: 0 24px;
    border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--navy); }
.stat-lbl { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 2px; }

/* ── STEPS SECTION ── */
.steps-section { padding: 80px 20px; max-width: 1140px; margin: auto; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    color: var(--teal-mid);
    border: 1px solid #b2eed9;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 16px;
    margin-bottom: 14px;
}

.steps-header { text-align: center; margin-bottom: 64px; }
.steps-header h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.5vw, 40px);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.steps-header p { color: var(--muted); font-size: 16px; max-width: 500px; margin: 0 auto; }

/* Step row */
.step-row {
    display: grid;
    grid-template-columns: 1fr 80px 1fr;
    gap: 0;
    align-items: center;
    margin-bottom: 64px;
}
.step-row.reverse { direction: rtl; }
.step-row.reverse > * { direction: ltr; }

/* Phone mockup */
.phone-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}
.phone-device {
    position: relative;
    width: 200px;
    background: #111;
    border-radius: 36px;
    padding: 10px;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 20px 60px rgba(0,0,0,0.22),
        0 8px 20px rgba(0,0,0,0.15);
}
.phone-device::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #333;
    border-radius: 10px;
    z-index: 10;
}
.phone-screen {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    width: 100%;
    padding-top: 14px;
}
.phone-screen img {
    width: 100%;
    display: block;
    border-radius: 0 0 28px 28px;
}

/* Step connector */
.step-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.step-dot {
    width: 44px;
    height: 44px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 15px;
    box-shadow: 0 4px 16px rgba(0,184,148,0.35);
    flex-shrink: 0;
}
.step-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--teal), #c8f0e6);
}

/* Step content */
.step-content { padding: 0 32px; }
.step-tag {
    display: inline-block;
    background: var(--teal-light);
    color: var(--teal-mid);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid #b2eed9;
}
.step-content h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 27px;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    font-weight: 400;
    line-height: 1.25;
}
.step-content p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.feature-list { list-style: none; padding: 0; }
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--slate);
    padding: 7px 0;
    border-bottom: 1px solid #f1f5f9;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
    content: '✓';
    width: 22px;
    height: 22px;
    background: var(--teal-light);
    color: var(--teal-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── QUICK STEPS STRIP ── */
.steps-strip {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 48px 20px;
}
.steps-strip-inner {
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    position: relative;
}
.strip-step {
    flex: 1;
    text-align: center;
    padding: 0 16px;
    position: relative;
}
.strip-step + .strip-step::before {
    content: '→';
    position: absolute;
    left: -10px;
    top: 20px;
    color: var(--teal);
    font-size: 18px;
}
.strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.strip-step h4 { font-weight: 600; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.strip-step p { font-size: 12px; color: var(--muted); }

/* ── BOOKING CTA ── */
.booking-section {
    padding: 80px 20px;
    background: var(--bg);
}
.booking-card {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg, var(--navy) 0%, #12303f 50%, #0d4a3a 100%);
    border-radius: 28px;
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.booking-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 70% at 80% 50%, rgba(0,184,148,0.1) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b894' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.booking-text { position: relative; }
.booking-text .pill {
    display: inline-block;
    background: rgba(0,184,148,0.18);
    border: 1px solid rgba(0,184,148,0.3);
    color: #5eecd8;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.booking-text h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(26px, 3vw, 38px);
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.booking-text h2 em { font-style: italic; color: #5eecd8; }
.booking-text p { color: rgba(255,255,255,0.6); font-size: 15px; line-height: 1.7; margin-bottom: 28px; }
.trust-row { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 13px;
}
.trust-item::before { content: '✓'; color: var(--teal); font-weight: 700; }

/* Booking form */
.booking-form-wrap { position: relative; }
.booking-form {
    background: white;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.booking-form h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 20px;
    font-weight: 400;
}
.form-group { margin-bottom: 14px; }
.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.form-group input,
.form-group select {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--navy);
    background: var(--bg);
    outline: none;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus { border-color: var(--teal); background: white; }
.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
}
.form-submit {
    width: 100%;
    background: var(--teal);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,184,148,0.3);
    margin-top: 4px;
}
.form-submit:hover { background: var(--teal-mid); transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 12px; }

/* ── WHY AIDO ── */
.why-section { padding: 80px 20px; background: var(--white); }
.why-inner { max-width: 1100px; margin: auto; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.25s;
}
.why-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-3px); border-color: #c8ead8; }
.why-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.why-card h4 { font-weight: 600; color: var(--navy); font-size: 16px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14px; line-height: 1.65; }

/* ── FOOTER ── */
.page-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 28px 20px;
    font-size: 13px;
}
.page-footer a { color: var(--teal); text-decoration: none; }

/* ── SCROLL REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SMOOTH SCROLL ── */
html { scroll-behavior: smooth; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .booking-card { grid-template-columns: 1fr; padding: 40px 28px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
    .step-row { grid-template-columns: 1fr; gap: 20px; }
    .step-row.reverse { direction: ltr; }
    .step-connector { display: none; }
    .step-content { padding: 0; }
    .stats-inner { flex-wrap: wrap; }
    .stat-item { min-width: 45%; border-right: none; padding: 8px 10px; }
    .why-grid { grid-template-columns: 1fr; }
    .topbar { padding: 0 20px; }
    .steps-strip-inner { flex-wrap: wrap; gap: 20px; }
    .strip-step + .strip-step::before { display: none; }
}

/* ============================================================
   legal-shared.css — Shared styles for all AIDO legal pages
   Applies to: consent.html, disclaimer.html, privacy.html,
               refund.html, terms.html
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
   ============================================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--slate);
    line-height: 1.7;
}

/*── SHARED NAVBAR ── */
 .topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: auto;
    height: 68px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    text-decoration: none;
}
.logo img { width: 38px; border-radius: 8px; }
nav a {
    margin-left: 28px;
    text-decoration: none;
    color: var(--muted);
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}
nav a:hover { color: var(--teal); }

/* ── SHARED HERO ── */
.page-hero {
    padding: 80px 20px 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero .pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.page-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 52px);
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}
.page-hero p {
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}
.meta-bar {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 36px;
    flex-wrap: wrap;
}
.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
}
.meta-item span { color: rgba(255,255,255,0.85); font-weight: 500; }

/* ── SHARED FOOTER ── */
.page-footer {
    background: var(--navy);
    color: rgba(255,255,255,0.45);
    text-align: center;
    padding: 28px 20px;
    font-size: 13px;
    margin-top: 60px;
}
.page-footer a { color: var(--teal); text-decoration: none; }

/* ── SMOOTH SCROLL ── */
html { scroll-behavior: smooth; }

/* ── MOBILE NAVBAR ── */
@media (max-width: 640px) {
    .topbar { padding: 0 20px; }
}

/* ============================================================
   consent.css — AIDO Consent & Acknowledgement Page
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
          <link rel="stylesheet" href="{% static 'css/consent.css' %}">
   ============================================================ */

:root {
    --teal: #00b894;
    --teal-light: #e8faf5;
    --teal-mid: #00997d;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

/* ── HERO (consent-specific) ── */
.page-hero {
    background: linear-gradient(135deg, #002d24 0%, #004d3a 50%, #0f1f2e 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(0,184,148,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(0,100,80,0.15) 0%, transparent 60%);
}
.page-hero .pill {
    background: rgba(0,184,148,0.15);
    border: 1px solid rgba(0,184,148,0.3);
    color: #4eecd4;
}

/* ── CONTAINER ── */
.container {
    max-width: 800px;
    margin: 56px auto;
    padding: 0 20px;
}

/* ── CONSENT ITEM CARDS ── */
.consent-item {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.consent-item:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-color: #c8ead8;
}

/* ── CONSENT ICONS ── */
.consent-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.icon-teal   { background: var(--teal-light); }
.icon-blue   { background: #e8f0ff; }
.icon-amber  { background: #fff8e6; }
.icon-green  { background: #f0faf5; }
.icon-purple { background: #f5f0ff; }

/* ── CONSENT BODY ── */
.consent-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}
.consent-body p { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.consent-body p:last-child { margin-bottom: 0; }

/* ── TAG ── */
.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--teal-light);
    color: var(--teal-mid);
    border: 1px solid #b2eed9;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    margin-top: 10px;
}

/* ── ACKNOWLEDGEMENT BOX ── */
.acknowledgement-box {
    background: linear-gradient(135deg, var(--teal-light) 0%, #d0f5ec 100%);
    border: 1px solid #b2eed9;
    border-radius: 16px;
    padding: 32px 36px;
    margin-top: 32px;
    text-align: center;
}
.acknowledgement-box .check { font-size: 40px; margin-bottom: 16px; }
.acknowledgement-box h3 {
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}
.acknowledgement-box p { color: #2d6a55; font-size: 15px; max-width: 520px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .consent-item { flex-direction: column; gap: 16px; padding: 24px 20px; }
}

/* ============================================================
   disclaimer.css — AIDO Medical Disclaimer Page
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
          <link rel="stylesheet" href="{% static 'css/disclaimer.css' %}">
   ============================================================ */

:root {
    --red: #e74c3c;
    --red-light: #fdf0ee;
    --red-mid: #c0392b;
    --teal: #00b894;
    --teal-light: #e8faf5;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

/* ── HERO (disclaimer-specific) ── */
.page-hero {
    background: linear-gradient(135deg, #1a0505 0%, #2d0d0d 50%, #0f1f2e 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background: radial-gradient(ellipse at 30% 50%, rgba(231,76,60,0.15) 0%, transparent 60%);
}
.page-hero .pill {
    background: rgba(231,76,60,0.15);
    border: 1px solid rgba(231,76,60,0.3);
    color: #f5a49d;
}

/* ── CONTAINER ── */
.container {
    max-width: 860px;
    margin: 56px auto;
    padding: 0 20px;
}

/* ── EMERGENCY BANNER ── */
.emergency-banner {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
    box-shadow: 0 8px 24px rgba(231,76,60,0.25);
}
.emergency-banner .em-icon { font-size: 40px; flex-shrink: 0; }
.emergency-banner h3 { font-family: 'DM Serif Display', serif; font-size: 20px; margin-bottom: 4px; }
.emergency-banner p { font-size: 14px; opacity: 0.9; }
.emergency-banner strong { font-size: 18px; letter-spacing: 0.05em; }

/* ── DISCLAIMER CARDS ── */
.disc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    margin-bottom: 16px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
.disc-icon {
    width: 50px;
    height: 50px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.disc-body h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    color: var(--navy);
    font-weight: 400;
    margin-bottom: 10px;
}
.disc-body p { color: var(--muted); font-size: 15px; margin-bottom: 8px; }
.disc-body p:last-child { margin-bottom: 0; }

/* ── COMPANY GRID ── */
.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 0;
}
.co-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
}
.co-box .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.co-box .value { font-size: 14px; font-weight: 600; color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .disc-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
    .company-grid { grid-template-columns: 1fr; }
    .emergency-banner { flex-direction: column; text-align: center; }
}

/* ============================================================
   privacy.css — AIDO Privacy Policy Page
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
          <link rel="stylesheet" href="{% static 'css/privacy.css' %}">
   ============================================================ */

:root {
    --teal: #00b894;
    --teal-light: #e8faf5;
    --teal-mid: #00997d;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

/* ── HERO (privacy-specific) ── */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a52 60%, #0d4a3e 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300b894' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .pill {
    background: rgba(0,184,148,0.15);
    border: 1px solid rgba(0,184,148,0.3);
    color: #4eecd4;
}

/* ── LAYOUT (TOC + CONTENT) ── */
.layout {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── TABLE OF CONTENTS ── */
.toc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    position: sticky;
    top: 88px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.toc-card h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 16px;
}
.toc-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.toc-card a:hover { background: var(--teal-light); color: var(--teal-mid); }
.toc-card a .num {
    width: 22px;
    height: 22px;
    background: var(--bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
}

/* ── CONTENT CARD ── */
.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}
.section:first-child { padding-top: 0; }
.section:last-child { border-bottom: none; padding-bottom: 0; }
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.section-num {
    width: 36px;
    height: 36px;
    background: var(--teal-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--teal-mid);
    flex-shrink: 0;
    margin-top: 2px;
}
.section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 21px;
    color: var(--navy);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.section p { color: var(--muted); font-size: 15px; margin-bottom: 10px; }
.section p:last-child { margin-bottom: 0; }

/* ── STYLED LIST ── */
ul.styled { list-style: none; padding: 0; margin-top: 12px; }
ul.styled li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
}
ul.styled li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── INFO GRID ── */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 12px;
}
.info-box {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
}
.info-box .label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 4px;
}
.info-box .value { font-size: 14px; font-weight: 500; color: var(--navy); }

/* ── CONTACT CARD ── */
.contact-card {
    background: linear-gradient(135deg, var(--teal-light) 0%, #d0f5ec 100%);
    border: 1px solid #b2eed9;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}
.contact-card .icon {
    width: 48px;
    height: 48px;
    background: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card .info .title { font-weight: 600; color: var(--navy); font-size: 15px; }
.contact-card .info a { color: var(--teal-mid); text-decoration: none; font-size: 14px; font-weight: 500; }
.contact-card .info a:hover { text-decoration: underline; }

/* =========================
   FLOATING D&B BANNER
========================= */

.duns-floating {

  position: fixed;

  bottom: 22px;

  right: 22px;

  z-index: 9999;

  animation:
    floatDuns 3.5s ease-in-out infinite;
}

.duns-floating a {

  display: block;

  transition: 0.35s ease;
}

.duns-floating a:hover {

  transform:
    translateY(-4px)
    scale(1.02);
}

.duns-floating img {  

  width: 620px;

  max-width: 260vw;

  background: #ffffff; 

  border-radius: 17px;dpdpd_website/templates/dpdpd_website/aido/disclaimer.html 

  padding: 10px 14px;

  box-shadow:
    0 18px 50px rgba(0,0,0,0.28);

  border: 1px solid rgba(255,255,255,0.15);

  object-fit: contain;
}
/* Floating Animation */

@keyframes floatDuns {

  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Mobile */

@media (max-width: 768px) {

  .duns-floating {

    right: 14px;

    bottom: 14px;
  }

  .duns-floating img {

    width: 190px;
}





/* ── NOTICE BOX ── */
.notice-box {
    background: #fff8f0;
    border: 1px solid #fde8c8;
    border-left: 4px solid #f39c12;
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #7a5a1e;
    margin-top: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .layout { grid-template-columns: 1fr; }
    .toc-card { display: none; }
    .content-card { padding: 28px 20px; }
    .info-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   refund.css — AIDO Support & Refund Policy Page
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
          <link rel="stylesheet" href="{% static 'css/refund.css' %}">
   ============================================================ */

:root {
    --teal: #00b894;
    --teal-light: #e8faf5;
    --teal-mid: #00997d;
    --orange: #e67e22;
    --orange-light: #fff4e9;
    --red: #e74c3c;
    --red-light: #fdf0ee;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

/* ── HERO (refund-specific) ── */
.page-hero {
    background: linear-gradient(135deg, #001a14 0%, #003828 50%, #0f1f2e 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(0,184,148,0.12) 0%, transparent 60%);
}
.page-hero .pill {
    background: rgba(0,184,148,0.15);
    border: 1px solid rgba(0,184,148,0.3);
    color: #4eecd4;
}

/* ── CONTAINER ── */
.container {
    max-width: 860px;
    margin: 56px auto;
    padding: 0 20px;
}

/* ── SUMMARY BADGES ROW ── */
.summary-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.summary-badge {
    border-radius: 14px;
    padding: 22px 20px;
    text-align: center;
    border: 1px solid;
}
.badge-green { background: var(--teal-light); border-color: #b2eed9; }
.badge-orange { background: var(--orange-light); border-color: #fde8c8; }
.badge-red { background: var(--red-light); border-color: #fad0cc; }
.summary-badge .icon { font-size: 28px; margin-bottom: 8px; }
.summary-badge .label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.badge-green .label { color: var(--teal-mid); }
.badge-orange .label { color: var(--orange); }
.badge-red .label { color: #c0392b; }
.summary-badge .desc { font-size: 13px; color: var(--muted); }

/* ── POLICY CARDS ── */
.policy-card {
    background: var(--white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    margin-bottom: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.policy-header {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.policy-header-left { display: flex; align-items: center; gap: 16px; }
.policy-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}
.num-green  { background: var(--teal-light);   color: var(--teal-mid); }
.num-orange { background: var(--orange-light);  color: var(--orange); }
.num-red    { background: var(--red-light);     color: #c0392b; }
.num-blue   { background: #e8f0ff;              color: #3a72d4; }
.num-teal   { background: var(--teal-light);    color: var(--teal-mid); }
.policy-title {
    font-family: 'DM Serif Display', serif;
    font-size: 19px;
    color: var(--navy);
    font-weight: 400;
}
.status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 100px;
    letter-spacing: 0.04em;
    white-space: nowrap;
}
.st-full    { background: var(--teal-light);   color: var(--teal-mid); border: 1px solid #b2eed9; }
.st-partial { background: var(--orange-light); color: var(--orange);   border: 1px solid #fde8c8; }
.st-none    { background: var(--red-light);    color: #c0392b;          border: 1px solid #fad0cc; }
.st-varies  { background: #e8f0ff;             color: #3a72d4;          border: 1px solid #c5d5f5; }

.policy-body {
    padding: 0 28px 24px;
    border-top: 1px solid var(--border);
}
.policy-body p { color: var(--muted); font-size: 15px; margin-top: 16px; }

/* ── REFUND LIST ── */
ul.ref-list { list-style: none; padding: 0; margin-top: 12px; }
ul.ref-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
}
.ref-outcome {
    font-weight: 600;
    color: var(--teal-mid);
    margin-left: auto;
    font-size: 13px;
    white-space: nowrap;
}

/* ── TIMELINE ── */
.timeline {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 24px 0;
    overflow-x: auto;
    padding-bottom: 4px;
}
.tl-step { flex: 1; text-align: center; min-width: 100px; }
.tl-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 2px solid;
}
.tl-label { font-size: 12px; font-weight: 600; color: var(--navy); }
.tl-sub   { font-size: 11px; color: var(--muted); }
.tl-line  { flex: 1; height: 2px; background: var(--border); min-width: 20px; }
.tl-green  .tl-circle { background: var(--teal-light);   border-color: var(--teal);   color: var(--teal); }
.tl-orange .tl-circle { background: var(--orange-light); border-color: var(--orange); color: var(--orange); }
.tl-red    .tl-circle { background: var(--red-light);    border-color: var(--red);    color: var(--red); }

/* ── CONTACT CARD ── */
.contact-card {
    background: linear-gradient(135deg, var(--teal-light), #d0f5ec);
    border: 1px solid #b2eed9;
    border-radius: 16px;
    padding: 32px 36px;
    text-align: center;
}
.contact-card h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--navy); margin-bottom: 10px; }
.contact-card p { color: var(--muted); font-size: 15px; margin-bottom: 16px; }
.contact-card a { color: var(--teal-mid); font-weight: 600; text-decoration: none; font-size: 16px; }
.contact-card .details {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.contact-card .details .item { font-size: 13px; color: var(--muted); }
.contact-card .details .item strong { display: block; color: var(--navy); font-weight: 600; }

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
    .summary-row { grid-template-columns: 1fr; }
    .policy-header { flex-direction: column; align-items: flex-start; gap: 10px; }
}
/* ============================================================
   terms.css — AIDO Terms & Conditions Page
   Usage: <link rel="stylesheet" href="{% static 'css/legal-shared.css' %}">
          <link rel="stylesheet" href="{% static 'css/terms.css' %}">
   ============================================================ */

:root {
    --teal: #00b894;
    --teal-light: #e8faf5;
    --teal-mid: #00997d;
    --orange: #e67e22;
    --orange-light: #fff4e9;
    --navy: #0f1f2e;
    --slate: #2d3f50;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
}

/* ── HERO (terms-specific) ── */
.page-hero {
    background: linear-gradient(135deg, #1a0a00 0%, #2d1800 50%, #0f1f2e 100%);
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e67e22' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero .pill {
    background: rgba(230,126,34,0.15);
    border: 1px solid rgba(230,126,34,0.3);
    color: #f0a76b;
}

/* ── LAYOUT (TOC + CONTENT) ── */
.layout {
    max-width: 1100px;
    margin: 48px auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 32px;
    align-items: start;
}

/* ── TABLE OF CONTENTS ── */
.toc-card {
    background: var(--white);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    position: sticky;
    top: 88px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.toc-card h3 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 16px;
}
.toc-card a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--muted);
    font-size: 13px;
    font-weight: 500;
    transition: all 0.2s;
    margin-bottom: 2px;
}
.toc-card a:hover { background: var(--orange-light); color: var(--orange); }
.toc-card a .num {
    width: 22px;
    height: 22px;
    background: var(--bg);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--muted);
    flex-shrink: 0;
}

/* ── CONTENT CARD ── */
.content-card {
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.section {
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 100px;
}
.section:first-child { padding-top: 0; }
.section:last-child { border-bottom: none; padding-bottom: 0; }
.section-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}
.section-num {
    width: 36px;
    height: 36px;
    background: var(--orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}
.section h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 21px;
    color: var(--navy);
    font-weight: 400;
    letter-spacing: -0.01em;
}
.section p { color: var(--muted); font-size: 15px; margin-bottom: 10px; }
.section p:last-child { margin-bottom: 0; }

/* ── STYLED LIST ── */
ul.styled { list-style: none; padding: 0; margin-top: 12px; }
ul.styled li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 4px;
    background: var(--bg);
    border: 1px solid var(--border);
}
ul.styled li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ── ALERT BOX ── */
.alert-box {
    background: #fff4e9;
    border: 1px solid #fde8c8;
    border-left: 4px solid var(--orange);
    border-radius: 10px;
    padding: 16px 20px;
    font-size: 14px;
    color: #7a4a10;
    margin-top: 12px;
    font-weight: 500;
}

/* ── CONTACT CARD ── */
.contact-card {
    background: linear-gradient(135deg, var(--orange-light) 0%, #fde8c8 100%);
    border: 1px solid #fde8c8;
    border-radius: 12px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 12px;
}
.contact-card .icon {
    width: 48px;
    height: 48px;
    background: var(--orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.contact-card .info .title { font-weight: 600; color: var(--navy); font-size: 15px; }
.contact-card .info a { color: var(--orange); text-decoration: none; font-size: 14px; font-weight: 500; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .layout { grid-template-columns: 1fr; }
    .toc-card { display: none; }
    .content-card { padding: 28px 20px; }
}