/* ══════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════ */
:root, [data-theme="light"] {
  --bg:               #F8FAFB;
  --surface:          #ffffff;
  --surface-2:        #EFF6FB;
  --surface-3:        #E4EFF7;
  --divider:          #D5E8F3;
  --border:           #C7DDED;

  --text:             #0D1F33;
  --text-muted:       #4A6880;
  --text-faint:       #8BA8BF;
  --text-inv:         #ffffff;

  --primary:          #0F4C81;
  --primary-hover:    #0A3D6B;
  --primary-active:   #062D52;
  --primary-hi:       #D6EAF8;
  --primary-mid:      #A8CDE8;

  --accent:           #C8860A;
  --accent-hover:     #A86C00;
  --accent-light:     #FFF8EC;
  --accent-border:    rgba(200,134,10,0.25);

  --success:          #1E7A50;
  --success-bg:       #E8F7EE;
  --success-border:   #B7DFCA;

  --r-sm:   0.375rem;
  --r-md:   0.5rem;
  --r-lg:   0.75rem;
  --r-xl:   1rem;
  --r-2xl:  1.5rem;
  --r-full: 9999px;

  --ease:      cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast:    140ms var(--ease);
  --t-base:    200ms var(--ease);
  --t-slow:    380ms var(--ease);

  --sh-xs: 0 1px 2px rgba(15,76,129,0.06);
  --sh-sm: 0 2px 8px rgba(15,76,129,0.08), 0 1px 2px rgba(15,76,129,0.05);
  --sh-md: 0 6px 24px rgba(15,76,129,0.11), 0 2px 6px rgba(15,76,129,0.06);
  --sh-lg: 0 16px 56px rgba(15,76,129,0.14), 0 4px 12px rgba(15,76,129,0.07);
  --sh-xl: 0 28px 80px rgba(15,76,129,0.18), 0 8px 20px rgba(15,76,129,0.09);

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --text-xs:   clamp(0.75rem,  0.7rem  + 0.2vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.82rem + 0.3vw, 1rem);
  --text-base: clamp(1rem,     0.96rem + 0.2vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.7vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.2vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.3rem  + 2.4vw, 3.25rem);
  --text-3xl:  clamp(2.4rem,   1rem    + 3.8vw, 4.25rem);

  --section-v: clamp(5rem, 9vw, 7.5rem);
  --content-narrow:  640px;
  --content-default: 960px;
  --content-wide:    1200px;
}

[data-theme="dark"] {
  --bg:               #0A1929;
  --surface:          #0F2236;
  --surface-2:        #162D44;
  --surface-3:        #1C3550;
  --divider:          #1F3D58;
  --border:           #264B6A;
  --text:             #D4EAF7;
  --text-muted:       #6FA3C4;
  --text-faint:       #3A6280;
  --text-inv:         #0A1929;
  --primary:          #5BA6DC;
  --primary-hover:    #4090CC;
  --primary-active:   #2E7BB8;
  --primary-hi:       #0F2D48;
  --primary-mid:      #1A4060;
  --accent:           #F2AC35;
  --accent-hover:     #D4901C;
  --accent-light:     #221A08;
  --accent-border:    rgba(242,172,53,0.2);
  --sh-xs: 0 1px 2px rgba(0,0,0,0.3);
  --sh-sm: 0 2px 8px rgba(0,0,0,0.35);
  --sh-md: 0 6px 24px rgba(0,0,0,0.4);
  --sh-lg: 0 16px 56px rgba(0,0,0,0.5);
  --sh-xl: 0 28px 80px rgba(0,0,0,0.6);
}

/* ══════════════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}
img { display: block; max-width: 100%; height: auto; }
ul[role="list"] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.2; text-wrap: balance; color: var(--text); }
p, li { text-wrap: pretty; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: var(--r-sm); }
::selection { background: var(--primary-hi); color: var(--text); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════════════ */
.container         { max-width: var(--content-wide);    margin-inline: auto; padding-inline: 1.5rem; }
.container--default{ max-width: var(--content-default); margin-inline: auto; padding-inline: 1.5rem; }
.container--narrow { max-width: var(--content-narrow);  margin-inline: auto; padding-inline: 1.5rem; }

