:root {
  --ink: #000050;

  --ink2: #1a1a2e;

  --ink3: #2d2d44;

  --body: #52526e;

  --muted: #9191ab;

  --border: #e8e8f0;

  --surface: #fffef7;

  --paper: #fafafa;

  --white: #ffffff;

  --azure: #2563eb;
  --azure-l: #eff6ff;
  --azure-d: #1d4ed8;
  --coral: #f97316;
  --coral-l: #fff7ed;
  --sage: #059669;
  --sage-l: #ecfdf5;
  --plum: #7c3aed;
  --plum-l: #f5f3ff;
  --amber2: #d97706;
  --amber-l: #fffbeb;
  --rose2: #e11d48;
  --rose-l: #fff1f2;
  --teal2: #0ea5e9;
  --teal-l: #e0f2fe;

  --g-azure: linear-gradient(135deg, #2563eb, #7c3aed);
  --g-warm: linear-gradient(135deg, #f97316, #ef4444);
  --g-sage: linear-gradient(135deg, #059669, #0ea5e9);
  --g-full: linear-gradient(135deg, #2563eb, #7c3aed, #f97316);

  --sh-sm: 0 2px 12px rgba(13, 13, 18, 0.06);
  --sh-md: 0 6px 28px rgba(13, 13, 18, 0.09);
  --sh-lg: 0 16px 56px rgba(13, 13, 18, 0.12);
  --sh-azure: 0 8px 32px rgba(37, 99, 235, 0.25);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  border: none;
  cursor: pointer;
  background: none;
  font-family: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f0f0f8;
}
::-webkit-scrollbar-thumb {
  background: var(--g-azure);
  border-radius: 99px;
}

/* ── Typography ── */
.font-serif {
  font-family: "Playfair Display", "Georgia", serif;
}
.t-display {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 0.92;
  font-style: italic;
}
.t-h2 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
  font-style: italic;
}
.t-h3 {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: italic;
}
.t-body {
  font-size: 0.975rem;
  line-height: 1.82;
  color: var(--body);
}

/* Gradient text */
.gt-azure {
  background: var(--g-azure);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-warm {
  background: var(--g-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-sage {
  background: var(--g-sage);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gt-full {
  background: var(--g-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200%;
  animation: gShift 4s ease infinite;
}
@keyframes gShift {
  0%,
  100% {
    background-position: 0%;
  }
  50% {
    background-position: 100%;
  }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 99px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-lg {
  padding: 15px 36px;
  font-size: 1rem;
}
.btn-md {
  padding: 12px 28px;
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}
.btn-azure {
  background: var(--g-azure);
  color: #fff;
  box-shadow: var(--sh-azure);
}
.btn-azure:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(37, 99, 235, 0.38);
}
.btn-warm {
  background: var(--g-warm);
  color: #fff;
  box-shadow: 0 8px 32px rgba(249, 115, 22, 0.28);
}
.btn-warm:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(249, 115, 22, 0.38);
}
.btn-outline {
  background: transparent;
  color: var(--azure);
  border: 2px solid var(--azure);
}
.hero-right {
  animation: float2 2s linear alternate infinite;
}
.aboutimg {
  animation: float 2s linear alternate infinite;
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-30px);
  }
}
@keyframes float2 {
  0% {
    transform: translate(0);
  }

  100% {
    transform: translate(-30px, -30px);
  }
}

.btn-outline:hover {
  background: var(--azure);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--ink);
  box-shadow: var(--sh-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}
.ripple {
  position: relative;
  overflow: hidden;
}
.rpl {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(0);
  animation: rplAnim 0.65s linear forwards;
  pointer-events: none;
}
@keyframes rplAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ── Reveal ── */
[data-sr] {
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
  opacity: 0;
}
[data-sr="up"] {
  transform: translateY(40px);
}
[data-sr="left"] {
  transform: translateX(-40px);
}
[data-sr="right"] {
  transform: translateX(40px);
}
[data-sr].on {
  opacity: 1;
  transform: none;
}
[data-sd="1"] {
  transition-delay: 0.1s;
}
[data-sd="2"] {
  transition-delay: 0.2s;
}
[data-sd="3"] {
  transition-delay: 0.3s;
}
[data-sd="4"] {
  transition-delay: 0.4s;
}
[data-sd="5"] {
  transition-delay: 0.5s;
}
[data-sd="6"] {
  transition-delay: 0.6s;
}

/* ══════════════════════════════════════════
   ① NAVBAR — Horizontal full-width bar, no pill
══════════════════════════════════════════ */
#navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 1000;
  background: rgba(250, 250, 250, 0.92);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
}
.nav-bar {
  height: 68px;
  padding-inline: clamp(1rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.4s ease;
}

#navbar.scrolled .nav-bar {
  background: rgba(250, 250, 250, 0.98);
  box-shadow: 0 2px 24px rgba(13, 13, 18, 0.08);
}
.logo-serif {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-style: italic;
  line-height: 1;
}
.logo-serif em {
  color: var(--azure);
  font-style: italic;
}
.logo-tag {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 1px;
}
.nav-center {
  display: none;
  align-items: center;
  gap: 2px;
}
@media (min-width: 900px) {
  .nav-center {
    display: flex;
  }
}
.nl {
  padding: 7px 14px;
  border-radius: 99px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--body);
  transition: all 0.22s;
}
.nl:hover {
  color: var(--azure);
  background: var(--azure-l);
}
.ham-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
  transition: all 0.3s;
}
.ham.open .ham-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.ham.open .ham-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.ham.open .ham-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile drawer */
.mob-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: #fff;
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  padding: 80px 28px 40px;
  gap: 4px;
}
.mob-drawer.open {
  transform: translateX(0);
}
.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mob-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.mob-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--body);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mob-link:hover {
  color: var(--azure);
}
.mob-link i {
  color: var(--azure);
  width: 20px;
}
.mob-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  font-size: 1rem;
  transition: all 0.2s;
}
.mob-close:hover {
  background: var(--rose-l);
  color: var(--rose2);
  border-color: var(--rose2);
}

