/* ── HERO ── */
  .hero {
    min-height: 100vh;
    background: var(--navy);
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
  }
  .hero-bg-pattern {
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 120px 8% 80px 8%;
    position: relative; z-index: 2;
  }
  .hero-eyebrow {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 28px;
  }
  .hero-eyebrow-line {
    width: 40px; height: 1px; background: var(--gold);
  }
  .hero-eyebrow-text {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold);
  }
  .hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  .sfont { font-size: clamp(34px, 5vw, 55px);}
  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
  }
  .hero-subtitle {
    font-size: 15px; color: rgba(255,255,255,0.6);
    max-width: 440px; line-height: 1.7;
    margin-bottom: 44px;
  }
  .hero-badges {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 44px;
  }
  .hero-badge {
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.25);
    color: var(--gold-light);
    font-size: 11px; letter-spacing: 0.08em;
    padding: 6px 14px; border-radius: 2px;
  }
  .hero-actions { display: flex; align-items: center; gap: 20px; }
  .btn-primary {
    background: var(--gold);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 2px;
    font-size: 13px; font-weight: 500; letter-spacing: 0.06em;
    text-decoration: none; text-transform: uppercase;
    transition: background 0.2s, transform 0.15s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
  .btn-ghost {
    color: rgba(255,255,255,0.7);
    font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase;
    text-decoration: none; display: flex; align-items: center; gap: 8px;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--gold); }
  .btn-ghost-arrow { font-size: 18px; transition: transform 0.2s; }
  .btn-ghost:hover .btn-ghost-arrow { transform: translateX(4px); }

  .hero-right {
    position: relative; overflow: hidden;
  }
  .hero-image-wrap {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-mid) 100%);
    display: flex; align-items: flex-end; justify-content: center;
  }
  .hero-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 30%);
  }
  .hero-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.15);
    font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase;
  }
  .hero-placeholder-icon {
    width: 80px; height: 80px;
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px;
    font-size: 32px;
  }
  .hero-card-float {
    position: absolute; bottom: 40px; left:;
    background: var(--white);
    border-radius: 4px;
    padding: 16px 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 5;
    min-width: 300px;
  }
  .hero-card-float-label {
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-muted); margin-bottom: 4px;
  }
  .hero-card-float-val {
    font-family: var(--font-display);
    font-size: 28px; font-weight: 700; color: var(--navy);
    line-height: 1;
  }
  .hero-card-float-sub {
    font-size: 11px; color: var(--text-muted); margin-top: 2px;
  }
  .hero-flag-wrap {
    position: absolute; top: 40px; right: 32px;
    display: flex; flex-direction: column; gap: 8px; z-index: 5;
  }
  .hero-flag {
    background: rgba(11,28,53,0.85);
    border: 1px solid rgba(201,168,76,0.2);
    backdrop-filter: blur(8px);
    border-radius: 3px;
    padding: 7px 14px;
    font-size: 11px; color: rgba(255,255,255,0.75);
    display: flex; align-items: center; gap: 6px;
  }
  .hero-flag-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ── STATS STRIP ── */
  .stats-strip {
    background: var(--gold);
    padding: 28px 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
  }
  .stat-item {
    display: flex; flex-direction: column; align-items: center;
    text-align: center; padding: 0 20px;
    border-right: 1px solid rgba(11,28,53,0.15);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 700;
    color: var(--navy); line-height: 1;
  }
  .stat-plus { font-size: 22px; }
  .stat-label {
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: rgba(11,28,53,0.65); margin-top: 6px;
  }

  /* ── SECTION BASE ── */
  section { padding: 100px 5%; }
  .section-eyebrow {
    display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
  }
  .section-eyebrow-line { width: 32px; height: 1px; background: var(--gold); }
  .section-eyebrow-text {
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  }
  .section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600; color: var(--navy);
    line-height: 1.15; margin-bottom: 16px;
  }
  .section-title em { font-style: italic; color: var(--gold); }
  .section-body {
    font-size: 15px; color: var(--text-mid); line-height: 1.8;
    max-width: 560px;
  }

  /* ── ABOUT SECTION ── */
  .about-section {
    background: var(--off-white);
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .about-image-col { position: relative; }
  .about-image-box {
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    border-radius: 4px; height: 520px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.2); font-size: 13px; letter-spacing: 0.1em;
    text-transform: uppercase; flex-direction: column; gap: 12px;
    position: relative; overflow: hidden;
  }
  .about-image-box::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold);
  }
  .about-accent-card {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--navy);
    border-radius: 4px; padding: 20px 24px;
    border: 1px solid rgba(201,168,76,0.2);
  }
  .about-accent-num {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .about-accent-label {
    font-size: 11px; color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px;
  }
  .about-content { padding-right: 40px; }
  .qual-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 10px; margin: 32px 0;
  }
  .qual-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 3px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
  }
  .qual-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .qual-text { font-size: 12px; font-weight: 500; color: var(--text-dark); letter-spacing: 0.02em; }
  .intl-row {
    display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px;
  }
  .intl-badge {
    background: var(--navy);
    color: var(--gold-light);
    font-size: 11px; padding: 7px 16px;
    border-radius: 2px; letter-spacing: 0.08em;
  }

  /* ── SERVICES ── */
  .services-section { background: var(--white); }
  .services-header {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: end; margin-bottom: 60px;
  }
  .services-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; background: var(--off-white);
    border: 1px solid rgba(11,28,53,0.06);
  }
  .service-card {
    background: var(--white);
    padding: 40px 32px;
    position: relative; overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .service-card::before {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: var(--gold); transform: scaleX(0);
    transition: transform 0.3s; transform-origin: left;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,28,53,0.08); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-num {
    font-family: var(--font-display);
    font-size: 48px; font-weight: 700;
    color: rgba(11,28,53,0.05); line-height: 1;
    margin-bottom: 20px; display: block;
  }
  .service-icon {
    width: 48px; height: 48px;
    background: var(--gold-pale);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
  }
  .service-icon svg { width: 24px; height: 24px; }
  .service-name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 600;
    color: var(--navy); margin-bottom: 12px; line-height: 1.2;
  }
  .service-desc {
    font-size: 13px; color: var(--text-mid); line-height: 1.7;
    margin-bottom: 20px;
  }
  .service-link {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }
  .service-conditions {
    display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
  }
  .cond-tag {
    font-size: 10px; background: var(--off-white);
    border: 1px solid rgba(11,28,53,0.08);
    color: var(--text-mid); padding: 3px 9px; border-radius: 2px;
  }

  /* ── WHY CHOOSE ── */
  .why-section {
    background: var(--navy);
    position: relative; overflow: hidden;
  }
  .why-section::before {
    content: '';
    position: absolute; top: -100px; right: -100px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  }
  .why-section .section-title { color: var(--white); }
  .why-section .section-eyebrow-line { background: var(--gold); }
  .why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px; margin-top: 60px;
  }
  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 4px; padding: 32px 28px;
    display: flex; gap: 20px;
    transition: background 0.2s, border-color 0.2s;
  }
  .why-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.25);
  }
  .why-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: rgba(201,168,76,0.1);
    border-radius: 3px;
    display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
  }
  .why-icon svg { width: 22px; height: 22px; stroke: var(--gold); }
  .why-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 600; color: var(--white);
    margin-bottom: 8px;
  }
  .why-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.7; }

  /* ── CREDENTIALS STRIP ── */
  .credentials-strip {
    background: var(--off-white);
    padding: 50px 5%;
    border-top: 1px solid rgba(11,28,53,0.06);
    border-bottom: 1px solid rgba(11,28,53,0.06);
  }
  .cred-row {
    display: flex; align-items: center; gap: 40px;
    flex-wrap: wrap; justify-content: center;
  }
  .cred-label {
    font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--text-muted); white-space: nowrap;
  }
  .cred-divider { width: 1px; height: 28px; background: rgba(11,28,53,0.1); }
  .cred-item {
    font-size: 13px; font-weight: 500; color: var(--text-mid);
    display: flex; align-items: center; gap: 8px;
    white-space: nowrap;
  }
  .cred-item-dot {
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ── TESTIMONIALS ── */
  .testimonials-section { background: var(--white); }
  .testi-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }
  .testi-card {
    border: 1px solid rgba(11,28,53,0.08);
    border-radius: 4px; padding: 32px 28px;
    position: relative;
  }
  .testi-quote {
    font-family: var(--font-display);
    font-size: 56px; line-height: 1; color: var(--gold);
    margin-bottom: -10px; display: block; opacity: 0.4;
  }
  .testi-text {
    font-size: 14px; color: var(--text-mid); line-height: 1.8;
    font-style: italic; margin-bottom: 24px;
  }
  .testi-author-row { display: flex; align-items: center; gap: 12px; }
  .testi-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--navy); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; font-weight: 600; flex-shrink: 0;
  }
  .testi-name { font-size: 13px; font-weight: 500; color: var(--navy); }
  .testi-role { font-size: 11px; color: var(--text-muted); }
  .testi-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 6px; }

  /* ── BLOG ── */
  .blog-section { background: var(--off-white); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 60px;
  }
  .blog-card {
    background: var(--white);
    border-radius: 4px; overflow: hidden;
    border: 1px solid rgba(11,28,53,0.06);
    transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,28,53,0.08); }
  .blog-thumb {
    height: 160px;
    background: linear-gradient(135deg, var(--navy-light), var(--navy));
    display: flex; align-items: center; justify-content: center;
    position: relative; overflow: hidden;
  }
  .blog-thumb-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.2);
  }
  .blog-cat {
    position: absolute; top: 16px; left: 16px;
    background: var(--gold); color: var(--navy);
    font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 4px 10px; border-radius: 2px; font-weight: 500;
  }
  .blog-body { padding: 24px; }
  .blog-title {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 600; color: var(--navy);
    line-height: 1.3; margin-bottom: 10px;
  }
  .blog-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
  .blog-meta {
    display: flex; align-items: center; gap: 16px;
    font-size: 11px; color: var(--text-muted);
    border-top: 1px solid rgba(11,28,53,0.06);
    padding-top: 14px;
  }
  .blog-read-link {
    color: var(--gold); font-size: 11px; text-decoration: none;
    letter-spacing: 0.08em; text-transform: uppercase; margin-left: auto;
    transition: opacity 0.2s;
  }
  .blog-read-link:hover { opacity: 0.7; }

  /* ── CTA SECTION ── */
  .cta-section {
    background: var(--navy);
    text-align: center; padding: 100px 5%;
    position: relative; overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
      repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
      repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
  }
  .cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
  .cta-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600; color: var(--white); line-height: 1.1;
    margin-bottom: 16px;
  }
  .cta-title em { color: var(--gold-light); font-style: italic; }
  .cta-sub { font-size: 15px; color: rgba(255,255,255,0.55); margin-bottom: 44px; line-height: 1.7; }
  .cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .cta-info-row {
    display: flex; gap: 40px; justify-content: center;
    margin-top: 48px; flex-wrap: wrap;
  }
  .cta-info-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: rgba(255,255,255,0.5);
  }
  .cta-info-icon { color: var(--gold); font-size: 16px; }