.section { padding-block: var(--section-v); }
.section--alt { background: var(--surface-2); }
.section__label {
  font-size: var(--text-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--primary); margin-bottom: 0.6rem;
}
.section__heading { font-size: var(--text-xl); margin-bottom: 1rem; }
.section__sub { font-size: var(--text-base); color: var(--text-muted); max-width: 58ch; line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   SKIP LINK
══════════════════════════════════════════════════════ */
.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--primary); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--r-md);
  font-size: var(--text-sm); z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-sm); font-weight: 600;
  padding: 0.75rem 1.5rem; border-radius: var(--r-full);
  text-decoration: none; border: none; cursor: pointer;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.btn--accent {
  background: var(--accent); color: #fff;
  box-shadow: 0 4px 20px rgba(200,134,10,0.3);
}
.btn--accent:hover {
  background: var(--accent-hover);
  box-shadow: 0 6px 28px rgba(200,134,10,0.42);
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--primary); color: #fff;
  box-shadow: var(--sh-sm);
}
.btn--primary:hover {
  background: var(--primary-hover);
  box-shadow: var(--sh-md);
  transform: translateY(-1px);
}
.btn--outline-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.45);
}
.btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.8); }
.btn--ghost {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary-mid);
}
.btn--ghost:hover { background: var(--primary-hi); }