/* ══════════════════════════════════════════
   ② HERO — 
══════════════════════════════════════════ */
#hero {
  min-height: 100svh;
  padding-top: 68px;
  background: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
}
.hero-stripe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(160deg, #eff6ff 0%, #f5f3ff 100%);
  clip-path: polygon(16% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.hero-bignum {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(16rem, 24vw, 28rem);
  font-weight: 900;
  line-height: 1;
  color: rgba(37, 99, 235, 0.05);
  pointer-events: none;
  user-select: none;
  font-style: italic;
}
.hero-main {
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 4vw, 2.5rem) 2rem;
  max-width: 1280px;
  margin-inline: auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-main {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.kicker-line {
  width: 40px;
  height: 2px;
  background: var(--azure);
  border-radius: 1px;
  flex-shrink: 0;
}
.kicker-text {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--azure);
}
.hero-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--azure);
  animation: pls 2s ease-in-out infinite;
}
@keyframes pls {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}

/* Stat pills below headline */
.hero-stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 36px;
}
.hstat {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.28s;
}
.hstat:hover {
  background: var(--azure-l);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}
.hstat-num {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  font-style: italic;
  line-height: 1;
}
.hstat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

/* Right overlapping cards */
.hero-right {
  position: relative;
  width: 600px;
  top: -15%;
}
@media (min-width: 960px) {
  .hero-right {
    height: 460px;
  }
}
.hcard {
  position: absolute;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 20px;
  box-shadow: var(--sh-md);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s;
}
.hcard:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--sh-lg) !important;
}
.hc-a {
  width: 72%;
  top: 0;
  left: 0;
  z-index: 3;
  border-top: 4px solid var(--azure);
}
.hc-b {
  width: 62%;
  top: 50px;
  right: 0;
  z-index: 2;
  border-top: 4px solid var(--coral);
}
.hc-c {
  width: 58%;
  bottom: 0;
  left: 15%;
  z-index: 1;
  border-top: 4px solid var(--sage);
}
.hcard-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  font-style: italic;
}
.hcard-desc {
  font-size: 0.8rem;
  color: var(--body);
  line-height: 1.6;
}
.hcard-feat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.hcard-feat:last-child {
  border-bottom: none;
}
.hf-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Hero ticker */
.hero-ticker {
  overflow: hidden;
  height: 44px;
  border-top: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  z-index: 2;
}
.ticker-track {
  display: flex;
  animation: tkr 30s linear infinite;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 24px;
  height: 44px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--body);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--azure);
  opacity: 0.6;
  flex-shrink: 0;
}
@keyframes tkr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════════════════
   ③ ABOUT —
