/* IVFdirectory v2 */


  :root {
    --pink: #e91e8c;
    --pink-light: #f472b6;
    --pink-pale: #fdf2f8;
    --purple: #7c3aed;
    --purple-mid: #9333ea;
    --purple-dark: #4c1d95;
    --blue: #2563eb;
    --blue-mid: #3b82f6;
    --blue-light: #eff6ff;
    --navy: #0f172a;
    --slate: #334155;
    --muted: #64748b;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --grad-hero: linear-gradient(135deg, #4c1d95 0%, #7c3aed 40%, #e91e8c 100%);
    --grad-card-pink: linear-gradient(135deg, #e91e8c, #f472b6);
    --grad-card-blue: linear-gradient(135deg, #2563eb, #06b6d4);
    --grad-card-purple: linear-gradient(135deg, #7c3aed, #a855f7);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Instrument Sans', sans-serif;
    background: var(--bg);
    color: var(--navy);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── NAVBAR ── */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-hero);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: -0.5px;
  }

  .nav-logo-text { line-height: 1.1; }
  .nav-logo-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--navy); }
  .nav-logo-text span { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pink); font-weight: 600; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex: 1;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--slate);
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    transition: all 0.15s;
    white-space: nowrap;
  }
  .nav-links a:hover { background: var(--pink-pale); color: var(--pink); }
  .nav-links a.active { background: var(--navy); color: white; }

  .nav-search {
    display: flex;
    align-items: center;
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0 0.75rem;
    gap: 0.5rem;
    width: 220px;
    transition: border-color 0.15s;
  }
  .nav-search:focus-within { border-color: var(--pink); }
  .nav-search input {
    background: none;
    border: none;
    outline: none;
    font-size: 13px;
    color: var(--navy);
    width: 100%;
    padding: 0.45rem 0;
    font-family: inherit;
  }
  .nav-search svg { color: var(--muted); flex-shrink: 0; }

  /* ── HERO ── */
  .hero {
    background: var(--grad-hero);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem 4rem;
    text-align: center;
  }

  .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='%23ffffff' fill-opacity='0.03'%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;
  }

  .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 0.3rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(4px);
  }

  .hero h1 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-sub {
    color: rgba(255,255,255,0.82);
    font-size: 16px;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
  }

  /* Search bar in hero */
  .hero-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0 auto 2.5rem;
  }

  .hero-cta-btn {
    background: white;
    color: var(--purple-dark);
    border: none;
    border-radius: 50px;
    padding: 0.85rem 2rem;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    transition: transform 0.15s, box-shadow 0.15s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
  }
  .hero-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.28);
  }

  .hero-cta-btn--ghost {
    background: rgba(255,255,255,0.15);
    color: white;
    border: 2px solid rgba(255,255,255,0.4);
    box-shadow: none;
    backdrop-filter: blur(6px);
  }
  .hero-cta-btn--ghost:hover {
    background: rgba(255,255,255,0.25);
    box-shadow: none;
  }

  .hero-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .hero-stat {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    padding: 1rem 1.75rem;
    text-align: center;
    color: white;
    min-width: 130px;
  }

  .hero-stat-icon { font-size: 1.25rem; margin-bottom: 0.4rem; }
  .hero-stat-num { font-family: 'Clash Display', sans-serif; font-size: 1.8rem; font-weight: 700; display: block; }
  .hero-stat-lbl { font-size: 11.5px; opacity: 0.8; letter-spacing: 0.3px; }

  /* ── SECTION WRAPPER ── */
  .section { padding: 4rem 2rem; }
  .section-inner { max-width: 1140px; margin: 0 auto; }

  .section-header { text-align: center; margin-bottom: 3rem; }
  .section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.6rem;
  }
  .section-header h2 {
    font-family: 'Clash Display', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }
  .section-header p { color: var(--muted); font-size: 15px; max-width: 520px; margin: 0 auto; }

  /* ── CHOOSE YOUR PATH ── */
  .path-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .path-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .path-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.12); }

  .path-card-header {
    padding: 1.75rem 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .path-card-header::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
  }

  .path-card--pink .path-card-header { background: var(--grad-card-pink); }
  .path-card--blue .path-card-header { background: var(--grad-card-blue); }
  .path-card--purple .path-card-header { background: var(--grad-card-purple); }

  .path-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }

  .path-card-header h3 { font-family: 'Clash Display', sans-serif; font-size: 1.25rem; font-weight: 700; color: white; }
  .path-card-header p { font-size: 12.5px; color: rgba(255,255,255,0.8); margin-top: 0.2rem; }

  .path-card-body { padding: 1.5rem 1.75rem 1.75rem; }
  .path-card-body > p { font-size: 13.5px; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.6; }

  .path-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
  .path-features li { font-size: 13px; color: var(--slate); display: flex; align-items: center; gap: 0.6rem; }
  .path-features li::before { content: '✓'; font-size: 11px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  .path-card--pink .path-features li::before { background: #fce7f3; color: var(--pink); }
  .path-card--blue .path-features li::before { background: var(--blue-light); color: var(--blue); }
  .path-card--purple .path-features li::before { background: #f3e8ff; color: var(--purple); }

  .btn-path {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: opacity 0.15s, transform 0.15s;
  }
  .btn-path:hover { opacity: 0.9; transform: scale(0.99); }
  .path-card--pink .btn-path { background: var(--grad-card-pink); color: white; }
  .path-card--blue .btn-path { background: var(--grad-card-blue); color: white; }
  .path-card--purple .btn-path { background: var(--grad-card-purple); color: white; }

  /* ── QUICK STATS BAR ── */
  .stats-bar {
    background: var(--navy);
    padding: 2.25rem 2rem;
  }

  .stats-bar-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
  }

  .stat-item { color: white; }
  .stat-item-num {
    font-family: 'Clash Display', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(90deg, var(--pink-light), var(--blue-mid));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
  }
  .stat-item-lbl { font-size: 12.5px; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }

  /* ── CLINIC FINDER ── */
  .finder-bg { background: white; }

  .finder-filters {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--border);
  }

  .filter-group { display: flex; flex-direction: column; gap: 0.4rem; flex: 1; min-width: 150px; }
  .filter-group label { font-size: 11px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase; color: var(--muted); }
  .filter-group select, .filter-group input {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.55rem 0.875rem;
    font-size: 13.5px;
    font-family: inherit;
    color: var(--navy);
    outline: none;
    background: white;
    transition: border-color 0.15s;
    cursor: pointer;
  }
  .filter-group select:focus, .filter-group input:focus { border-color: var(--pink); }

  .btn-search-filter {
    align-self: flex-end;
    background: var(--grad-hero);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.65rem 1.75rem;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
    transition: opacity 0.15s;
  }
  .btn-search-filter:hover { opacity: 0.9; }

  .clinic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .clinic-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem;
    transition: border-color 0.15s, box-shadow 0.15s;
    cursor: pointer;
  }
  .clinic-card:hover { border-color: var(--pink); box-shadow: 0 6px 24px rgba(233,30,140,0.1); }

  .clinic-card-top { display: flex; align-items: flex-start; gap: 0.875rem; margin-bottom: 1rem; }

  .clinic-avatar {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: white;
  }

  .clinic-meta { flex: 1; min-width: 0; }
  .clinic-meta h4 { font-size: 14px; font-weight: 700; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 0.2rem; }
  .clinic-meta span { font-size: 12px; color: var(--muted); }

  .clinic-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .badge-verified { background: #d1fae5; color: #065f46; }
  .badge-premium { background: #fef3c7; color: #92400e; }

  .clinic-details { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
  .clinic-detail { display: flex; align-items: center; gap: 0.5rem; font-size: 12.5px; color: var(--muted); }

  .clinic-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .clinic-tag {
    font-size: 11px;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 500;
  }

  .clinic-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.875rem;
    border-top: 1px solid var(--border);
  }

  .clinic-price { font-size: 13px; color: var(--navy); }
  .clinic-price strong { color: var(--pink); font-weight: 700; }

  .btn-clinic {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--pink);
    border: 1.5px solid var(--pink);
    background: none;
    border-radius: 7px;
    padding: 0.35rem 0.875rem;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
  }
  .btn-clinic:hover { background: var(--pink); color: white; }

  /* ── STAR RATING ── */
  .stars { display: flex; gap: 2px; }
  .star { color: #f59e0b; font-size: 12px; }
  .star-empty { color: #d1d5db; }

  /* ── PROCEDURES ── */
  .procedures-bg { background: var(--bg); }

  .procedures-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }


  /* ── PROCEDURE CARD READ MORE ── */
  .procedure-card { cursor: pointer; }
  .proc-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--purple);
    text-decoration: none;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: 1.5px solid #ede9fe;
    background: #f5f3ff;
    transition: all 0.15s;
    width: 100%;
    justify-content: space-between;
  }
  .proc-read-more:hover {
    background: var(--purple);
    color: white;
    border-color: var(--purple);
  }
  .proc-read-more:hover .proc-source-label { color: rgba(255,255,255,0.7); }
  .proc-source-label {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.3px;
  }
  .proc-sources-row {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-top: 0.6rem;
  }
  .proc-source-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 0.15rem 0.5rem;
    text-decoration: none;
    transition: all 0.12s;
  }
  .proc-source-chip:hover { background: var(--navy); color: white; border-color: var(--navy); }

  .procedure-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    transition: border-color 0.15s, transform 0.15s;
    cursor: pointer;
  }
  .procedure-card:hover { border-color: var(--purple); transform: translateY(-3px); box-shadow: 0 8px 30px rgba(124,58,237,0.1); }

  .procedure-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .procedure-card { display: flex; flex-direction: column; }
  .procedure-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
  .procedure-card p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
  .procedure-card .procedure-meta { margin-bottom: 1rem; }
  .proc-divider { border: none; border-top: 1px solid var(--border); margin: 0.75rem 0; }
  .proc-links-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); margin-bottom: 0.5rem; }
  .proc-link-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.875rem;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: all 0.15s;
    border: 1.5px solid transparent;
  }
  .proc-link-primary:hover { opacity: 0.88; transform: translateX(3px); }
  .proc-link-primary .pl-source { font-size: 10.5px; font-weight: 500; opacity: 0.75; }
  .proc-links-secondary { display: flex; gap: 0.4rem; flex-wrap: wrap; }
  .proc-link-secondary {
    font-size: 11px;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 5px;
    background: var(--bg);
    border: 1px solid var(--border);
    color: var(--slate);
    text-decoration: none;
    transition: all 0.12s;
  }
  .proc-link-secondary:hover { background: var(--navy); color: white; border-color: var(--navy); }

  .procedure-meta { display: flex; gap: 0.75rem; flex-wrap: wrap; }
  .procedure-chip { font-size: 11.5px; padding: 0.25rem 0.6rem; border-radius: 5px; font-weight: 500; }

  /* ── FOR PATIENTS PAGE PREVIEW ── */
  .patients-section { background: white; }

  .essential-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .essential-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.15s;
  }
  .essential-card:hover { border-color: var(--pink); box-shadow: 0 4px 16px rgba(233,30,140,0.1); }
  .essential-card.featured { border-color: var(--pink); }

  .essential-icon {
    width: 40px;
    height: 40px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.875rem;
  }

  .essential-card h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
  .essential-card p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin-bottom: 0.875rem; }

  .essential-card-footer { display: flex; align-items: center; justify-content: space-between; }
  .essential-chip { font-size: 10.5px; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 4px; }
  .chip-pink { background: #fce7f3; color: var(--pink); }
  .chip-blue { background: var(--blue-light); color: var(--blue); }
  .chip-green { background: #d1fae5; color: #065f46; }
  .essential-read { font-size: 11.5px; color: var(--muted); }

  /* Cost Table */
  .cost-table {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
  }

  .cost-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border);
  }
  .cost-row:last-child { border-bottom: none; background: #fdf2f8; }

  .cost-row-label h4 { font-size: 14px; font-weight: 600; color: var(--navy); }
  .cost-row-label p { font-size: 12.5px; color: var(--muted); margin-top: 0.2rem; }
  .cost-row-price { font-size: 14px; font-weight: 700; color: var(--pink); white-space: nowrap; }
  .cost-row:last-child .cost-row-price { font-size: 15px; }

  /* ── CLINIC PORTAL SECTION ── */
  .portal-section { background: var(--bg); }

  .portal-hero {
    background: var(--grad-hero);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
  }

  .portal-hero-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .portal-hero h2 { font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700; color: white; }
  .portal-hero p { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 0.5rem; }

  .auth-notice {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .auth-notice-icon { color: #d97706; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .auth-notice strong { display: block; font-size: 14px; color: #92400e; margin-bottom: 0.2rem; }
  .auth-notice p { font-size: 13px; color: #92400e; }

  .portal-cards-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

  .portal-feature-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); background: white; }

  .portal-feature-top {
    padding: 1.5rem;
    color: white;
  }
  .portal-feature-top--blue { background: var(--grad-card-blue); }
  .portal-feature-top--pink { background: var(--grad-card-pink); }

  .portal-feature-top-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .portal-feature-top h3 { font-size: 1.15rem; font-weight: 700; }
  .portal-feature-top p { font-size: 13px; opacity: 0.85; margin-top: 0.25rem; }

  .portal-feature-bottom {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
  }
  .portal-feature-bottom span { font-size: 13px; color: var(--muted); }
  .btn-portal-action {
    font-size: 12.5px;
    font-weight: 600;
    padding: 0.35rem 1rem;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .btn-portal-action:hover { opacity: 0.85; }
  .btn-action-green { background: #d1fae5; color: #065f46; }
  .btn-action-blue { background: var(--blue-light); color: var(--blue); }

  /* ── TRAINING / ACADEMY ── */
  .academy-section { background: white; }

  .academy-filter-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
  }

  .academy-filter-btn {
    font-size: 12.5px;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: none;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
  }
  .academy-filter-btn.active, .academy-filter-btn:hover { background: var(--pink); border-color: var(--pink); color: white; }

  .academy-institution { margin-bottom: 2.5rem; }

  .academy-institution-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
  }

  .academy-institution-header h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); }
  .institution-tag { font-size: 11px; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }
  .tag-chain { background: #dbeafe; color: var(--blue); }
  .tag-independent { background: #f3e8ff; color: var(--purple); }

  .academy-institution-sub { font-size: 12px; color: var(--muted); margin-left: auto; }

  .academy-courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .academy-course-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem;
    background: white;
    cursor: pointer;
    transition: all 0.15s;
  }
  .academy-course-card:hover { border-color: var(--pink); }
  .academy-course-card.featured { border-color: var(--pink); }

  .course-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
  }
  .course-type-badge { font-size: 10px; font-weight: 700; padding: 0.2rem 0.6rem; border-radius: 4px; }
  .type-fellowship { background: #ede9fe; color: var(--purple); }
  .type-certificate { background: #fef3c7; color: #92400e; }
  .type-online { background: var(--blue-light); color: var(--blue); }
  .type-workshop { background: #d1fae5; color: #065f46; }
  .course-duration { font-size: 11.5px; color: var(--muted); }

  .course-hot-badge { font-size: 9.5px; font-weight: 700; background: var(--pink); color: white; padding: 0.15rem 0.4rem; border-radius: 3px; }

  .academy-course-card h4 { font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
  .academy-course-card .course-for { font-size: 12px; color: var(--muted); margin-bottom: 0.75rem; }

  .course-price { font-family: 'Clash Display', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 0.1rem; }
  .course-price.enquiry { color: var(--pink); }

  .course-affiliation { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.875rem; }

  .course-features { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1rem; }
  .course-features li { font-size: 12px; color: var(--slate); display: flex; align-items: flex-start; gap: 0.4rem; }
  .course-features li::before { content: '✓'; color: var(--pink); font-weight: 700; font-size: 10px; margin-top: 2px; flex-shrink: 0; }

  .course-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1rem; }
  .course-tag { font-size: 10.5px; padding: 0.2rem 0.5rem; border-radius: 4px; border: 1px solid var(--border); color: var(--slate); font-weight: 500; }
  .course-tag.hands-on { background: #fce7f3; border-color: #f9a8d4; color: var(--pink); }
  .course-tag.uni { background: #ede9fe; border-color: #c4b5fd; color: var(--purple); }
  .course-tag.bond { background: #fef3c7; border-color: #fde68a; color: #92400e; }

  .course-actions { display: flex; gap: 0.5rem; }
  .btn-enquire {
    flex: 1;
    background: var(--navy);
    color: white;
    border: none;
    border-radius: 7px;
    padding: 0.55rem;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: opacity 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .btn-enquire:hover { opacity: 0.85; }
  .btn-details {
    background: none;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    padding: 0.55rem 0.875rem;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .btn-details:hover { border-color: var(--navy); color: var(--navy); }

  /* ── CONSENT FORMS SECTION ── */
  .consent-section { background: var(--bg); }

  .consent-hero {
    background: var(--grad-hero);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
  }
  .consent-hero::before {
    content: 'CLINIC COMPLIANCE';
    position: absolute;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.6);
  }
  .consent-hero h2 { font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700; color: white; margin-top: 1.5rem; }
  .consent-hero h2 span { font-family: 'Playfair Display', serif; font-style: italic; color: #f9a8d4; }
  .consent-hero p { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 0.5rem; }

  .regulatory-notice {
    background: #fffbeb;
    border: 1.5px solid #fde68a;
    border-radius: 8px;
    padding: 0.875rem 1.25rem;
    margin-bottom: 1.75rem;
    font-size: 13px;
  }
  .regulatory-notice strong { color: #d97706; }

  .consent-filters-row {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
  }
  .consent-filter-btn {
    font-size: 12.5px;
    font-weight: 500;
    padding: 0.4rem 0.875rem;
    border-radius: 20px;
    border: 1.5px solid var(--border);
    background: white;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
  }
  .consent-filter-btn.active { background: var(--pink); border-color: var(--pink); color: white; }

  .consent-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
  .consent-stat-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 1.25rem;
    text-align: center;
  }
  .consent-stat-card .num { font-family: 'Clash Display', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
  .consent-stat-card .lbl { font-size: 12px; color: var(--muted); margin-top: 0.25rem; }

  .consent-forms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .consent-form-card {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 1.1rem;
    transition: border-color 0.15s;
    cursor: pointer;
  }
  .consent-form-card:hover { border-color: var(--pink); }

  .form-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
  }
  .form-type-badge { font-size: 10px; font-weight: 700; padding: 0.15rem 0.5rem; border-radius: 4px; }
  .badge-statutory { background: #fef3c7; color: #92400e; }
  .badge-essential { background: #d1fae5; color: #065f46; }
  .badge-treatment { background: var(--blue-light); color: var(--blue); }
  .badge-cryo { background: #ede9fe; color: var(--purple); }
  .badge-donor { background: #fce7f3; color: var(--pink); }
  .badge-surrogacy { background: #fef9c3; color: #713f12; }
  .badge-genetic { background: #f0fdf4; color: #166534; }
  .badge-procedures { background: #f1f5f9; color: var(--slate); }
  .badge-admin { background: #fafafa; color: var(--slate); }

  .form-num { font-size: 12px; font-weight: 700; color: var(--pink); }

  .consent-form-card h4 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 0.35rem; line-height: 1.4; }
  .consent-form-card p { font-size: 11.5px; color: var(--muted); line-height: 1.5; margin-bottom: 0.875rem; }

  .form-card-actions { display: flex; gap: 0.4rem; }
  .btn-form-sections {
    flex: 1;
    font-size: 12px;
    font-weight: 600;
    padding: 0.4rem;
    border-radius: 6px;
    border: 1.5px solid var(--border);
    background: none;
    color: var(--slate);
    cursor: pointer;
    font-family: inherit;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
  }
  .btn-form-sections:hover { border-color: var(--navy); color: var(--navy); }
  .btn-form-pdf {
    font-size: 12px;
    font-weight: 600;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    border: none;
    background: var(--pink);
    color: white;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: opacity 0.15s;
  }
  .btn-form-pdf:hover { opacity: 0.85; }

  /* ── LICENSE MANAGEMENT ── */
  .license-section { background: white; }

  .license-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .license-card {
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem;
    background: white;
    transition: border-color 0.15s;
  }
  .license-card:hover { border-color: var(--purple); }

  .license-card-header { margin-bottom: 1rem; }
  .license-card-header h3 { font-family: 'Clash Display', sans-serif; font-size: 1rem; font-weight: 700; color: var(--navy); }
  .license-card-header span { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--muted); display: block; margin-top: 0.2rem; }

  .license-doc-count {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    background: var(--pink);
    color: white;
    margin-bottom: 1rem;
  }

  .license-docs { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
  .license-docs li { font-size: 12.5px; color: var(--slate); display: flex; align-items: flex-start; gap: 0.5rem; }
  .license-docs li::before { content: '✓'; color: var(--pink); font-weight: 700; font-size: 11px; margin-top: 2px; flex-shrink: 0; }

  /* ── WHY CHOOSE US ── */
  .why-bg { background: var(--bg); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  .why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
  }
  .why-icon { font-size: 2rem; margin-bottom: 0.875rem; }
  .why-card h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
  .why-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  .testimonials-bg { background: white; }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  .testimonial-card {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
  }
  .testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 1rem;
    font-size: 6rem;
    color: var(--pink);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
  }

  .testimonial-stars { display: flex; gap: 3px; margin-bottom: 0.875rem; }
  .testimonial-stars span { color: #f59e0b; font-size: 14px; }
  .testimonial-card p { font-size: 13.5px; color: var(--slate); line-height: 1.7; margin-bottom: 1rem; font-style: italic; }
  .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
  .testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
  }
  .testimonial-author-info strong { display: block; font-size: 13px; color: var(--navy); }
  .testimonial-author-info span { font-size: 11.5px; color: var(--muted); }

  /* ── CTA BANNER ── */
  .cta-banner {
    background: var(--navy);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(233,30,140,0.15) 0%, transparent 70%);
    pointer-events: none;
  }
  .cta-banner::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124,58,237,0.15) 0%, transparent 70%);
    pointer-events: none;
  }

  .cta-banner h2 { font-family: 'Clash Display', sans-serif; font-size: clamp(1.5rem, 3vw, 2.5rem); font-weight: 700; color: white; margin-bottom: 0.75rem; }
  .cta-banner p { color: rgba(255,255,255,0.7); font-size: 15px; max-width: 480px; margin: 0 auto 2rem; }
  .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }

  .btn-cta-primary {
    background: var(--grad-card-pink);
    color: white;
    border: none;
    border-radius: 9px;
    padding: 0.8rem 2rem;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: opacity 0.15s;
  }
  .btn-cta-secondary {
    background: none;
    color: white;
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 9px;
    padding: 0.8rem 2rem;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    text-decoration: none;
    transition: background 0.15s;
  }
  .btn-cta-secondary:hover { background: rgba(255,255,255,0.08); }

  /* ── FAQ ── */
  .faq-bg { background: var(--bg); }
  .faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }

  .faq-item {
    background: white;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.15s;
  }
  .faq-item.open { border-color: var(--pink); }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    gap: 1rem;
  }
  .faq-question span { font-size: 14.5px; font-weight: 600; color: var(--navy); }
  .faq-chevron { font-size: 1rem; color: var(--muted); transition: transform 0.2s; flex-shrink: 0; }
  .faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--pink); }

  .faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
  }
  .faq-item.open .faq-answer { max-height: 300px; padding: 0 1.25rem 1rem; }
  .faq-answer p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 3.5rem 2rem 2rem;
  }

  .footer-inner { max-width: 1140px; margin: 0 auto; }

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

  .footer-brand {}
  .footer-brand-logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; margin-bottom: 0.875rem; }
  .footer-logo-icon {
    width: 36px;
    height: 36px;
    background: var(--grad-hero);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 13px;
  }
  .footer-logo-text strong { display: block; font-size: 15px; color: white; }
  .footer-logo-text span { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--pink); }

  .footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 1.25rem; }

  .footer-social { display: flex; gap: 0.5rem; }
  .social-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    transition: background 0.15s, color 0.15s;
  }
  .social-btn:hover { background: var(--pink); color: white; }

  .footer-col h4 { font-size: 13px; font-weight: 700; color: white; margin-bottom: 1rem; letter-spacing: 0.3px; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
  .footer-col ul li a { text-decoration: none; font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.15s; }
  .footer-col ul li a:hover { color: var(--pink-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .footer-bottom span { font-size: 12.5px; }

  .footer-bottom-links { display: flex; gap: 1rem; }
  .footer-bottom-links a { font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; }
  .footer-bottom-links a:hover { color: var(--pink-light); }

  /* ── TAB NAV (for page sections) ── */
  .tab-nav {
    display: flex;
    gap: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0 2rem;
    position: sticky;
    top: 60px;
    z-index: 90;
    overflow-x: auto;
  }
  .tab-btn {
    font-size: 13.5px;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    border: none;
    background: none;
    color: var(--muted);
    cursor: pointer;
    font-family: inherit;
    border-bottom: 2.5px solid transparent;
    margin-bottom: -1px;
    white-space: nowrap;
    transition: all 0.15s;
  }
  .tab-btn.active { color: var(--pink); border-bottom-color: var(--pink); }
  .tab-btn:hover:not(.active) { color: var(--navy); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .path-grid, .clinic-grid, .procedures-grid, .academy-courses-grid, .consent-forms-grid, .license-grid, .why-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-inner, .consent-stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .essential-grid { grid-template-columns: repeat(2, 1fr); }
  }

  @media (max-width: 600px) {
    nav { padding: 0 1rem; }
    .nav-links, .nav-search { display: none; }
    .hero { padding: 3rem 1rem 2.5rem; }
    .section { padding: 2.5rem 1rem; }
    .path-grid, .clinic-grid, .procedures-grid, .academy-courses-grid, .consent-forms-grid, .license-grid, .why-grid, .testimonials-grid, .essential-grid, .portal-cards-grid { grid-template-columns: 1fr; }
    .stats-bar-inner, .consent-stats-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .hero-cta-row { flex-direction: column; align-items: center; }
  }

  /* ── ANIMATIONS ── */
  @keyframes countUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-stat { animation: countUp 0.6s ease both; }
  .hero-stat:nth-child(1) { animation-delay: 0.2s; }
  .hero-stat:nth-child(2) { animation-delay: 0.35s; }
  .hero-stat:nth-child(3) { animation-delay: 0.5s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .animate-up { animation: fadeUp 0.5s ease both; }



/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,23,42,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}
@keyframes modalIn {
  from { opacity:0; transform:translateY(20px) scale(0.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.modal-header {
  background: linear-gradient(135deg,#4c1d95,#e91e8c);
  padding: 1.5rem;
  border-radius: 16px 16px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.modal-header h3 { color:white; font-family:'Clash Display',sans-serif; font-size:1.15rem; font-weight:700; }
.modal-header p  { color:rgba(255,255,255,0.8); font-size:12.5px; margin-top:0.3rem; }
.modal-close {
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 1rem;
}
.modal-close:hover { background:rgba(255,255,255,0.35); }
.modal-body { padding: 1.5rem; }
.modal-form-group { margin-bottom: 1rem; }
.modal-form-group label { display:block; font-size:12px; font-weight:700; color:#334155; margin-bottom:0.4rem; letter-spacing:0.3px; }
.modal-form-group input,
.modal-form-group select,
.modal-form-group textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  padding: 0.6rem 0.875rem;
  font-size: 13.5px;
  font-family: inherit;
  color: #0f172a;
  outline: none;
  transition: border-color 0.15s;
  background: #f8fafc;
}
.modal-form-group input:focus,
.modal-form-group select:focus,
.modal-form-group textarea:focus { border-color:#e91e8c; background:white; }
.modal-form-group textarea { resize:vertical; min-height:80px; }
.modal-form-row { display:grid; grid-template-columns:1fr 1fr; gap:0.75rem; }
.modal-submit {
  width: 100%;
  background: linear-gradient(135deg,#4c1d95,#e91e8c);
  color: white;
  border: none;
  border-radius: 9px;
  padding: 0.8rem;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  margin-top: 0.5rem;
  transition: opacity 0.15s;
}
.modal-submit:hover { opacity: 0.9; }
.modal-success {
  display: none;
  text-align: center;
  padding: 2rem 1.5rem;
}
.modal-success .success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.modal-success h4 { font-family:'Clash Display',sans-serif; font-size:1.25rem; color:#0f172a; margin-bottom:0.4rem; }
.modal-success p { font-size:13.5px; color:#64748b; }

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #0f172a;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 500;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transform: translateY(80px);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.1rem; flex-shrink:0; }

/* ── PROFILE MODAL ── */
.profile-modal-box {
  background: white;
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.25s ease;
}
.profile-header {
  padding: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.profile-header h3 { font-family:'Clash Display',sans-serif; font-size:1.1rem; font-weight:700; color:#0f172a; }
.profile-body { padding: 1.5rem; }
.profile-clinic-top { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.25rem; }
.profile-avatar {
  width:56px; height:56px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; font-weight:700; color:white; flex-shrink:0;
}
.profile-clinic-name { font-family:'Clash Display',sans-serif; font-size:1.25rem; font-weight:700; color:#0f172a; }
.profile-clinic-loc { font-size:13px; color:#64748b; margin-top:0.2rem; }
.profile-badges { display:flex; gap:0.5rem; margin-top:0.5rem; flex-wrap:wrap; }
.profile-stat-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:0.75rem; margin-bottom:1.25rem; }
.profile-stat-card { background:#f8fafc; border:1px solid #e2e8f0; border-radius:10px; padding:0.875rem; text-align:center; }
.profile-stat-card .val { font-family:'Clash Display',sans-serif; font-size:1.4rem; font-weight:700; color:#e91e8c; }
.profile-stat-card .lbl { font-size:11px; color:#64748b; margin-top:0.2rem; }
.profile-section-title { font-size:13px; font-weight:700; color:#0f172a; margin:1rem 0 0.6rem; letter-spacing:0.3px; text-transform:uppercase; }
.profile-tags { display:flex; gap:0.4rem; flex-wrap:wrap; margin-bottom:1rem; }
.profile-tag { font-size:12px; padding:0.3rem 0.75rem; border-radius:6px; background:#eff6ff; color:#2563eb; font-weight:500; }
.profile-info-row { display:flex; align-items:center; gap:0.6rem; font-size:13px; color:#334155; margin-bottom:0.5rem; }
.profile-actions { display:flex; gap:0.75rem; margin-top:1.25rem; }
.btn-book-appt {
  flex:1; background:linear-gradient(135deg,#e91e8c,#f472b6); color:white;
  border:none; border-radius:9px; padding:0.75rem; font-size:14px;
  font-weight:700; cursor:pointer; font-family:inherit; transition:opacity 0.15s;
}
.btn-book-appt:hover { opacity:0.9; }
.btn-call-clinic {
  background:none; border:1.5px solid #e2e8f0; border-radius:9px;
  padding:0.75rem 1.25rem; font-size:14px; font-weight:600;
  color:#334155; cursor:pointer; font-family:inherit; transition:all 0.15s;
  display:flex; align-items:center; gap:0.4rem;
}
.btn-call-clinic:hover { border-color:#0f172a; color:#0f172a; }

/* ── SECTIONS modal expand ── */
.sections-panel {
  display: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  margin-top: 0.5rem;
  font-size:12.5px;
  color:#334155;
}
.sections-panel.open { display:block; }
.sections-panel ul { list-style:none; display:flex; flex-direction:column; gap:0.4rem; padding:0; }
.sections-panel ul li { display:flex; align-items:flex-start; gap:0.5rem; }
.sections-panel ul li::before { content:"§"; color:#e91e8c; font-weight:700; flex-shrink:0; }



.cost-modal-box {
  background: white;
  border-radius: 18px;
  width: 100%;
  max-width: 860px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
  animation: modalIn 0.25s ease;
}
.cost-modal-header {
  background: linear-gradient(135deg,#2563eb,#06b6d4);
  padding: 1.5rem 1.75rem;
  border-radius: 18px 18px 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.cost-modal-header h3 { color:white; font-family:"Clash Display",sans-serif; font-size:1.35rem; font-weight:700; }
.cost-modal-header p  { color:rgba(255,255,255,0.82); font-size:13px; margin-top:0.3rem; }
.cost-modal-body { padding: 1.5rem 1.75rem; }

/* city tabs */
.city-tabs { display:flex; gap:0.4rem; flex-wrap:wrap; margin-bottom:1.5rem; padding-bottom:1rem; border-bottom:2px solid #e2e8f0; }
.city-tab {
  font-size:12.5px; font-weight:600; padding:0.4rem 0.875rem;
  border-radius:20px; border:1.5px solid #e2e8f0;
  background:none; color:#64748b; cursor:pointer;
  font-family:inherit; transition:all 0.15s;
}
.city-tab.active { background:#2563eb; border-color:#2563eb; color:white; }
.city-tab:hover:not(.active) { border-color:#2563eb; color:#2563eb; }

/* procedure toggle */
.proc-tabs { display:flex; gap:0.4rem; flex-wrap:wrap; margin-bottom:1.25rem; }
.proc-tab {
  font-size:12px; font-weight:600; padding:0.35rem 0.75rem;
  border-radius:6px; border:1.5px solid #e2e8f0;
  background:white; color:#64748b; cursor:pointer;
  font-family:inherit; transition:all 0.15s;
}
.proc-tab.active { background:#0f172a; border-color:#0f172a; color:white; }

/* comparison table */
.cost-table-wrap { overflow-x:auto; margin-bottom:1.5rem; }
.cost-compare-table { width:100%; border-collapse:collapse; font-size:13px; }
.cost-compare-table th {
  background:#f8fafc; padding:0.75rem 1rem; text-align:left;
  font-size:11px; font-weight:700; color:#64748b; letter-spacing:0.5px;
  text-transform:uppercase; border-bottom:2px solid #e2e8f0; white-space:nowrap;
}
.cost-compare-table td {
  padding:0.875rem 1rem; border-bottom:1px solid #f1f5f9;
  vertical-align:middle;
}
.cost-compare-table tr:hover td { background:#fdf2f8; }
.clinic-cell { display:flex; align-items:center; gap:0.6rem; }
.clinic-cell-dot { width:28px; height:28px; border-radius:7px; display:flex; align-items:center; justify-content:center; font-size:0.7rem; font-weight:700; color:white; flex-shrink:0; }
.clinic-cell-name { font-weight:600; color:#0f172a; font-size:13px; }
.clinic-cell-badge { font-size:10px; font-weight:700; padding:0.1rem 0.4rem; border-radius:3px; background:#d1fae5; color:#065f46; margin-left:0.3rem; }
.price-range { font-weight:700; color:#e91e8c; }
.price-incl { font-size:11px; color:#64748b; margin-top:0.2rem; }
.rating-cell { display:flex; align-items:center; gap:0.4rem; }
.rating-stars { color:#f59e0b; font-size:12px; }
.success-cell { display:flex; align-items:center; gap:0.5rem; }
.success-bar-bg { flex:1; background:#f1f5f9; border-radius:4px; height:6px; max-width:80px; }
.success-bar-fill { height:6px; border-radius:4px; background:linear-gradient(90deg,#e91e8c,#f472b6); }

/* inclusions section */
.inclusions-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; margin-bottom:1.5rem; }
.inclusions-card { border:1.5px solid #e2e8f0; border-radius:10px; padding:1rem; }
.inclusions-card.included { border-color:#bbf7d0; background:#f0fdf4; }
.inclusions-card.excluded { border-color:#fecaca; background:#fff5f5; }
.inclusions-card h5 { font-size:12px; font-weight:700; margin-bottom:0.6rem; display:flex; align-items:center; gap:0.4rem; }
.inclusions-card.included h5 { color:#065f46; }
.inclusions-card.excluded h5 { color:#991b1b; }
.inclusions-card ul { list-style:none; display:flex; flex-direction:column; gap:0.4rem; }
.inclusions-card ul li { font-size:12px; color:#334155; display:flex; align-items:flex-start; gap:0.4rem; }
.inclusions-card.included ul li::before { content:"✓"; color:#059669; font-weight:700; flex-shrink:0; }
.inclusions-card.excluded ul li::before { content:"✗"; color:#dc2626; font-weight:700; flex-shrink:0; }

/* cost breakdown */
.breakdown-section { margin-bottom:1.5rem; }
.breakdown-section h4 { font-size:13.5px; font-weight:700; color:#0f172a; margin-bottom:0.875rem; display:flex; align-items:center; gap:0.5rem; }
.breakdown-bar-row { display:flex; align-items:center; gap:0.875rem; margin-bottom:0.6rem; }
.breakdown-label { font-size:12.5px; color:#334155; width:160px; flex-shrink:0; }
.breakdown-bar-wrap { flex:1; background:#f1f5f9; border-radius:6px; height:10px; }
.breakdown-bar { height:10px; border-radius:6px; transition:width 0.6s ease; }
.breakdown-amount { font-size:12.5px; font-weight:700; color:#0f172a; white-space:nowrap; }

/* tips */


  /* ══ AI SEARCH TRIGGER ══ */
  .ai-search-trigger {
    display: flex; align-items: center; gap: 0.6rem;
    background: #f8fafc; border: 1.5px solid #e2e8f0;
    border-radius: 8px; padding: 0.45rem 0.875rem;
    cursor: pointer; font-family: inherit;
    font-size: 13px; color: #64748b;
    transition: all 0.15s; min-width: 240px;
  }
  .ai-search-trigger:hover { border-color: #e91e8c; color: #e91e8c; background: #fdf2f8; }
  .ai-badge {
    margin-left: auto; font-size: 10px; font-weight: 700;
    background: linear-gradient(135deg,#7c3aed,#e91e8c);
    color: white; padding: 0.15rem 0.5rem; border-radius: 4px;
  }

  /* ══ AI SEARCH MODAL ══ */
  #aiSearchModal {
    display: none; position: fixed; inset: 0;
    background: rgba(15,23,42,0.7); z-index: 2000;
    backdrop-filter: blur(8px);
    align-items: flex-start; justify-content: center;
    padding: 5vh 1rem 1rem;
  }
  #aiSearchModal.open { display: flex; }

  .ai-search-box {
    background: white; border-radius: 16px;
    width: 100%; max-width: 680px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    overflow: hidden; animation: modalIn 0.2s ease;
  }

  .ai-search-header {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem 1.25rem; border-bottom: 1px solid #f1f5f9;
  }
  .ai-search-icon {
    width: 36px; height: 36px; border-radius: 8px;
    background: linear-gradient(135deg,#7c3aed,#e91e8c);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }
  .ai-search-header h4 { font-size: 14.5px; font-weight: 700; color: #0f172a; }
  .ai-search-header p  { font-size: 12px; color: #64748b; margin-top: 1px; }
  .ai-close-btn {
    margin-left: auto; background: #f1f5f9; border: none;
    width: 30px; height: 30px; border-radius: 50%;
    cursor: pointer; font-size: 1rem; color: #334155;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; transition: background 0.15s;
  }
  .ai-close-btn:hover { background: #e2e8f0; }

  /* Input row */
  .ai-input-row {
    display: flex; gap: 0.5rem; padding: 0.875rem 1.25rem;
    border-bottom: 1px solid #f1f5f9;
  }
  .ai-input {
    flex: 1; border: 1.5px solid #e2e8f0; border-radius: 8px;
    padding: 0.6rem 0.875rem; font-size: 14px;
    font-family: inherit; outline: none; color: #0f172a;
    transition: border-color 0.15s;
  }
  .ai-input:focus { border-color: #e91e8c; }
  .ai-send-btn {
    background: linear-gradient(135deg,#7c3aed,#e91e8c);
    color: white; border: none; border-radius: 8px;
    padding: 0.6rem 1.25rem; font-size: 13.5px; font-weight: 700;
    cursor: pointer; font-family: inherit;
    transition: opacity 0.15s; white-space: nowrap;
  }
  .ai-send-btn:hover { opacity: 0.88; }
  .ai-send-btn:disabled { opacity: 0.5; cursor: not-allowed; }

  /* Quick prompts */
  .ai-quick-prompts {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
    padding: 0.625rem 1.25rem; border-bottom: 1px solid #f1f5f9;
  }
  .ai-quick-btn {
    font-size: 11.5px; font-weight: 600; padding: 0.3rem 0.75rem;
    border-radius: 20px; border: 1.5px solid #e2e8f0;
    background: white; cursor: pointer; font-family: inherit;
    color: #334155; transition: all 0.12s;
  }
  .ai-quick-btn:hover { background: #ede9fe; border-color: #c4b5fd; color: #7c3aed; }

  /* Conversation */
  .ai-conversation {
    padding: 1rem 1.25rem;
    max-height: 50vh; overflow-y: auto;
    display: flex; flex-direction: column; gap: 1rem;
    scroll-behavior: smooth;
  }
  .ai-conversation:empty::before {
    content: "Ask me anything about IVF — costs, clinics, procedures, success rates, legal rules, or training programmes.";
    color: #94a3b8; font-size: 13.5px; text-align: center;
    display: block; padding: 2rem 1rem; line-height: 1.6;
  }

  .ai-msg { display: flex; gap: 0.75rem; align-items: flex-start; }
  .ai-msg.user { flex-direction: row-reverse; }

  .ai-msg-avatar {
    width: 28px; height: 28px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem; flex-shrink: 0; font-weight: 700;
  }
  .ai-msg.user .ai-msg-avatar { background: #e91e8c; color: white; }
  .ai-msg.ai .ai-msg-avatar {
    background: linear-gradient(135deg,#7c3aed,#e91e8c); color: white; font-size: 0.7rem;
  }

  .ai-msg-bubble {
    max-width: 85%; font-size: 13.5px; line-height: 1.7;
    border-radius: 12px; padding: 0.75rem 1rem;
  }
  .ai-msg.user .ai-msg-bubble {
    background: linear-gradient(135deg,#4c1d95,#e91e8c);
    color: white; border-bottom-right-radius: 4px;
  }
  .ai-msg.ai .ai-msg-bubble {
    background: #f8fafc; color: #334155;
    border: 1px solid #e2e8f0; border-bottom-left-radius: 4px;
  }

  /* Typing indicator */
  .ai-typing {
    display: flex; gap: 4px; align-items: center;
    padding: 0.5rem; width: fit-content;
  }
  .ai-typing span {
    width: 7px; height: 7px; border-radius: 50%;
    background: #7c3aed; opacity: 0.4;
    animation: aiDot 1.2s infinite;
  }
  .ai-typing span:nth-child(2) { animation-delay: 0.2s; }
  .ai-typing span:nth-child(3) { animation-delay: 0.4s; }
  @keyframes aiDot {
    0%,80%,100% { opacity:0.2; transform:scale(0.8); }
    40% { opacity:1; transform:scale(1); }
  }

  /* AI disclaimer */
  .ai-disclaimer {
    padding: 0.6rem 1.25rem; font-size: 11px; color: #94a3b8;
    border-top: 1px solid #f1f5f9; text-align: center; line-height: 1.5;
  }

  @media (max-width:600px) {
    .ai-search-trigger span:first-of-type { display:none; }
    .ai-search-trigger { min-width: auto; padding: 0.45rem 0.75rem; }
    #aiSearchModal { padding: 2vh 0.5rem; }
  }


  /* ── ADSENSE AD SLOTS ── */
  .ad-slot {
    background: #f8fafc;
    border: 1.5px dashed #e2e8f0;
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
  }
  .ad-slot-leaderboard { min-height: 90px; }
  .ad-slot-rectangle { min-height: 250px; max-width: 336px; margin: 1rem auto; }
  /* Hide placeholder text when AdSense is active */
  .ad-slot ins ~ span { display: none; }

  /* ── INTEREST FORM (reusable) ── */
.interest-strip {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 14px;
  padding: 1.75rem;
  margin-top: 1.5rem;
  position: relative;
  overflow: hidden;
}
.interest-strip::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233,30,140,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.interest-strip-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.interest-strip-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: linear-gradient(135deg,#e91e8c,#f472b6);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0;
}
.interest-strip-header h4 {
  font-family: 'Clash Display', sans-serif;
  font-size: 1.05rem; font-weight: 700; color: white;
  margin-bottom: 0.2rem;
}
.interest-strip-header p { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.5; }

.interest-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 0.75rem;
  align-items: flex-end;
}
.interest-form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.interest-form-group label {
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.6px; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.interest-form-group input,
.interest-form-group select {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 0.6rem 0.875rem;
  font-size: 13px;
  font-family: inherit;
  color: white;
  outline: none;
  transition: border-color 0.15s, background 0.15s;
}
.interest-form-group input::placeholder { color: rgba(255,255,255,0.35); }
.interest-form-group input:focus,
.interest-form-group select:focus {
  border-color: #e91e8c;
  background: rgba(255,255,255,0.12);
}
.interest-form-group select option { background: #1e293b; color: white; }
.interest-submit-btn {
  background: linear-gradient(135deg,#e91e8c,#f472b6);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.65rem 1.25rem;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  transition: opacity 0.15s, transform 0.15s;
  height: fit-content;
}
.interest-submit-btn:hover { opacity: 0.9; transform: scale(0.98); }
.interest-trust-row {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.interest-trust-item {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 11.5px; color: rgba(255,255,255,0.5);
}
.interest-trust-item span:first-child { color: #34d399; font-size: 13px; }

/* inline success state */
.interest-success {
  display: none;
  text-align: center;
  padding: 1.25rem 0 0.5rem;
  color: white;
}
.interest-success .s-icon { font-size: 2.25rem; margin-bottom: 0.5rem; }
.interest-success h5 { font-family: "Clash Display", sans-serif; font-size: 1.1rem; color: white; margin-bottom: 0.3rem; }
.interest-success p { font-size: 12.5px; color: rgba(255,255,255,0.65); }

/* academy page inline strip */
.academy-interest-strip {
  background: linear-gradient(135deg,#0f172a,#1e293b);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 2rem 0;
  position: relative;
  overflow: hidden;
}
.academy-interest-strip::before {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 700px) {
  .interest-form-grid { grid-template-columns: 1fr 1fr; }
  .interest-submit-btn { grid-column: span 2; }
}
@media (max-width: 480px) {
  .interest-form-grid { grid-template-columns: 1fr; }
  .interest-submit-btn { grid-column: 1; }
}

.cost-tips { background:#fffbeb; border:1.5px solid #fde68a; border-radius:10px; padding:1rem 1.25rem; font-size:13px; color:#92400e; line-height:1.7; }
.cost-tips strong { color:#d97706; }

.cost-section-label { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:1px; color:#64748b; margin:1.25rem 0 0.75rem; }

/* ── NEWS HUB ── */
.news-filter-btn{font-size:12.5px;font-weight:600;padding:.4rem .875rem;border-radius:20px;border:1.5px solid #e2e8f0;background:#fff;color:#64748b;cursor:pointer;font-family:inherit;transition:all .15s}
.news-filter-btn.active,.news-filter-btn:hover{background:#0f172a;border-color:#0f172a;color:#fff}
.news-card{background:#fff;border:1px solid #e2e8f0;border-radius:14px;overflow:hidden;display:flex;flex-direction:column;transition:transform .18s,box-shadow .18s}
.news-card:hover{transform:translateY(-4px);box-shadow:0 12px 36px rgba(0,0,0,.1)}
.news-card-top{padding:1rem 1.25rem .875rem;display:flex;align-items:center;justify-content:space-between}
.news-cat-badge{font-size:11px;font-weight:700;color:#fff;padding:.2rem .6rem;border-radius:100px}
.news-date{font-size:11px;color:rgba(255,255,255,.75);font-weight:500}
.news-card-body{padding:1.1rem 1.25rem 1.25rem;flex:1;display:flex;flex-direction:column}
.news-card-body h4{font-size:14px;font-weight:700;color:#0f172a;margin-bottom:.5rem;line-height:1.4}
.news-card-body p{font-size:12.5px;color:#64748b;line-height:1.65;flex:1;margin-bottom:.875rem}
.news-tags-row{display:flex;gap:.35rem;flex-wrap:wrap;margin-bottom:.875rem}
.news-tag{font-size:10.5px;font-weight:600;padding:.15rem .5rem;background:#f8fafc;border:1px solid #e2e8f0;border-radius:4px;color:#334155}
.news-read-more{font-size:12.5px;font-weight:700;color:#7c3aed;text-decoration:none;margin-top:auto;display:inline-block}
@media(max-width:900px){#newsGrid{grid-template-columns:repeat(2,1fr)!important}}
@media(max-width:600px){#newsGrid{grid-template-columns:1fr!important}}
.faq-tab{flex:1;font-size:13px;font-weight:600;padding:.75rem .5rem;border:none;background:none;cursor:pointer;font-family:inherit;color:#64748b;border-right:1px solid #e2e8f0;transition:all .15s;white-space:nowrap}
.faq-tab:last-child{border-right:none}
.faq-tab.active{background:#0f172a;color:#fff}
.faq-tab:hover:not(.active){background:#f8fafc;color:#0f172a}
@media(max-width:600px){.faq-tab{font-size:11px;padding:.6rem .2rem}}
.academy-filter-row{display:flex;gap:.5rem;flex-wrap:wrap;margin-bottom:1.5rem}
.academy-filter-btn{font-size:12.5px;font-weight:600;padding:.4rem .875rem;border-radius:20px;border:1.5px solid #e2e8f0;background:#fff;color:#64748b;cursor:pointer;font-family:inherit;transition:all .15s}
.academy-filter-btn.active,.academy-filter-btn:hover{background:#e91e8c;border-color:#e91e8c;color:#fff}
body.admin-bar .sticky-nav{top:32px}
@media screen and (max-width:782px){body.admin-bar .sticky-nav{top:46px}}