/* ══════════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--sh-xs);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--content-wide); margin-inline: auto;
  padding: 0.65rem 1.5rem;
  gap: 1.5rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.75rem;
  text-decoration: none; flex-shrink: 0;
}
.nav__logo-icon svg { display: block; }
.nav__logo-name { font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: var(--primary); line-height: 1.2; }
.nav__logo-cred { font-size: 0.72rem; color: var(--text-faint); font-weight: 400; }
.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--text-muted); text-decoration: none;
  padding: 0.45rem 0.75rem;
  border-radius: var(--r-md);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__link:hover { color: var(--primary); background: var(--primary-hi); }
.nav__right { display: flex; align-items: center; gap: 0.75rem; }
.nav__cta {
  background: var(--accent); color: #fff;
  font-size: var(--text-sm); font-weight: 600;
  padding: 0.55rem 1.25rem;
  border-radius: var(--r-full); text-decoration: none;
  white-space: nowrap;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav__cta:hover { background: var(--accent-hover); box-shadow: var(--sh-sm); }
.theme-toggle {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-full); color: var(--text-muted);
  border: 1px solid var(--border);
  transition: color var(--t-fast), border-color var(--t-fast);
}
.theme-toggle:hover { color: var(--primary); border-color: var(--primary); }
.hamburger { display: none; width: 36px; height: 36px; align-items: center; justify-content: center; border-radius: var(--r-md); color: var(--text-muted); }
.hamburger:hover { color: var(--primary); }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 1rem 1.5rem; gap: 0.25rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link { padding: 0.75rem 1rem; border-radius: var(--r-lg); }
.mobile-menu__cta { display: block; text-align: center; padding: 0.75rem; margin-top: 0.5rem; border-radius: var(--r-full); }
@media (max-width: 860px) {
  .nav__links, .nav__right .nav__cta { display: none; }
  .hamburger { display: flex; }
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #0F4C81 0%, #062D52 55%, #041E3A 100%);
  color: #fff;
  padding-top: clamp(4rem, 8vw, 6rem);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(91,166,220,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,134,10,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='rgba(255,255,255,0.04)'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1;
  max-width: var(--content-wide); margin-inline: auto; padding-inline: 1.5rem;
  display: grid; grid-template-columns: 1fr 400px; gap: 3rem; align-items: end;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  padding: 0.3rem 1rem;
  font-size: var(--text-xs); font-weight: 500;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}
.hero__badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero__ig-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 0.25rem 0.75rem;
  font-size: var(--text-xs); font-weight: 500;
  text-decoration: none; color: rgba(255,255,255,0.75);
  margin-left: 0.5rem;
  transition: background var(--t-fast), color var(--t-fast);
}
.hero__ig-pill:hover { background: rgba(255,255,255,0.15); color: #fff; }
.hero__name {
  font-size: var(--text-3xl); font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
  line-height: 1.1;
}
.hero__cred {
  font-size: var(--text-base); color: rgba(255,255,255,0.7);
  margin-bottom: 1rem; font-style: italic;
  font-family: var(--font-display);
}
.hero__tagline {
  font-size: var(--text-lg); color: rgba(255,255,255,0.88);
  margin-bottom: 2.5rem; max-width: 50ch; line-height: 1.55;
}
.hero__stats {
  display: flex; gap: 2.5rem; margin-bottom: 2.5rem;
}
.hero__stat-num {
  font-size: var(--text-xl); font-weight: 700;
  font-family: var(--font-display); color: #fff;
  line-height: 1;
}
.hero__stat-label { font-size: var(--text-xs); color: rgba(255,255,255,0.55); margin-top: 0.25rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; padding-bottom: clamp(3rem, 5vw, 4rem); }

/* Hero image */
.hero__visual { position: relative; align-self: flex-end; }
.hero__photo-card {
  background: linear-gradient(180deg, #c8dff2 0%, #e8f3fb 55%, #f4f9fd 100%);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
  overflow: hidden; width: 100%;
  box-shadow: var(--sh-xl);
}
.hero__photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: top center;
  display: block;
  mix-blend-mode: multiply;
}
.hero__placeholder {
  width: 100%; aspect-ratio: 3/4;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.25rem; color: rgba(255,255,255,0.35);
}
.hero__placeholder svg { width: 90px; height: 90px; opacity: 0.3; }
.hero__placeholder span { font-size: var(--text-sm); opacity: 0.5; }
.hero__float-verify {
  position: absolute; bottom: 1.5rem; left: 1rem;
  background: var(--surface); border-radius: var(--r-xl);
  padding: 0.75rem 1rem; box-shadow: var(--sh-md);
  display: flex; align-items: center; gap: 0.75rem;
  min-width: 0;
}
.hero__float-verify-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary-hi); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero__float-verify-val { font-size: var(--text-sm); font-weight: 700; color: var(--text); line-height: 1.2; }
.hero__float-verify-sub { font-size: 0.7rem; color: var(--text-muted); }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 300px; margin-inline: auto; order: -1; }
  .hero__placeholder { aspect-ratio: 4/3; }
  .hero__stats { gap: 1.5rem; }
}
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__stats { gap: 1.25rem; }
}

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}
.trust-bar__inner {
  max-width: var(--content-wide); margin-inline: auto; padding-inline: 1.5rem;
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
}
.trust-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: var(--text-sm); color: var(--text-muted);
  white-space: nowrap;
}
.trust-item svg { color: var(--primary); flex-shrink: 0; }
@media (max-width: 640px) {
  .trust-bar__inner { gap: 0.75rem 1.25rem; }
  .trust-item { font-size: var(--text-xs); white-space: normal; text-align: left; }
}

/* ══════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════ */
.about__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem); align-items: start;
  margin-top: 2.5rem;
}
.about__intro { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.85; }
.about__intro + .about__intro { margin-top: 1rem; }

.about__qual { margin-top: 2rem; }
.about__qual-title {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--text-faint); margin-bottom: 1rem;
}
.qual-timeline { display: flex; flex-direction: column; gap: 0; }
.qual-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--divider);
  position: relative;
}
.qual-item:last-child { border-bottom: none; }
.qual-item__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0; margin-top: 5px;
  box-shadow: 0 0 0 3px var(--primary-hi);
}
.qual-item__degree { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.qual-item__school { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.2rem; }
.qual-item__badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  background: var(--accent-light); border: 1px solid var(--accent-border);
  color: var(--accent); font-size: 0.68rem; font-weight: 600;
  padding: 0.15rem 0.5rem; border-radius: var(--r-full);
  margin-left: 0.5rem; vertical-align: middle;
}