══════════════════════════════════════════ */
#about {
  background: #fff;
  position: relative;
  overflow: hidden;
}
.about-watermark {
  position: absolute;
  left: -20px;
  top: 70%;
  transform: translateY(-50%);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(8rem, 14vw, 16rem);
  font-weight: 900;
  color: rgba(13, 13, 18, 0.025);
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -0.05em;
  font-style: italic;
  line-height: 1;
}

.about-collage {
  position: relative;
  min-height: 480px;
}
.collage-main {
  width: 75%;
  aspect-ratio: 3/4;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #eff6ff, #e0e7ff);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--border);
}
.collage-side {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 44%;
  aspect-ratio: 1;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #fee2e2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--sh-md);
  border: 1px solid var(--border);
}
.collage-quote {
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 25%;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: var(--sh-lg);
  z-index: 10;
}
.cq-text {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.45;
  color: #fff;
  font-style: italic;
  margin-bottom: 8px;
}
.cq-attr {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.about-pill:hover {
  background: var(--azure-l);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateX(4px);
}
.ap-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   ④ WHY US — ALTERNATING FEATURE ROWS
   Each row: icon block one side, text other side — alternating
══════════════════════════════════════════ */
#why {
  background: var(--surface);
  position: relative;
}
.why-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  padding-block: 3.5rem;
  border-bottom: 1px solid var(--border);
}
@media (min-width: 768px) {
  .why-row {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}
.why-row.flip .why-vis-col {
  order: 2;
}
.why-row.flip .why-txt-col {
  order: 1;
}

.why-vis-col {
  aspect-ratio: 4/3;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.why-vis-icon {
  font-size: clamp(4rem, 8vw, 7rem);
  position: relative;
  z-index: 1;
}
.why-vis-num {
  position: absolute;
  bottom: -10px;
  right: -10px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  /* opacity: 0.8; */
  font-style: italic;
  pointer-events: none;
}

.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.why-num-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--azure);
  color: #fff;
  flex-shrink: 0;
}
.why-divider {
  width: 40px;
  height: 2px;
  margin-top: 16px;
  border-radius: 1px;
}

/* ══════════════════════════════════════════
   ⑤ PROGRAMS — BIG NUMBERED LIST left + sticky preview right
══════════════════════════════════════════ */
#programs {
  background: #fff;
}
.prog-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 960px) {
  .prog-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.prog-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.28s;
  position: relative;
}
.prog-item::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--azure);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s;
  border-radius: 1px;
}
.prog-item.active::before {
  transform: scaleY(1);
}
.prog-item.active,
.prog-item:hover {
  padding-left: 14px;
}
.prog-big-num {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--border);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.28s;
  font-style: italic;
  width: 56px;
  text-align: right;
}
.prog-item.active .prog-big-num,
.prog-item:hover .prog-big-num {
  color: var(--azure);
}
.prog-item-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-style: italic;
  transition: color 0.28s;
}
.prog-item.active .prog-item-title {
  color: var(--azure);
}
.prog-item-meta {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.prog-body-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.prog-item.active .prog-body-panel {
  max-height: 200px;
}
.prog-body-desc {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.8;
  padding-top: 10px;
}
.prog-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 99px;
  margin-top: 8px;
  margin-right: 4px;
  background: var(--azure-l);
  color: var(--azure);
  border: 1px solid #2563eb33;
}

/* Sticky right panel */
.prog-panel {
  position: sticky;
  top: 88px;
  border-radius: 28px;
  overflow: hidden;
  /* aspect-ratio: 4/5; */
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.prog-panel-bg {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prog-panel-icon {
  font-size: 8rem;
  transition: transform 0.4s ease;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.1));
}
.prog-panel-info {
  padding: 24px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.ppi-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
  font-style: italic;
}
.ppi-stat-num {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--azure);
  line-height: 1;
  font-style: italic;
}
.ppi-stat-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 3px;
}