.empanelments{text-align:center;}
.empanelments img{width:200px; height:auto; margin:0;}
  

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-left > * {
    animation: fadeUp 0.7s ease both;
  }
  .hero-left > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-left > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-left > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-left > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-left > *:nth-child(5) { animation-delay: 0.5s; }



/* STATS */
  .stats-strip{background:var(--gold);padding:28px 5%;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;}
  .stat-item{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 20px;border-right:1px solid rgba(11,28,53,0.15);}
  .stat-item:last-child{border-right:none;}
  .stat-num{font-family:var(--font-display);font-size:36px;font-weight:700;color:var(--navy);line-height:1;}
  .stat-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(11,28,53,0.65);margin-top:6px;}

  /* BIOGRAPHY */
  .bio-section{padding:80px 5%;background:var(--off-white);}
  .bio-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;}
  .bio-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:16px;}
  .bio-eyebrow-line{width:32px;height:1px;background:var(--gold);}
  .bio-eyebrow-text{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);}
  .bio-title{font-family:var(--font-display);font-size:clamp(28px,3.5vw,42px);font-weight:600;color:var(--navy);line-height:1.2;margin-bottom:20px;}
  .bio-title em{font-style:italic;color:var(--gold);}
  .bio-para{font-size:15px;color:var(--text-mid);line-height:1.85;margin-bottom:20px;}
  .bio-col2{}
  .qual-section-title{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);margin-bottom:16px;}
  .qual-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:32px;}
  .qual-item{background:var(--white);border:1px solid var(--border);border-radius:3px;padding:14px 16px;display:flex;align-items:center;gap:10px;}
  .qual-dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0;}
  .qual-text{font-size:12px;font-weight:500;color:var(--text-dark);letter-spacing:.02em;}
  .intl-row{display:flex;gap:10px;flex-wrap:wrap;}
  .intl-badge{background:var(--navy);color:var(--gold-light);font-size:11px;padding:7px 16px;border-radius:2px;letter-spacing:.08em;}

  /* TIMELINE */
  .timeline-section{padding:80px 5%;background:var(--white);}
  .timeline-header{max-width:600px;margin-bottom:60px;}
  .timeline{position:relative;padding-left:40px;}
  .timeline::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:1px;background:linear-gradient(to bottom,var(--gold),rgba(201,168,76,0.1));}
  .timeline-item{position:relative;margin-bottom:44px;}
  .timeline-item:last-child{margin-bottom:0;}
  .timeline-dot{position:absolute;left:-44px;top:6px;width:10px;height:10px;border-radius:50%;background:var(--gold);border:2px solid var(--white);box-shadow:0 0 0 2px var(--gold);}
  .timeline-year{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:6px;}
  .timeline-title{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--navy);margin-bottom:6px;}
  .timeline-desc{font-size:14px;color:var(--text-mid);line-height:1.7;}
  .timeline-badge{display:inline-block;background:var(--off-white);border:1px solid var(--border);font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);padding:3px 10px;border-radius:2px;margin-top:8px;}

  /* MEMBERSHIPS */
  .memberships-section{padding:80px 5%;background:var(--navy);}
  .memberships-header{text-align:center;margin-bottom:52px;}
  .mem-title{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);font-weight:600;color:var(--white);margin-bottom:12px;}
  .mem-title em{font-style:italic;color:var(--gold-light);}
  .mem-desc{font-size:15px;color:rgba(255,255,255,0.5);max-width:480px;margin:0 auto;line-height:1.7;}
  .memberships-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:2px;}
  .mem-card{background:rgba(255,255,255,0.04);border:1px solid rgba(201,168,76,0.1);padding:32px 24px;text-align:center;transition:background .2s;}
  .mem-card:hover{background:rgba(201,168,76,0.06);}
  .mem-flag{font-size:28px;margin-bottom:12px;display:block;}
  .mem-org{font-size:13px;font-weight:500;color:var(--white);line-height:1.4;margin-bottom:6px;}
  .mem-country{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);}

  /* VALUES */
  .values-section{padding:80px 5%;background:var(--off-white);}
  .values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:48px;}
  .value-card{background:var(--white);border:1px solid rgba(11,28,53,0.06);border-radius:4px;padding:36px 32px;position:relative;overflow:hidden;}
  .value-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--gold);}
  .value-icon{font-size:28px;margin-bottom:16px;display:block;}
  .value-title{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--navy);margin-bottom:10px;}
  .value-desc{font-size:13px;color:var(--text-mid);line-height:1.75;}

  /* CTA */
  .about-cta{background:var(--navy);padding:80px 5%;text-align:center;}
  .about-cta-inner{max-width:640px;margin:0 auto;}
  .about-cta-eyebrow{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:20px;}
  .about-cta-eyebrow-line{width:32px;height:1px;background:var(--gold);}
  .about-cta-eyebrow-text{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);}
  .about-cta-title{font-family:var(--font-display);font-size:clamp(32px,4vw,48px);font-weight:600;color:var(--white);margin-bottom:16px;line-height:1.15;}
  .about-cta-title em{font-style:italic;color:var(--gold-light);}
  .about-cta-desc{font-size:15px;color:rgba(255,255,255,0.55);line-height:1.8;margin-bottom:32px;}
  .cta-actions{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;}
  .btn-ghost{color:rgba(255,255,255,0.6);font-size:13px;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;display:flex;align-items:center;gap:8px;transition:color .2s;}
  .btn-ghost:hover{color:var(--gold);}/* STATS */
  .stats-strip{background:var(--gold);padding:28px 5%;display:grid;grid-template-columns:repeat(4,1fr);gap:1px;}
  .stat-item{display:flex;flex-direction:column;align-items:center;text-align:center;padding:0 20px;border-right:1px solid rgba(11,28,53,0.15);}
  .stat-item:last-child{border-right:none;}
  .stat-num{font-family:var(--font-display);font-size:36px;font-weight:700;color:var(--navy);line-height:1;}
  .stat-label{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:rgba(11,28,53,0.65);margin-top:6px;}

  /* BIOGRAPHY */
  .bio-section{padding:80px 5%;background:var(--off-white);}
  .bio-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start;}
  .bio-eyebrow{display:flex;align-items:center;gap:12px;margin-bottom:16px;}
  .bio-eyebrow-line{width:32px;height:1px;background:var(--gold);}
  .bio-eyebrow-text{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);}
  .bio-title{font-family:var(--font-display);font-size:clamp(28px,3.5vw,42px);font-weight:600;color:var(--navy);line-height:1.2;margin-bottom:20px;}
  .bio-title em{font-style:italic;color:var(--gold);}
  .bio-para{font-size:15px;color:var(--text-mid);line-height:1.85;margin-bottom:20px;}
  .bio-col2{}
  .qual-section-title{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--text-muted);margin-bottom:16px;}
  .qual-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-bottom:32px;}
  .qual-item{background:var(--white);border:1px solid var(--border);border-radius:3px;padding:14px 16px;display:flex;align-items:center;gap:10px;}
  .qual-dot{width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0;}
  .qual-text{font-size:12px;font-weight:500;color:var(--text-dark);letter-spacing:.02em;}
  .intl-row{display:flex;gap:10px;flex-wrap:wrap;}
  .intl-badge{background:var(--navy);color:var(--gold-light);font-size:11px;padding:7px 16px;border-radius:2px;letter-spacing:.08em;}

  /* TIMELINE */
  .timeline-section{padding:80px 5%;background:var(--white);}
  .timeline-header{max-width:600px;margin-bottom:60px;}
  .timeline{position:relative;padding-left:40px;}
  .timeline::before{content:'';position:absolute;left:0;top:8px;bottom:8px;width:1px;background:linear-gradient(to bottom,var(--gold),rgba(201,168,76,0.1));}
  .timeline-item{position:relative;margin-bottom:44px;}
  .timeline-item:last-child{margin-bottom:0;}
  .timeline-dot{position:absolute;left:-44px;top:6px;width:10px;height:10px;border-radius:50%;background:var(--gold);border:2px solid var(--white);box-shadow:0 0 0 2px var(--gold);}
  .timeline-year{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:6px;}
  .timeline-title{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--navy);margin-bottom:6px;}
  .timeline-desc{font-size:14px;color:var(--text-mid);line-height:1.7;}
  .timeline-badge{display:inline-block;background:var(--off-white);border:1px solid var(--border);font-size:10px;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);padding:3px 10px;border-radius:2px;margin-top:8px;}

  /* MEMBERSHIPS */
  .memberships-section{padding:80px 5%;background:var(--navy);}
  .memberships-header{text-align:center;margin-bottom:52px;}
  .mem-title{font-family:var(--font-display);font-size:clamp(28px,3.5vw,40px);font-weight:600;color:var(--white);margin-bottom:12px;}
  .mem-title em{font-style:italic;color:var(--gold-light);}
  .mem-desc{font-size:15px;color:rgba(255,255,255,0.5);max-width:480px;margin:0 auto;line-height:1.7;}
  .memberships-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:2px;}
  .mem-card{background:rgba(255,255,255,0.04);border:1px solid rgba(201,168,76,0.1);padding:32px 24px;text-align:center;transition:background .2s;}
  .mem-card:hover{background:rgba(201,168,76,0.06);}
  .mem-flag{font-size:28px;margin-bottom:12px;display:block;}
  .mem-org{font-size:13px;font-weight:500;color:var(--white);line-height:1.4;margin-bottom:6px;}
  .mem-country{font-size:11px;letter-spacing:.08em;text-transform:uppercase;color:var(--gold);}

  /* VALUES */
  .values-section{padding:80px 5%;background:var(--off-white);}
  .values-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;margin-top:48px;}
  .value-card{background:var(--white);border:1px solid rgba(11,28,53,0.06);border-radius:4px;padding:36px 32px;position:relative;overflow:hidden;}
  .value-card::after{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:var(--gold);}
  .value-icon{font-size:28px;margin-bottom:16px;display:block;}
  .value-title{font-family:var(--font-display);font-size:22px;font-weight:600;color:var(--navy);margin-bottom:10px;}
  .value-desc{font-size:13px;color:var(--text-mid);line-height:1.75;}

  /* CTA */
  .about-cta{background:var(--navy);padding:80px 5%;text-align:center;}
  .about-cta-inner{max-width:640px;margin:0 auto;}
  .about-cta-eyebrow{display:flex;align-items:center;justify-content:center;gap:12px;margin-bottom:20px;}
  .about-cta-eyebrow-line{width:32px;height:1px;background:var(--gold);}
  .about-cta-eyebrow-text{font-size:11px;letter-spacing:.15em;text-transform:uppercase;color:var(--gold);}
  .about-cta-title{font-family:var(--font-display);font-size:clamp(32px,4vw,48px);font-weight:600;color:var(--white);margin-bottom:16px;line-height:1.15;}
  .about-cta-title em{font-style:italic;color:var(--gold-light);}
  .about-cta-desc{font-size:15px;color:rgba(255,255,255,0.55);line-height:1.8;margin-bottom:32px;}
  .cta-actions{display:flex;align-items:center;justify-content:center;gap:20px;flex-wrap:wrap;}
  .btn-ghost{color:rgba(255,255,255,0.6);font-size:13px;letter-spacing:.06em;text-transform:uppercase;text-decoration:none;display:flex;align-items:center;gap:8px;transition:color .2s;}
  .btn-ghost:hover{color:var(--gold);}
  
  

  .process-section { background: var(--navy); padding: 80px 5%; }
  .process-header { text-align: center; margin-bottom: 60px; }
  .process-header .section-title { color: var(--white); }
  .process-header .section-eyebrow-line { background: var(--gold); }
  .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
  .process-step { padding: 40px 32px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.05); position: relative; }
  .process-step::after { content: '→'; position: absolute; right: -16px; top: 50%; transform: translateY(-50%); color: rgba(201,168,76,0.3); font-size: 20px; z-index: 2; }
  .process-step:last-child::after { display: none; }
  .ps-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(201,168,76,0.12); line-height: 1; margin-bottom: 16px; }
  .ps-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 10px; }
  .ps-desc { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }


  .faq-section { padding: 80px 5%; background: var(--off-white); }
  .faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
  .faq-list { }
  .faq-item { border-bottom: 1px solid rgba(11,28,53,0.1); }
  .faq-question { display: flex; align-items: center; justify-content: space-between; padding: 20px 0; cursor: pointer; gap: 20px; }
  .faq-q-text { font-size: 15px; font-weight: 500; color: var(--navy); line-height: 1.5; }
  .faq-toggle { width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(11,28,53,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--gold); transition: all 0.2s; }
  .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .faq-answer-inner { padding: 0 0 20px; font-size: 14px; color: var(--text-mid); line-height: 1.8; }
  .faq-item.open .faq-toggle { background: var(--navy); color: var(--gold); border-color: var(--navy); transform: rotate(45deg); }
  .faq-item.open .faq-answer { max-height: 300px; }
  .faq-cta-box { background: var(--navy); border-radius: 4px; padding: 40px; }
  .faq-cta-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 12px; }
  .faq-cta-title em { font-style: italic; color: var(--gold-light); }
  .faq-cta-text { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: 28px; }
  .btn-primary { background: var(--gold); color: var(--navy); padding: 14px 32px; border-radius: 2px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-decoration: none; text-transform: uppercase; display: inline-block; transition: background 0.2s; }
  .btn-primary:hover { background: var(--gold-light); }

 
  @media (max-width: 1000px) { .treatments-grid { grid-template-columns: 1fr 1fr; } .process-steps { grid-template-columns: 1fr 1fr; } .process-step::after { display: none; } }
  @media (max-width: 700px) { .treatments-intro { grid-template-columns: 1fr; } .treatments-grid { grid-template-columns: 1fr; } .faq-grid { grid-template-columns: 1fr; } .nav-links { display: none; } .hamburger { display: flex; } .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
  @media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } .process-steps { grid-template-columns: 1fr; } }