.membership-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.75rem; }
.membership-chip {
  display: inline-flex; align-items: center; gap: 0.35rem;
  background: var(--primary-hi); color: var(--primary);
  font-size: var(--text-xs); font-weight: 500;
  padding: 0.3rem 0.75rem; border-radius: var(--r-full);
  border: 1px solid rgba(15,76,129,0.15);
}

.hospital-cards { display: flex; flex-direction: column; gap: 0.875rem; margin-top: 2rem; }
.hospital-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1rem 1.25rem;
  display: flex; align-items: center; gap: 1rem;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.hospital-card:hover { box-shadow: var(--sh-sm); border-color: var(--primary-mid); }
.hospital-card__icon {
  width: 40px; height: 40px; border-radius: var(--r-lg);
  background: var(--primary-hi); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hospital-card__name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.hospital-card__detail { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.15rem; }

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

/* ══════════════════════════════════════════════════════
   SPECIALTIES
══════════════════════════════════════════════════════ */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.specialty-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.5rem;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t-base), transform var(--t-base), border-color var(--t-base);
  border-left: 3px solid transparent;
  position: relative; overflow: hidden;
}
.specialty-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, transparent 100%);
  opacity: 0; transition: opacity var(--t-base);
}
.specialty-card:hover {
  box-shadow: var(--sh-md); transform: translateY(-3px);
  border-left-color: var(--primary);
}
.specialty-card:hover::before { opacity: 1; }
.specialty-card__icon-wrap {
  width: 52px; height: 52px; border-radius: var(--r-lg);
  background: var(--primary-hi); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  transition: background var(--t-base);
}
.specialty-card:hover .specialty-card__icon-wrap { background: var(--primary); color: #fff; }
.specialty-card__title { font-size: var(--text-sm); font-weight: 700; color: var(--text); margin-bottom: 0.5rem; }
.specialty-card__desc { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.65; }

/* ══════════════════════════════════════════════════════
   BOOKING (CALENDLY)
══════════════════════════════════════════════════════ */
.booking-section { background: var(--surface-2); }
.booking__wrapper {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start; margin-top: 2.5rem;
}
.booking__info {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); padding: 2rem;
  box-shadow: var(--sh-md); position: sticky; top: 100px;
}
.booking__info h3 { font-size: var(--text-lg); margin-bottom: 1.5rem; }
.info-row { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 1.25rem; }
.info-row__icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--primary-hi); color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.info-row__label { font-size: var(--text-xs); color: var(--text-faint); margin-bottom: 0.2rem; }
.info-row__val { font-size: var(--text-sm); font-weight: 500; color: var(--text); }
.info-row__val a { color: var(--primary); text-decoration: none; }
.info-row__val a:hover { text-decoration: underline; }
.schedule-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.5rem; }
.schedule-slot {
  background: var(--surface-2); border-radius: var(--r-md);
  padding: 0.65rem 0.75rem; border: 1px solid var(--border);
}
.schedule-slot__place { font-size: var(--text-xs); font-weight: 600; color: var(--primary); }
.schedule-slot__time { font-size: 0.7rem; color: var(--text-muted); margin-top: 0.15rem; white-space: nowrap; }
@media (max-width: 480px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .booking__info { padding: 1.25rem; }
  .info-row { gap: 0.6rem; }
  .info-row__icon { width: 30px; height: 30px; flex-shrink: 0; }
}
.fee-box {
  background: var(--accent-light); border: 1px solid var(--accent-border);
  border-radius: var(--r-lg); padding: 1rem;
  margin-top: 1.5rem;
}
.fee-box__amount { font-size: var(--text-lg); font-weight: 700; color: var(--accent); font-family: var(--font-display); }
.fee-box__label { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.25rem; }
.fee-box__note { font-size: var(--text-xs); color: var(--text-muted); margin-top: 0.5rem; }