/* ══════════════════════════════════════════
   ⑥ STATS — Dark full-bleed with serif counters
══════════════════════════════════════════ */
#stats {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.stats-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.sbox {
  text-align: center;
  padding: 3rem 1.5rem;
  flex: 1;
}
.sbox-icon {
  
  background: #f0efef42;
  border-radius: 20px;
  font-size: 2rem;
  padding-block: 8px;
  color: #ffffffaf;
  margin-bottom: 10px;

}
.sbox-num {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
  font-style: italic;
}
.sbox-lbl {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff61;
  padding-top: 20px;
}
.sdiv {
  width: 1px;
  background: #ffffff1f;
  height: 80px;
  align-self: center;
  display: none;
}
@media (min-width: 640px) {
  .sdiv {
    display: block;
  }
}

/* ══════════════════════════════════════════
   ⑦ GALLERY — POLAROID PINBOARD
   White border, slightly rotated, shadow feel
══════════════════════════════════════════ */
#gallery {
  background: var(--surface);
}
.pin-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 640px) {
  .pin-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .pin-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pin-cell {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.pin-cell.big {
  grid-column: span 2;
  grid-row: span 2;
}
.pin-cell.tall {
  grid-row: span 2;
}
.pin-cell:hover {
  transform: translateY(-6px) rotate(0.4deg);
  box-shadow: var(--sh-lg);
}
.pin-img {
  flex: 1;
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: transform 0.5s ease;
  position: relative;
  overflow: hidden;
}
.pin-cell.big .pin-img {
  min-height: 260px;
  font-size: 4rem;
}
.pin-cell.tall .pin-img {
  min-height: 0;
}
.pin-cell:hover .pin-img {
  transform: scale(1.06);
}
.pin-hover {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 18, 0.55);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
}
.pin-cell:hover .pin-hover {
  opacity: 1;
}
.pin-zoom {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
}
.pin-cap {
  padding: 10px 12px;
  border-top: 1px solid var(--border);
}
.pin-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
}
.pin-sub {
  font-size: 0.66rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ══════════════════════════════════════════
   ⑧ TEACHERS — CARDS TRACK with serif name
══════════════════════════════════════════ */
#teachers {
  background: #fff;
}
.tc-outer {
  overflow: hidden;
  position: relative;
}
.tc-outer::before,
.tc-outer::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.tc-outer::before {
  left: 0;
  background: linear-gradient(90deg, #fff, transparent);
}
.tc-outer::after {
  right: 0;
  background: linear-gradient(-90deg, #fff, transparent);
}
.tc-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px 0 20px;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}
.tc-track::-webkit-scrollbar {
  display: none;
}

.tc-card {
  flex: 0 0 clamp(240px, 28vw, 272px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.tc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--sh-lg);
  background: #fff;
  border-color: rgba(37, 99, 235, 0.2);
}
.tc-photo {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.tc-icon {
  font-size: 5rem;
  transition: transform 0.4s ease;
}
.tc-card:hover .tc-icon {
  transform: scale(1.1);
}
.tc-hover-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 18, 0.8), transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
  display: flex;
  align-items: flex-end;
  padding: 14px;
}
.tc-card:hover .tc-hover-layer {
  opacity: 1;
}
.tc-socs {
  display: flex;
  gap: 5px;
}
.tc-soc {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.78rem;
  transition: all 0.2s;
}
.tc-soc:hover {
  background: var(--azure);
  border-color: var(--azure);
}
.tc-body {
  padding: 16px 18px 20px;
}
.tc-name {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 3px;
  font-style: italic;
}
.tc-role {
  font-size: 0.78rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}