/* FILTER BAR */
  .filter-bar {
    background: var(--off-white);
    border-bottom: 1px solid rgba(11,28,53,0.08);
    padding: 20px 5%;
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  }
  .filter-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-right: 4px; }
  .filter-btn {
    font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
    padding: 7px 18px; border-radius: 2px; border: 1px solid rgba(11,28,53,0.15);
    background: var(--white); color: var(--text-mid); cursor: pointer;
    transition: all 0.2s; font-family: var(--font-body);
  }
  .filter-btn:hover, .filter-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

  /* BLOG GRID */
  .blog-section { padding: 80px 5%; }
  .blog-featured { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; margin-bottom: 64px; }
  .blog-featured-card {
    background: var(--white); border: 1px solid rgba(11,28,53,0.08); border-radius: 4px;
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-featured-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(11,28,53,0.1); }
  .blog-featured-thumb {
    height: 280px; background: linear-gradient(135deg, var(--navy-light), var(--navy));
    position: relative; display: flex; align-items: flex-end; padding: 28px;
  }
  .blog-thumb-sm { height: 180px; background: linear-gradient(135deg, var(--navy-mid), var(--navy)); position: relative; display: flex; align-items: flex-end; padding: 20px; }
  .blog-cat-badge {
    background: var(--gold); color: var(--navy);
    font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
    padding: 5px 12px; border-radius: 2px; font-weight: 500;
  }
  .blog-cat-badge.blue { background: rgba(201,168,76,0.15); color: var(--gold-light); }
  .blog-card-body { padding: 28px; }
  .blog-card-body-sm { padding: 20px; }
  .blog-card-title {
    font-family: var(--font-display); font-size: 24px; font-weight: 600;
    color: var(--navy); line-height: 1.25; margin-bottom: 12px;
  }
  .blog-card-title-sm { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); line-height: 1.25; margin-bottom: 10px; }
  .blog-card-excerpt { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 20px; }
  .blog-meta-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
  .blog-meta-author { font-size: 12px; font-weight: 500; color: var(--text-dark); }
  .blog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-muted); }
  .blog-meta-info { font-size: 12px; color: var(--text-muted); }
  .blog-read-link {
    margin-left: auto; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; display: flex; align-items: center; gap: 6px;
    transition: gap 0.2s;
  }
  .blog-read-link:hover { gap: 10px; }

  .blog-secondary { display: flex; flex-direction: column; gap: 2px; }
  .blog-secondary .blog-featured-card { display: grid; grid-template-columns: 200px 1fr; }
  .blog-secondary .blog-featured-card .blog-thumb-sm { height: 100%; min-height: 160px; }

  /* BLOG GRID MAIN */
  .blog-grid-section-title { font-family: var(--font-display); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 32px; }
  .blog-grid-section-title em { font-style: italic; color: var(--gold); }
  .blog-main-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .blog-standard-card {
    background: var(--white); border: 1px solid rgba(11,28,53,0.08); border-radius: 4px;
    overflow: hidden; transition: transform 0.25s, box-shadow 0.25s;
  }
  .blog-standard-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(11,28,53,0.08); }
  .blog-standard-thumb {
    height: 160px; position: relative;
    display: flex; align-items: flex-end; padding: 16px;
  }
  .blog-standard-thumb.t1 { background: linear-gradient(135deg, #1a3560, #0B1C35); }
  .blog-standard-thumb.t2 { background: linear-gradient(135deg, #0d2040, #1a3560); }
  .blog-standard-thumb.t3 { background: linear-gradient(135deg, #112444, #0d2040); }
  .blog-standard-thumb.t4 { background: linear-gradient(135deg, #0B1C35, #1a3560); }
  .blog-standard-thumb.t5 { background: linear-gradient(135deg, #1a3560, #112444); }
  .blog-standard-thumb.t6 { background: linear-gradient(135deg, #0d2040, #0B1C35); }
  .blog-standard-body { padding: 22px; }
  .blog-standard-title { font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--navy); line-height: 1.3; margin-bottom: 10px; }
  .blog-standard-excerpt { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 16px; }
  .blog-standard-meta { display: flex; align-items: center; gap: 10px; border-top: 1px solid var(--border); padding-top: 14px; }
  .blog-standard-date { font-size: 11px; color: var(--text-muted); }
  .blog-standard-read { font-size: 11px; color: var(--text-muted); margin-left: auto; }
  .blog-standard-link {
    display: flex; align-items: center; gap: 6px;
    font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--gold); text-decoration: none; margin-left: auto;
    transition: gap 0.2s;
  }
  .blog-standard-link:hover { gap: 10px; }

  /* PAGINATION */
  .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 60px; }
  .page-btn {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(11,28,53,0.15); border-radius: 2px; font-size: 13px;
    color: var(--text-mid); cursor: pointer; transition: all 0.2s; background: var(--white);
    font-family: var(--font-body);
  }
  .page-btn:hover, .page-btn.active { background: var(--navy); color: var(--gold); border-color: var(--navy); }
  .page-btn-arrow { font-size: 16px; }

  /* SIDEBAR NEWSLETTER */
  .blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 60px; margin-top: 60px; }
  .blog-sidebar {}
  .sidebar-card { background: var(--navy); border-radius: 4px; padding: 32px; margin-bottom: 24px; }
  .sidebar-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--white); margin-bottom: 8px; }
  .sidebar-card-title em { font-style: italic; color: var(--gold-light); }
  .sidebar-card-desc { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
  .sidebar-input { width: 100%; padding: 10px 14px; border: 1px solid rgba(201,168,76,0.25); border-radius: 2px; background: rgba(255,255,255,0.05); color: var(--white); font-size: 13px; font-family: var(--font-body); margin-bottom: 10px; }
  .sidebar-input::placeholder { color: rgba(255,255,255,0.3); }
  .sidebar-btn { width: 100%; padding: 11px; background: var(--gold); color: var(--navy); border: none; border-radius: 2px; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; cursor: pointer; font-family: var(--font-body); transition: background 0.2s; }
  .sidebar-btn:hover { background: var(--gold-light); }

  .sidebar-topics { background: var(--off-white); border-radius: 4px; padding: 28px; }
  .sidebar-topics-title { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
  .topic-item { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(11,28,53,0.06); }
  .topic-item:last-child { border-bottom: none; }
  .topic-name { font-size: 13px; color: var(--text-mid); text-decoration: none; transition: color 0.2s; }
  .topic-name:hover { color: var(--gold); }
  .topic-count { font-size: 11px; color: var(--text-muted); background: var(--white); padding: 2px 8px; border-radius: 10px; }

   @media (max-width: 900px) {
    .blog-featured { grid-template-columns: 1fr; }
    .blog-secondary { display: grid; grid-template-columns: 1fr 1fr; }
    .blog-secondary .blog-featured-card { grid-template-columns: 1fr; }
    .blog-main-grid { grid-template-columns: 1fr 1fr; }
    .blog-layout { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  @media (max-width: 600px) {
    .blog-main-grid { grid-template-columns: 1fr; }
    .blog-secondary { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
  }


  /* ── MOBILE RESPONSIVE ── */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 120px 6% 60px; }
    .about-section { grid-template-columns: 1fr; gap: 40px; padding: 60px 6%; }
    .about-content { padding-right: 0; }
    .services-header { grid-template-columns: 1fr; gap: 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  }