.calendly-wrap {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-2xl); overflow: hidden;
  box-shadow: var(--sh-md); min-height: 700px;
}
.calendly-inline-widget { border: none; }

@media (max-width: 860px) { .booking__wrapper { grid-template-columns: 1fr; } .booking__info { position: static; } }

/* ══════════════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.25rem; margin-top: 2.5rem;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); padding: 1.5rem;
  box-shadow: var(--sh-xs);
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: box-shadow var(--t-base);
}
.testimonial-card:hover { box-shadow: var(--sh-md); }
.testimonial__stars { color: #F5A623; font-size: 0.9rem; letter-spacing: 0.05em; }
.testimonial__text {
  font-size: var(--text-sm); color: var(--text-muted);
  line-height: 1.75; font-style: italic; flex: 1;
}
.testimonial__text::before { content: '"'; font-size: 1.5em; color: var(--primary-mid); line-height: 0; vertical-align: -0.4em; margin-right: 0.1em; }
.testimonial__author { font-size: var(--text-xs); font-weight: 700; color: var(--text); }
.testimonial__condition { font-size: var(--text-xs); color: var(--text-faint); }

/* ══════════════════════════════════════════════════════
   BLOG PREVIEW
══════════════════════════════════════════════════════ */
.blog-preview { background: var(--surface); }
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-xs);
  transition: box-shadow var(--t-base), transform var(--t-base);
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); }
.blog-card__img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover; background: var(--surface-3);
}
.blog-card__img-placeholder {
  width: 100%; aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--primary-hi) 0%, var(--surface-3) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-mid); font-size: 2.5rem;
}
.blog-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.blog-card__category {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--primary);
}
.blog-card__title { font-size: var(--text-sm); font-weight: 700; color: var(--text); line-height: 1.4; }
.blog-card:hover .blog-card__title { color: var(--primary); }
.blog-card__excerpt { font-size: var(--text-xs); color: var(--text-muted); line-height: 1.65; flex: 1; }
.blog-card__meta { font-size: var(--text-xs); color: var(--text-faint); margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--divider); }