.tc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.tc-chip {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: #fff;
  color: var(--body);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════
   ⑨ TESTIMONIALS — NEWSPAPER 3-COL
   Left: large dark featured, center + right: cards
══════════════════════════════════════════ */
#testimonials {
  background: var(--surface);
}
.testi-newspaper {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .testi-newspaper {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .testi-newspaper {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.testi-feature {
  background: var(--ink);
  border-radius: 22px;
  padding: clamp(22px, 4vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}
.testi-feature::before {
  content: '"';
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 18rem;
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: -40px;
  left: -10px;
  color: rgba(255, 255, 255, 0.03);
  pointer-events: none;
  font-style: italic;
}
.tf-stars {
  display: flex;
  gap: 3px;
  color: #fcd34d;
  font-size: 0.85rem;
  margin-bottom: 16px;
}
.tf-quote {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 22px;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.tf-author {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.tf-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.tf-name {
  font-weight: 700;
  color: #fff;
  font-size: 0.9rem;
}
.tf-meta {
  font-size: 0.73rem;
  color: rgba(255, 255, 255, 0.38);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  transition: all 0.3s;
}
.testi-card:hover {
  box-shadow: var(--sh-lg);
  border-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}
.tc-stars {
  display: flex;
  gap: 2px;
  color: #fcd34d;
  font-size: 0.82rem;
  margin-bottom: 12px;
}
.tc-quote {
  font-size: 0.88rem;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 18px;
}
.tc-author-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.tc-name {
  font-weight: 700;
  color: var(--ink);
  font-size: 0.88rem;
}
.tc-meta {
  font-size: 0.73rem;
  color: var(--muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ══════════════════════════════════════════
   ⑩ EVENTS — CENTER VERTICAL TIMELINE
   Alternating cards left and right of center line
══════════════════════════════════════════ */
#events {
  background: #fff;
}
.events-tl {
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}
.events-tl::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--azure), var(--plum));
  transform: translateX(-50%);
  border-radius: 1px;
  display: none;
}
@media (min-width: 768px) {
  .events-tl::before {
    display: block;
  }
}

.ev-row {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .ev-row {
    display: grid;
    grid-template-columns: 1fr 70px 1fr;
    align-items: center;
    margin-bottom: 28px;
  }
}

.ev-wrap {
  padding: 8px 0;
}
@media (min-width: 768px) {
  .ev-wrap.right {
    padding-left: 28px;
  }
  .ev-wrap.left {
    padding-right: 28px;
  }
}

.ev-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  transition: all 0.3s;
  width: 100%;
}
.ev-card:hover {
  box-shadow: var(--sh-md);
  border-color: rgba(37, 99, 235, 0.2);
  background: #fff;
  transform: scale(1.02);
}
.ev-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.ev-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  font-style: italic;
}
.ev-desc {
  font-size: 0.83rem;
  color: var(--body);
  line-height: 1.7;
  margin-bottom: 8px;
}
.ev-meta {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .ev-wrap.left .ev-meta,
  .ev-wrap.left .ev-title,
  .ev-wrap.left .ev-desc {
    text-align: right;
    justify-content: flex-end;
  }
}

.ev-dot-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.ev-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--azure);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .ev-dot-wrap {
    display: none;
  }
  .ev-wrap.left,
  .ev-wrap.right {
    text-align: left;
  }
  .ev-wrap.left .ev-meta,
  .ev-wrap.left .ev-title,
  .ev-wrap.left .ev-desc {
    text-align: left;
    justify-content: flex-start;
  }
}

/* ══════════════════════════════════════════
   ⑪ FAQ — Left column heading + right accordion
══════════════════════════════════════════ */
#faq {
  background: var(--surface);
  position: relative;
  overflow: hidden;
}
.faq-deco {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 16rem;
  font-weight: 900;
  color: rgba(13, 13, 18, 0.025);
  pointer-events: none;
  line-height: 1;
  font-style: italic;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: start;
}
@media (min-width: 960px) {
  .faq-grid {
    grid-template-columns: 2fr 3fr;
  }
}
.faq-left-q {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--ink);
  line-height: 1.2;
  font-style: italic;
  margin-bottom: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 0.28s,
    box-shadow 0.28s;
  margin-bottom: 8px;
}
.faq-item.open {
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.06),
    var(--sh-sm);
}
.faq-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 18px 20px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  background: none;
  border: none;
}
.faq-q {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
}
.faq-qic {
  color: var(--azure);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.faq-tog {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--body);
  font-size: 0.82rem;
  transition: all 0.28s;
  flex-shrink: 0;
}
.faq-item.open .faq-tog {
  background: var(--azure);
  color: #fff;
  border-color: var(--azure);
  transform: rotate(45deg);
}
.faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}
.faq-item.open .faq-ans {
  max-height: 260px;
}
.faq-ans p {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--body);
  line-height: 1.85;
}