.blog-empty {
  margin-top: 2.5rem; background: var(--surface-2);
  border: 1px dashed var(--border); border-radius: var(--r-2xl);
  padding: 3rem 2rem; text-align: center;
}
.blog-empty__title { font-size: var(--text-lg); margin-bottom: 0.75rem; color: var(--text); }
.blog-empty__sub { font-size: var(--text-sm); color: var(--text-muted); max-width: 42ch; margin-inline: auto; line-height: 1.7; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-list {
  margin-top: 2.5rem; max-width: 760px; margin-inline: auto;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-xl); overflow: hidden;
  transition: border-color var(--t-base), box-shadow var(--t-base);
}
.faq-item.open { border-color: var(--primary-mid); box-shadow: var(--sh-sm); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.5rem; font-size: var(--text-sm); font-weight: 600;
  color: var(--text); text-align: left; gap: 1rem;
  background: none; border: none; cursor: pointer;
}
.faq-question:hover { background: var(--surface-2); }
.faq-chevron { flex-shrink: 0; color: var(--primary); transition: transform var(--t-base); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner { padding: 0 1.5rem 1.25rem; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.75; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.footer {
  background: #071525;
  color: rgba(255,255,255,0.65);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 3rem;
}
.footer__brand-name { font-family: var(--font-display); font-size: var(--text-lg); font-weight: 700; color: #fff; margin-bottom: 0.25rem; }
.footer__brand-cred { font-size: var(--text-xs); color: rgba(255,255,255,0.4); margin-bottom: 0.75rem; }
.footer__brand-desc { font-size: var(--text-xs); color: rgba(255,255,255,0.45); line-height: 1.75; max-width: 32ch; }
.footer__ig {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: rgba(255,255,255,0.5); text-decoration: none;
  font-size: var(--text-xs); margin-top: 0.75rem;
  transition: color var(--t-fast);
}
.footer__ig:hover { color: #fff; }
.footer__col-title {
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer__link {
  display: block; font-size: var(--text-xs);
  color: rgba(255,255,255,0.55); text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color var(--t-fast);
}
.footer__link:hover { color: #fff; }
.footer__contact-row {
  display: flex; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.75rem;
}
.footer__contact-row svg { color: rgba(255,255,255,0.3); flex-shrink: 0; margin-top: 1px; }
.footer__contact-row span, .footer__contact-link {
  font-size: var(--text-xs); color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer__contact-link:hover { color: #fff; }
.footer__divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer__disclaimer { font-size: var(--text-xs); color: rgba(255,255,255,0.25); max-width: 55ch; text-align: right; }
@media (max-width: 900px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__disclaimer { text-align: left; }
}

/* ══════════════════════════════════════════════════════
   WHATSAPP FAB
══════════════════════════════════════════════════════ */
.whatsapp-fab {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  text-decoration: none; color: white;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 6px 30px rgba(37,211,102,0.6); }

/* ══════════════════════════════════════════════════════
   BLOG PAGE
══════════════════════════════════════════════════════ */
.blog-page { padding-block: var(--section-v); }
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}

/* ══════════════════════════════════════════════════════
   POST PAGE
══════════════════════════════════════════════════════ */
.post-page__hero {
  background: linear-gradient(135deg, #0F4C81 0%, #062D52 100%);
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
  color: #fff;
}
.post-page__hero--has-cover { padding: 0; }
.post-page__cover { width: 100%; max-height: 460px; object-fit: cover; display: block; }
.post-page__hero--has-cover .container--default { padding-top: 2.5rem; }
.post-page__meta { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; flex-wrap: wrap; }
.post-page__category {
  background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.9);
  font-size: var(--text-xs); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 0.2rem 0.75rem; border-radius: var(--r-full);
}
.post-page__date { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }
.post-page__title { font-size: var(--text-xl); font-weight: 700; color: #fff; max-width: 22ch; line-height: 1.2; }
.post-page__summary { font-size: var(--text-base); color: rgba(255,255,255,0.75); margin-top: 0.75rem; max-width: 56ch; line-height: 1.65; }
.post-page__author {
  display: flex; align-items: center; gap: 0.75rem; margin-top: 1.5rem;
}
.post-page__author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: var(--text-sm); font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.post-page__author-name { font-size: var(--text-sm); font-weight: 600; color: #fff; }
.post-page__author-cred { font-size: var(--text-xs); color: rgba(255,255,255,0.55); }
.post-page__body {
  padding-block: clamp(2.5rem, 5vw, 4rem);
  font-size: var(--text-base); color: var(--text); line-height: 1.85;
}
.post-page__body h2 { font-size: var(--text-lg); margin-top: 2.5rem; margin-bottom: 1rem; }
.post-page__body h3 { font-size: var(--text-base); font-weight: 700; margin-top: 2rem; margin-bottom: 0.75rem; }
.post-page__body p { margin-bottom: 1.25rem; }
.post-page__body ul, .post-page__body ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-page__body li { margin-bottom: 0.4rem; }
.post-page__body strong { color: var(--text); font-weight: 600; }
.post-page__body a { color: var(--primary); }
.post-page__body blockquote {
  border-left: 3px solid var(--primary); padding-left: 1.25rem;
  margin: 1.5rem 0; font-style: italic; color: var(--text-muted);
}
.post-page__cta-box {
  background: var(--primary-hi); border-radius: var(--r-2xl);
  padding: 2rem; text-align: center; margin-top: 3rem;
  border: 1px solid var(--primary-mid);
}
.post-page__cta-box p { color: var(--text-muted); margin-bottom: 1rem; font-size: var(--text-sm); }

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

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