/* ══════════════════════════════════════════
   ⑫ ADMISSION — DIAGONAL dark/white split
   Left dark: steps + phone | Right white: form
══════════════════════════════════════════ */
#admission {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.adm-right-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50%;
  background: #fff;
  display: none;
}
@media (min-width: 960px) {
  .adm-right-bg {
    display: block;
    clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
  }
}

.adm-layout {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 580px;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .adm-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.adm-left {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.adm-step-row {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
  align-items: flex-start;
}
.adm-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.adm-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.adm-step-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}
.adm-phone-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.adm-phone-ic {
  font-size: 1.5rem;
  color: var(--coral);
}
.adm-phone-num {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  font-style: italic;
}
.adm-phone-lbl {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 4px;
}

.adm-right {
  background: #fff;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.form-title-serif {
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 5px;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 8px;
}
.form-sub {
  font-size: 0.84rem;
  color: var(--body);
  margin-bottom: 22px;
}
.f-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--body);
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.f-label i {
  color: var(--azure);
}
.f-input {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 12px 15px;
  background: #fff;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  outline: none;
  transition:
    border-color 0.22s,
    box-shadow 0.22s;
}
.f-input:focus {
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
}
.f-input::placeholder {
  color: rgba(82, 82, 110, 0.35);
  font-weight: 400;
}
textarea.f-input {
  resize: vertical;
  min-height: 88px;
}
select.f-input option {
  background: #fff;
  color: var(--ink);
}
.fg2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 480px) {
  .fg2 {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════
   ⑬ CONTACT
══════════════════════════════════════════ */
#contact {
  background: var(--surface);
}
.ct-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  transition: all 0.3s;
}
.ct-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: rgba(37, 99, 235, 0.2);
}
.ct-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}
.ct-card h4 {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 7px;
  font-style: italic;
}
.ct-card p {
  font-size: 0.84rem;
  color: var(--body);
  line-height: 1.65;
}
.ct-form-box {
  max-width: 640px;
  margin-inline: auto;
  margin-top: 2.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--sh-md);
  position: relative;
  overflow: hidden;
}
.ct-form-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--g-azure);
}

/* ══════════════════════════════════════════
   ⑭ FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}
.footer-rule {
  height: 2px;
  background: var(--g-full);
  opacity: 0.7;
}
.footer-watermark {
  position: absolute;
  bottom: -40px;
  right: -30px;
  font-family: "Playfair Display", "Georgia", serif;
  font-size: 14rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  pointer-events: none;
  line-height: 1;
  font-style: italic;
}
.footer-col-title {
  font-family: "Playfair Display", "Georgia", serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-style: italic;
}
.ft-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.84rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.32);
  transition: color 0.2s;
}
.ft-link:hover {
  color: rgba(255, 255, 255, 0.8);
}
.ft-link i {
  font-size: 0.7rem;
  color: rgba(37, 99, 235, 0.5);
  transition: color 0.2s;
}
.ft-link:hover i {
  color: rgba(37, 99, 235, 0.9);
}
.ft-soc {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: all 0.22s;
}
.ft-soc:hover {
  background: var(--azure);
  border-color: var(--azure);
  color: #fff;
  transform: translateY(-2px);
}
.ft-ct-row {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 11px;
}
.ft-ct-row i {
  color: rgba(37, 99, 235, 0.7);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}
.ft-ct-row p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.6;
}
.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.32);
  line-height: 1.75;
  margin-block: 12px;
}

#btt {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--g-azure);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: var(--sh-azure);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition:
    opacity 0.3s,
    transform 0.3s;
}
#btt.on {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#btt:hover {
  transform: translateY(-4px) !important;
}

/* ── Responsive fixes ── */
@media (max-width: 479px) {
  .hero-right {
    height: 300px;
  }
  .hc-a {
    width: 90%;
    top: 0;
    left: 0;
  }
  .hc-b {
    width: 80%;
    top: 36px;
    right: 0;
  }
  .hc-c {
    display: none;
  }
  .about-collage {
    min-height: 340px;
  }
  .collage-main {
    width: 100%;
  }
  .collage-side {
    display: none;
  }
  .collage-quote {
    right: 0;
    position: relative;
    bottom: auto;
    margin-top: 12px;
  }
  .adm-right-bg {
    display: none;
  }
}
