/* ==========================================================================
   Varun Vashishth — site stylesheet

   Photo slots: every image area declares its file first and a striped
   placeholder underneath, so a missing file degrades to the placeholder
   instead of a broken image. Drop the files listed in uploads/ to fill them.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Type
   -------------------------------------------------------------------------- */
:root {
  --font-display: 'Sora', var(--font-display), Helvetica, Arial, sans-serif;
  --font-body: 'Inter', 'IBM Plex Sans', Helvetica, Arial, sans-serif;
  --font-mono: 'JetBrains Mono', var(--font-mono), ui-monospace, monospace;
}

/* --------------------------------------------------------------------------
   Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f5f6fa;
  font-family: var(--font-body);
  color: #16203a;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.006em;
  text-wrap: pretty;
}
a { color: #2f5bff; text-decoration: none; }
a:hover { color: #1c3fd6; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.022em;
}
p { margin: 0; }
button { font: inherit; }
@keyframes vvfloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
::selection { background: #2f5bff; color: #fff; }

/* --------------------------------------------------------------------------
   Shared helpers
   -------------------------------------------------------------------------- */
.page { width: 100%; overflow-x: clip; }

.container { max-width: 1180px; margin: 0 auto; }

.arrow { font-family: var(--font-mono); }
.arrow--lg { font-family: var(--font-mono); font-size: 14px; }

.accent { color: #2f5bff; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8b95b0;
}
.eyebrow--center { text-align: center; }
.eyebrow--accent {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #2f5bff;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: #2f5bff; }

.section-title { margin-top: 10px; font-size: 29px; line-height: 1.2; font-weight: 700; }
.section-title--center { text-align: center; }

.section-cta { margin-top: 22px; text-align: center; }
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
}

/* Icon chips ------------------------------------------------------------ */
.icon-chip {
  display: flex;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: #eef2ff;
  color: #2f5bff;
  align-items: center;
  justify-content: center;
}
.icon-chip--round { border-radius: 50%; width: 34px; height: 34px; }

/* Buttons -------------------------------------------------------------- */
.btn-primary {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #2f5bff;
  color: #fff;
  padding: 13px 22px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 24px rgba(47, 91, 255, 0.32);
}
.btn-primary:hover { background: #1c3fd6; color: #fff; }

/* Outlined header CTA */
.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  /* Never absorb the free space the removed nav used to hold. */
  flex: 0 0 auto;
  justify-self: end;
  width: auto;
  padding: 13px 24px;
  border-radius: 11px;
  border: 1px solid rgba(86, 124, 255, 0.7);
  background: rgba(47, 91, 255, 0.10);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn-nav-cta:hover {
  background: #2f5bff;
  border-color: #2f5bff;
  color: #fff;
  box-shadow: 0 10px 26px rgba(47, 91, 255, 0.42);
}

.btn-ghost {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 13px 22px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }

.btn-play {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-family: var(--font-mono);
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
/* Opaque, and carries the hero's own radial gradient so the bar reads as one
   surface with the hero. The centre is pushed down by the header height
   (~88px) plus 18% of the hero, which is where the hero puts it. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: radial-gradient(1100px 620px at 68% 196px, #16265e 0%, #0a1130 46%, #060b1c 100%);
}
.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px 24px;
}

/* Brand lockup — images/logo.png (transparent PNG, V mark + wordmark) */
.brand { display: flex; align-items: center; color: #fff; }
.brand-logo {
  display: block;
  height: 52px;
  width: auto;
}

/* Primary navigation. Above 980px it is a plain row; below, it drops out of
   the bar into a panel toggled by the burger (see the media query). */
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-link {
  position: relative;
  color: #c3cfec;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: color .16s ease;
}
.nav-link:hover { color: #fff; }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: #4d7bff;
  transition: right .18s ease;
}
.nav-link:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
/* Burger only exists on small screens */
.nav-burger {
  display: none;
  width: 40px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
/* One bar element; the other two are its pseudo-elements. */
.burger-bars,
.burger-bars::before,
.burger-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #fff;
  transition: transform .18s ease, opacity .18s ease;
}
.burger-bars { position: relative; }
.burger-bars::before,
.burger-bars::after { content: ""; position: absolute; left: 0; }
.burger-bars::before { top: -6px; }
.burger-bars::after { top: 6px; }
.burger-bars--x { background: transparent; }
.burger-bars--x::before { transform: translateY(6px) rotate(45deg); }
.burger-bars--x::after { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 620px at 68% 18%, #16265e 0%, #0a1130 46%, #060b1c 100%);
  color: #fff;
  overflow: hidden;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}
/* Soft light behind the portrait */
.hero-glow {
  position: absolute;
  width: 620px;
  height: 620px;
  left: 16%;
  top: -40px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 107, 255, 0.28) 0%, rgba(63, 107, 255, 0) 62%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 44px 40px 50px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 84px;
  align-items: center;
}
.hero-copy {
  min-width: 0;
  order: 2;
  padding-left: 50px;
  transform: translateY(-40px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9bcf0;
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #4d7bff; }
/* The headline is a long one by design, so it is sized to break into three
   lines rather than five — the max-width does the breaking, not <br>. */
.hero-title {
  margin-top: 18px;
  max-width: 660px;
  font-size: 40px;
  line-height: 1.14;
  font-weight: 800;
  letter-spacing: -0.032em;
}
.hero-title-accent { color: #4d7bff; }
.hero-lede {
  margin-top: 15px;
  max-width: 500px;
  font-size: 14.5px;
  line-height: 1.65;
  color: #b6c3e4;
}
.hero-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual { position: relative; min-height: 450px; order: 1; align-self: end; }
/* images/hero.png — a transparent cut-out sits best on the dark hero. Pinned to
   the section's bottom edge (the -50px cancels .hero-inner's bottom padding) so
   the figure stands on the section instead of looking cropped mid-air. Keep the
   two numbers in step if the hero padding changes. */
.hero-portrait {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: -50px;
  transform: translateX(-50%);
  display: block;
  width: 452px;
  max-width: 100%;
  height: 522px;
  object-fit: contain;
  object-position: center bottom;
}

.float-card {
  position: absolute;
  padding: 12px 16px;
  border-radius: 13px;
  min-width: 146px;
  background: rgba(16, 24, 56, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 40px rgba(4, 8, 22, 0.45);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  animation: vvfloat 6s ease-in-out infinite;
}
.float-card--tl { left: 0; top: 14px; }
.float-card--tr { right: 0; top: 40px; animation-duration: 7.5s; }
.float-card--bl { left: 0; bottom: 88px; animation-duration: 6.8s; }
.float-card--br { right: 0; bottom: 62px; animation-duration: 8.2s; }
.float-value { font-family: var(--font-display); font-weight: 700; font-size: 20px; line-height: 1.15; }
/* Word badges ("Dr. Vivek Bindra", "Featured") next to the numeric ones */
.float-value--sm { font-size: 16px; }
.float-label { margin-top: 2px; font-size: 10.5px; color: #a4b3d8; line-height: 1.35; }
.float-glyph { color: #4d7bff; display: flex; }

/* Stacked "The" above "Print" — used by the Media panel's press list */
.logo-print-the {
  display: block;
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */
.about { background: #f5f6fa; padding: 48px 28px 44px; border-top: 1px solid #e6e9f2; }
.about-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(min(260px, 100%), 0.74fr) minmax(min(340px, 100%), 1.26fr);
  gap: 42px;
  align-items: start;
}
.about-media { position: relative; padding-bottom: 74px; }
.about-photo {
  height: 296px;
  border-radius: 18px;
  border: 1px solid #dfe3ef;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image:
    url("images/varun.jpeg"),
    repeating-linear-gradient(135deg, #e3e7f3 0 12px, #eef1f8 12px 24px);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover, auto;
}
.about-card {
  position: absolute;
  left: 18px;
  bottom: 0;
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(12, 20, 48, 0.1);
  padding: 16px 20px 14px;
  min-width: 218px;
}
.about-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.about-role { font-size: 11.5px; color: #7c869f; line-height: 1.5; margin-top: 3px; }

.about-title { margin-top: 12px; font-size: 30px; line-height: 1.2; font-weight: 700; }
.about-lede {
  margin-top: 13px;
  max-width: 610px;
  font-size: 14px;
  line-height: 1.75;
  color: #5c6580;
}

.trait-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(122px, 1fr));
  gap: 12px;
}
.trait-card {
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 13px;
  padding: 14px 13px;
  box-shadow: 0 6px 16px rgba(12, 20, 48, 0.04);
}
.trait-title { margin-top: 10px; font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.trait-sub { font-size: 11.5px; color: #7c869f; margin-top: 2px; }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.testimonials { background: #f5f6fa; padding: 0 28px 44px; }
.carousel { margin-top: 22px; display: flex; align-items: center; gap: 16px; }
.carousel-btn {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #dfe3ef;
  background: #fff;
  color: #46506b;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 15px;
  box-shadow: 0 6px 16px rgba(12, 20, 48, 0.07);
}
.carousel-btn:hover { background: #eef2ff; color: #2f5bff; }
.carousel-track {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
  gap: 16px;
}
.testimonial-card {
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 14px;
  padding: 18px 18px 17px;
  box-shadow: 0 6px 18px rgba(12, 20, 48, 0.05);
}
.testimonial-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 0.7;
  color: #c3cfef;
}
.testimonial-quote { margin-top: 11px; font-size: 12.5px; line-height: 1.7; color: #46506b; }
.testimonial-person { margin-top: 15px; display: flex; align-items: center; gap: 10px; }
/* Initial of the reviewer's name, not a photo */
.testimonial-avatar {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 1px solid #dde3f4;
  background: #eef2ff;
  color: #2f5bff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
}
.testimonial-name { font-family: var(--font-display); font-weight: 700; font-size: 13px; }
.testimonial-role { font-size: 11.5px; color: #7c869f; }

.carousel-dots { margin-top: 18px; display: flex; justify-content: center; gap: 7px; }
.carousel-dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { background: #f5f6fa; padding: 0 28px 46px; }
.faq-head {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}
.faq-head h2 { font-size: 29px; line-height: 1.2; font-weight: 700; }
.faq-head-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.faq-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(430px, 100%), 1fr));
  gap: 12px 16px;
  align-items: start;
}
.faq-item { background: #fff; border: 1px solid #e6e9f2; border-radius: 12px; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 15px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
.faq-marker { font-family: var(--font-mono); font-size: 12px; color: #2f5bff; }
.faq-q-text {
  flex: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #16203a;
}
.faq-sign { font-family: var(--font-mono); font-size: 16px; color: #98a2bd; }
.faq-a { padding: 0 15px 14px 39px; font-size: 12.5px; line-height: 1.7; color: #6b7592; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { background: #f5f6fa; padding: 0 28px 0; }
.contact-panel {
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 18px 18px 0 0;
  background: linear-gradient(105deg, #2242e0 0%, #2f5bff 45%, #6a4ce0 100%);
  padding: 34px 34px 38px;
  color: #fff;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.contact-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
}
.contact-copy { position: relative; }
.contact-title { font-size: 29px; line-height: 1.2; font-weight: 700; }
.contact-text { margin-top: 11px; max-width: 420px; font-size: 13.5px; line-height: 1.65; color: #dfe6ff; }
/* Quick-connect link beside the form, for anyone who would rather just chat. */
.contact-wa {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  transition: background .16s ease;
}
.contact-wa:hover { background: rgba(255, 255, 255, 0.22); color: #fff; }
.contact-side {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1c2a55;
  padding: 14px 22px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14.5px;
  box-shadow: 0 14px 30px rgba(6, 11, 28, 0.25);
}
.btn-white:hover { background: #eef2ff; color: #1c2a55; }

/* Booking form ---------------------------------------------------------- */
/* Sits on the blue contact panel, so the fields are translucent white
   rather than the light-surface inputs used elsewhere. */
.booking-card {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(6px);
  padding: 19px 19px 17px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.booking-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
}
.booking-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 11px;
}
.booking-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.booking-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #dfe6ff;
}
.booking-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: #16203a;
  font-family: var(--font-body);
  font-size: 13.5px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.booking-input::placeholder { color: #8b95b0; }
.booking-input:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.booking-select { appearance: auto; cursor: pointer; }
.booking-textarea { resize: vertical; min-height: 78px; line-height: 1.55; }
.booking-submit {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border: none;
  border-radius: 10px;
  background: #fff;
  color: #1c2a55;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(6, 11, 28, 0.22);
  transition: background .16s ease;
}
.booking-submit:hover { background: #eef2ff; }
.booking-note { font-size: 12px; color: #dfe6ff; text-align: center; }
.booking-note--ok { color: #fff; font-weight: 600; }
.booking-note--error { color: #ffd7d7; font-weight: 600; }

/* --------------------------------------------------------------------------
   YouTube shorts strip

   The track carries the ten cards twice and slides to -50%, so the second copy
   lands exactly where the first started and the loop reads as continuous.
   -------------------------------------------------------------------------- */
.shorts { background: #f5f6fa; padding: 52px 28px 58px; }
.shorts-panel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(140deg, #0a1130, #0d1638 50%, #060b1c);
  border-radius: 24px;
  padding: 38px 0 0;
  color: #fff;
  overflow: hidden;
  box-shadow: 0 26px 60px rgba(10, 17, 48, 0.18);
}
.shorts-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.16;
  pointer-events: none;
}
.shorts-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  right: -120px;
  top: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 48, 0.22) 0%, rgba(255, 59, 48, 0) 62%);
  pointer-events: none;
}

.shorts-head {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 26px 34px;
  flex-wrap: wrap;
  padding: 0 44px;
}
.shorts-head-copy { max-width: 520px; }
/* Stats and the channel link travel together, right-aligned under each other. */
.shorts-head-side {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}
.shorts-stats { display: flex; align-items: center; }
.shorts-stat { text-align: right; }
.shorts-stat + .shorts-stat {
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}
.shorts-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
}
.shorts-stat-label {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: #9fb0d8;
}
.shorts-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: #dbe3fb;
}
.shorts-badge svg { color: #ff3b30; }
.shorts-title {
  margin-top: 12px;
  font-size: 29px;
  line-height: 1.2;
  font-weight: 700;
}
.shorts-title-accent { color: #7f9bff; }
.shorts-meta { margin-top: 9px; font-size: 13px; color: #9fb0d8; }
.shorts-cta {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.05);
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #e6ecff;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.shorts-cta:hover {
  background: #fff;
  border-color: #fff;
  color: #0a1130;
}

.shorts-marquee {
  position: relative;
  margin-top: 32px;
  /* Vertical padding leaves room for the hover lift, which overflow would clip. */
  padding: 14px 0 22px;
  overflow: hidden;
  /* Fade the cards into the panel edges instead of cutting them off. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.shorts-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: shorts-slide 52s linear infinite;
}
.shorts-marquee:hover .shorts-track,
.shorts-track:focus-within,
.shorts-track--paused { animation-play-state: paused; }
@keyframes shorts-slide {
  from { transform: translateX(0); }
  /* Half the track is one full copy of the list, plus its trailing gap. */
  to { transform: translateX(calc(-50% - 9px)); }
}

.short-card {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  /* Striped placeholder shows through if a thumbnail fails to load. */
  background: repeating-linear-gradient(135deg, #131c3d 0 10px, #182252 10px 20px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.short-card:hover,
.short-card:focus-visible {
  transform: translateY(-7px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.52);
}
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.short-card:hover img { transform: scale(1.06); }
.short-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 28, 0.34) 0%, rgba(6, 11, 28, 0) 34%, rgba(6, 11, 28, 0.9) 100%);
}

/* Rank badge — these are the ten most watched, so the order is the point. */
.short-rank {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 7px;
  background: rgba(6, 11, 28, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.short-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 44px;
  height: 44px;
  transform: translate(-50%, -50%) scale(0.86);
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 3;
}
.short-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 13px solid #ff3b30;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}
.short-card:hover .short-play,
.short-card:focus-visible .short-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.short-foot {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 11px;
  z-index: 2;
  display: block;
}
.short-views {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 500;
  color: #fff;
}
/* Red dot reads as the YouTube cue without spelling out "views". */
.short-views::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ff3b30;
}
/* The title stays collapsed until hover, so the strip never looks text-heavy. */
.short-name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  font-size: 11.5px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  transition: max-height 0.3s ease, opacity 0.25s ease, margin-top 0.3s ease;
}
.short-card:hover .short-name,
.short-card:focus-visible .short-name {
  max-height: 34px;
  margin-top: 6px;
  opacity: 1;
}

/* Foot rail — sits on its own band so the strip has a bottom edge to rest on. */
.shorts-foot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin: 0 44px;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}
.shorts-hint {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  color: #9fb0d8;
}
.shorts-hint-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.16);
}
.shorts-sub {
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 600;
  color: #e6ecff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.shorts-sub:hover { color: #fff; border-color: #fff; }

@media (prefers-reduced-motion: reduce) {
  .shorts-track { animation: none; }
  .shorts-marquee { overflow-x: auto; }
  .short-card img { transition: none; }
}

/* --------------------------------------------------------------------------
   Instagram strip

   Two columns: a profile card carrying the handle and the follow ask, and a
   three-up grid of the most watched posts. Captions stay visible instead of
   hiding behind hover, so the grid reads the same on a phone.
   -------------------------------------------------------------------------- */
.ig { background: #f5f6fa; padding: 6px 28px 48px; }
.ig-inner {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.ig-profile {
  position: relative;
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 18px;
  padding: 22px 20px 20px;
  overflow: hidden;
}
/* Instagram's gradient, used once as a top edge rather than all over. */
.ig-profile::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #feda75, #fa7e1e 26%, #d62976 56%, #962fbf 78%, #4f5bd5);
}
.ig-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #feda75, #fa7e1e 26%, #d62976 56%, #962fbf 78%, #4f5bd5);
}
.ig-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #fff;
  background: repeating-linear-gradient(135deg, #eef1f8 0 8px, #e3e8f5 8px 16px);
}
.ig-handle {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  color: #16203a;
}
.ig-handle:hover { color: #d62976; }
.ig-handle-mark { display: flex; color: #d62976; }
.ig-name {
  margin-top: 7px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}
.ig-bio {
  margin-top: 8px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #5c6884;
}

.ig-stats {
  margin-top: 16px;
  display: flex;
  border-top: 1px solid #eceff7;
  border-bottom: 1px solid #eceff7;
  padding: 12px 0;
}
.ig-stat { flex: 1; }
.ig-stat + .ig-stat { border-left: 1px solid #eceff7; padding-left: 14px; }
.ig-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: #16203a;
}
.ig-stat-label {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b95b0;
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.ig-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  color: inherit;
  box-shadow: 0 10px 24px rgba(22, 32, 58, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ig-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(22, 32, 58, 0.18);
  color: inherit;
}
.ig-card-media {
  position: relative;
  display: block;
  /* A full 9:16 tile makes the section twice as tall as it needs to be. 4:5
     with the crop pinned to the top keeps the cover's headline, which is the
     part that sells the clip. */
  aspect-ratio: 4 / 5;
  overflow: hidden;
  /* Striped placeholder shows through if the image is missing. */
  background: repeating-linear-gradient(135deg, #eef1f8 0 10px, #e3e8f5 10px 20px);
}
.ig-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}
.ig-card:hover .ig-card-media img { transform: scale(1.05); }
/* Scrim keeps the glyph and the title legible over a bright cover. */
.ig-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 28, 0.28) 0%, rgba(6, 11, 28, 0) 26%, rgba(6, 11, 28, 0) 52%, rgba(6, 11, 28, 0.86) 100%);
}
/* The cover already carries the hook — this repeats it as real text, so the
   tile is readable to a screen reader and at a glance. */
.ig-card-title {
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 10px;
  z-index: 2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}
.ig-card-glyph {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 2;
  width: 24px;
  height: 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.9);
  color: #d62976;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ig-card:hover .ig-card-glyph { opacity: 1; transform: translateY(0); }

/* Play button — same cue as the YouTube strip, so the two read as one idea. */
.ig-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%) scale(0.86);
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.ig-card-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-left: 11px solid #d62976;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}
.ig-card:hover .ig-card-play,
.ig-card:focus-visible .ig-card-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* One way out of the section — straight to the profile. */
.ig-cta { margin-top: 16px; }
.ig-follow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 11px;
  background: linear-gradient(90deg, #fa7e1e, #d62976 52%, #962fbf);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(214, 41, 118, 0.22);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.ig-follow:hover {
  color: #fff;
  filter: brightness(1.07);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(214, 41, 118, 0.3);
}
.ig-note { margin-top: 12px; text-align: center; font-size: 11.5px; color: #8b95b0; }

@media (prefers-reduced-motion: reduce) {
  .ig-card, .ig-card-media img { transition: none; }
  .ig-card:hover { transform: none; }
}

/* Instagram's embed carries its own chrome — a little more height than a bare
   9:16 clip, or the player is cropped. */
.lightbox-frame--ig { aspect-ratio: 9 / 17; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer { background: #060b1c; color: #fff; padding: 38px 28px 0; }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(215px, 100%), 1fr));
  gap: 30px;
  padding-bottom: 28px;
}
/* Same lockup as the header — images/logo.png */
.footer-brand { display: inline-flex; align-items: center; }
.footer-logo { display: block; height: 44px; width: auto; }
.footer-about {
  margin-top: 16px;
  max-width: 290px;
  font-size: 12.5px;
  line-height: 1.7;
  color: #8d9abb;
}
.social-row { margin-top: 18px; display: flex; gap: 8px; }
.social {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #c3cfec;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social:hover { background: #2f5bff; color: #fff; }

.footer-heading { font-family: var(--font-display); font-weight: 700; font-size: 13.5px; }
.footer-links {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 14px;
}
.footer-link { font-size: 12.5px; color: #8d9abb; }
.footer-link:hover { color: #fff; }

.contact-list {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 12.5px;
  color: #8d9abb;
}
.contact-item { display: flex; align-items: center; gap: 9px; color: #8d9abb; }
a.contact-item:hover { color: #fff; }
.contact-icon { color: #4d7bff; display: flex; }

.footer-note { margin-top: 14px; font-size: 12.5px; line-height: 1.65; color: #8d9abb; }
.footer-cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #2f5bff;
  color: #fff;
  padding: 11px 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.footer-cta:hover { background: #1c3fd6; color: #fff; }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  color: #77839f;
}
/* Copyright line + agency credit — one row on desktop, stacks on a phone. */
.footer-copy { display: flex; flex-wrap: wrap; align-items: center; gap: 6px 14px; }
.footer-credit::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 11px;
  margin-right: 14px;
  vertical-align: -1px;
  background: rgba(255, 255, 255, 0.16);
}
.footer-credit-name { color: #b8c4e0; font-weight: 600; }

.footer-legal { display: flex; gap: 22px; }
.footer-legal a { color: #77839f; }
.footer-legal a:hover { color: #fff; }

/* Video lightbox — mounted only while a clip is open ---------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(4, 8, 22, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: vvfade .16s ease-out;
}
@keyframes vvfade { from { opacity: 0; } }
.lightbox-inner {
  position: relative;
  width: min(420px, 100%);
  animation: vvrise .2s ease-out;
}
@keyframes vvrise { from { opacity: 0; transform: translateY(10px); } }
/* Shorts are 9:16 — the height cap is what keeps the player on screen on a
   laptop, where a full-height 9:16 box would be taller than the viewport. */
.lightbox-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 78vh;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6);
}
.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease;
}
.lightbox-close:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox-caption {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
}
.lightbox-title {
  min-width: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.4;
  color: #fff;
}
.lightbox-link {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: #8fadff;
}
.lightbox-link:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Choose your path — three tall photo cards, one per audience
   -------------------------------------------------------------------------- */
.paths { background: #f5f6fa; padding: 46px 28px 40px; }
.path-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 22px;
}
.path-card {
  position: relative;
  min-height: 322px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: 0 8px 22px rgba(12, 20, 48, 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, auto;
  transition: transform .18s ease, box-shadow .18s ease;
}
.path-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(12, 20, 48, 0.17); color: #fff; }
/* The trailing gradient is the missing-file fallback for each photo. */
.path-grid > :nth-child(1) { background-image: url("images/digitalmarketing.png"), linear-gradient(160deg, #1b2a5e, #0a1130); }
.path-grid > :nth-child(2) { background-image: url("images/global1.png"), linear-gradient(160deg, #21306b, #0b1435); }
.path-grid > :nth-child(3) { background-image: url("images/timemanagement.png"), linear-gradient(160deg, #172553, #090f2b); }
.path-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 28, 0) 26%, rgba(6, 11, 28, 0.66) 58%, rgba(6, 11, 28, 0.96) 100%);
}
.path-body { position: relative; padding: 20px 20px 19px; }
.path-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(47, 91, 255, 0.28);
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #dbe4ff;
}
.path-title {
  margin-top: 11px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17.5px;
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.path-text { margin-top: 8px; font-size: 12px; line-height: 1.6; color: #cfd9f2; }
.path-cta {
  margin-top: 13px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  color: #8fadff;
}
.path-card:hover .path-cta { color: #fff; }

/* --------------------------------------------------------------------------
   Trusted by — dark band of press marks and the Vivek Bindra association
   -------------------------------------------------------------------------- */
.trusted { background: #f5f6fa; padding: 4px 28px 44px; }
.trusted-panel {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  background: linear-gradient(120deg, #0a1130, #101a44 55%, #0a1130);
  border-radius: 18px;
  padding: 22px 30px 24px;
  color: #fff;
}
.trusted-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
}
.trusted-label {
  position: relative;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #93a6d6;
}
.trusted-logos {
  position: relative;
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 13px 30px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #e6ebfa;
}
/* Each mark keeps the typeface of the publication it stands for. */
.media-logo--serif { font-family: Georgia, 'Times New Roman', serif; font-size: 17px; }
.media-logo--sm { font-weight: 600; font-size: 13.5px; }
.media-logo--print { font-family: Georgia, 'Times New Roman', serif; font-size: 16px; line-height: 1; }
.media-logo--yourstory { font-weight: 600; font-size: 12.5px; letter-spacing: 0.02em; }
.trusted-badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(127, 157, 255, 0.5);
  background: rgba(47, 91, 255, 0.16);
  font-size: 12px;
  font-weight: 600;
  color: #bcd0ff;
}
.trusted-badge--mark::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: #4d7bff;
}
.trusted-foot {
  position: relative;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  text-align: center;
  font-size: 11.5px;
  color: #8fa3d8;
}

/* --------------------------------------------------------------------------
   Audience sections — Corporates / Education / Society share this layout
   -------------------------------------------------------------------------- */
/* One light surface for the whole page, separated by hairlines: every card is
   white, so it always reads as a card. Contrast comes from the dark panels
   (trusted, CTA, footer) and the photo tiles, not from alternating sections. */
.audience { background: #f5f6fa; padding: 46px 28px; border-top: 1px solid #e6e9f2; }
.audience-head {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(min(290px, 100%), 0.94fr);
  gap: 34px;
  align-items: center;
}
/* Education alternates the photo to the left so the three sections don't
   read as the same block repeated. */
.audience-head--flip .audience-copy { order: 2; }
.audience-head--flip .audience-media { order: 1; }
.audience-copy { min-width: 0; }
.audience-title { margin-top: 11px; font-size: 28px; line-height: 1.22; font-weight: 700; }
.audience-lede {
  margin-top: 12px;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.7;
  color: #5c6580;
}

.problem-card {
  margin-top: 20px;
  background: #fff;
  border: 1px solid #e6e9f2;
  border-left: 3px solid #2f5bff;
  border-radius: 13px;
  padding: 15px 17px;
  box-shadow: 0 6px 18px rgba(12, 20, 48, 0.05);
}
.problem-head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8b95b0;
}
.problem-item {
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  line-height: 1.55;
  color: #46506b;
}
.problem-dot {
  flex: 0 0 auto;
  margin-top: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2f5bff;
}

/* Photo panel — same treatment as the path cards, wider crop. */
.audience-media {
  position: relative;
  overflow: hidden;
  min-height: 292px;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 20, 48, 0.12);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover, auto;
}
.audience-media--corp { background-image: url("images/growth.png"), linear-gradient(160deg, #1b2a5e, #0a1130); }
.audience-media--edu { background-image: url("images/global2.png"), linear-gradient(160deg, #21306b, #0b1435); }
.audience-media--soc { background-image: url("images/globsl1.png"), linear-gradient(160deg, #172553, #090f2b); }
.audience-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 11, 28, 0) 38%, rgba(6, 11, 28, 0.62) 68%, rgba(6, 11, 28, 0.94) 100%);
}
.audience-media-body { position: relative; padding: 20px 20px 19px; }
.audience-media-stat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -0.02em;
}
.audience-media-text { margin-top: 7px; font-size: 11.5px; line-height: 1.6; color: #cfd9f2; }

/* Four one-line program tiles under each audience block */
.program-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(224px, 100%), 1fr));
  gap: 13px;
}
.program-tile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 5px 12px;
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 14px;
  padding: 15px 16px 16px;
  box-shadow: 0 6px 18px rgba(12, 20, 48, 0.05);
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-tile:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(12, 20, 48, 0.09); }
/* The chip spans both rows so the copy block stays optically aligned. */
.program-tile .icon-chip { grid-row: span 2; width: 30px; height: 30px; border-radius: 9px; }
.program-tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.34;
}
.program-tile-text { font-size: 11.5px; line-height: 1.55; color: #7c869f; }

.audience-cta { margin-top: 24px; }
.audience-cta .btn-primary { display: inline-flex; }

/* --------------------------------------------------------------------------
   All programs — filter tabs over the full library
   -------------------------------------------------------------------------- */
.programs { background: #f5f6fa; padding: 46px 28px; border-top: 1px solid #e6e9f2; }
.programs-lede {
  margin-top: 11px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.65;
  color: #5c6580;
}
.filter-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.filter-tab {
  padding: 8px 17px;
  border-radius: 999px;
  border: 1px solid #dfe3ef;
  background: #fff;
  color: #46506b;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12.5px;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}
.filter-tab:hover { border-color: #b9c6f5; color: #2f5bff; }
.filter-tab--on,
.filter-tab--on:hover {
  background: #2f5bff;
  border-color: #2f5bff;
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 91, 255, 0.26);
}
.program-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(236px, 100%), 1fr));
  gap: 13px;
}
.program-card {
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(12, 20, 48, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.program-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(12, 20, 48, 0.09); }
.program-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #2f5bff;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.program-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.program-title { margin-top: 12px; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; line-height: 1.34; }
.program-text { margin-top: 7px; font-size: 11.5px; line-height: 1.6; color: #7c869f; }

/* --------------------------------------------------------------------------
   Sample curriculum — copy on the left, numbered modules on the right
   -------------------------------------------------------------------------- */
.curriculum { background: #f5f6fa; padding: 46px 28px; border-top: 1px solid #e6e9f2; }
.curriculum-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(min(320px, 100%), 1.12fr);
  gap: 36px;
  align-items: start;
}
.curriculum-copy { min-width: 0; }
.curriculum-title { margin-top: 11px; font-size: 27px; line-height: 1.22; font-weight: 700; }
.curriculum-lede { margin-top: 12px; font-size: 14px; line-height: 1.7; color: #5c6580; }
.curriculum-note {
  margin-top: 18px;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1px dashed #c9d2ea;
  background: #fff;
  font-size: 12px;
  color: #5c6580;
}
.curriculum-btn { margin-top: 18px; display: inline-flex; }

.module-list { display: flex; flex-direction: column; gap: 10px; }
.module-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border: 1px solid #e6e9f2;
  border-radius: 14px;
  padding: 15px 17px;
  box-shadow: 0 6px 18px rgba(12, 20, 48, 0.05);
}
/* Rail joining consecutive modules, so the four read as one track. */
.module-card::after {
  content: "";
  position: absolute;
  left: 34px;
  bottom: -10px;
  width: 1px;
  height: 10px;
  background: #d8dded;
}
.module-card:last-child::after { display: none; }
.module-card .icon-chip { flex: 0 0 auto; }
.module-body { min-width: 0; }
.module-num {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #98a2bd;
}
.module-title { margin-top: 4px; font-family: var(--font-display); font-weight: 700; font-size: 14.5px; }
.module-text { margin-top: 5px; font-size: 12px; line-height: 1.6; color: #7c869f; }

/* --------------------------------------------------------------------------
   Final CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: #f5f6fa; padding: 0 28px 38px; }
.cta-panel {
  position: relative;
  overflow: hidden;
  max-width: 1180px;
  margin: 0 auto;
  border-radius: 18px;
  background: linear-gradient(120deg, #0a1130, #101a44 55%, #0a1130);
  padding: 32px 30px 34px;
  color: #fff;
  text-align: center;
}
.cta-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.3;
}
.cta-title {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 700;
}
.cta-actions {
  position: relative;
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13.5px;
  transition: background .16s ease, border-color .16s ease;
}
.btn-outline-white:hover { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.5); color: #fff; }


/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .hero-title { font-size: 36px; }
  .audience-head { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  /* Stacked, so the flip would put the photo above the headline — undo it. */
  .audience-head--flip .audience-copy { order: 1; }
  .audience-head--flip .audience-media { order: 2; }
  .audience-media { min-height: 320px; }
  .curriculum-grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .about-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }

  /* The profile card and a three-up grid stop coexisting — stack them and let
     the card run wide with the avatar beside the copy. */
  .ig-inner { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .ig-profile {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 20px;
  }
  /* Avatar rides alongside the handle, name and bio; everything after it
     spans the full width. */
  .ig-avatar { grid-column: 1; grid-row: 1 / span 3; }
  .ig-handle { margin-top: 0; justify-self: start; }
  .ig-bio { max-width: 60ch; }
  .ig-stats, .ig-cta, .ig-note { grid-column: 1 / -1; }
  .ig-follow { padding-left: 26px; padding-right: 26px; }
  .ig-grid { gap: 16px; }
}

/* The link row stops fitting beside the logo and the CTA — fold it away. */
@media (max-width: 980px) {
  .nav-burger { display: flex; }
  .header-inner { flex-wrap: wrap; }
  .nav-links {
    display: none;
    order: 3;
    flex: 1 0 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin-top: 12px;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-links--open { display: flex; }
  .nav-link { padding: 13px 2px; font-size: 15px; }
  .nav-link::after { display: none; }
}

@media (max-width: 900px) {
  /* Stacked, so the 110px column gap becomes a 110px hole between the copy
     and the portrait — reset it. */
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 26px;
    padding-bottom: 60px;
  }
  .hero-glow { display: none; }
  .hero-copy { order: 1; padding-left: 0; transform: none; }
  /* The portrait is absolutely positioned, so the padding reserves its space.
     Keeping the two in lockstep lets the figure stand directly on the first
     badge card instead of floating a stray gap above it. */
  .hero-visual {
    order: 2;
    min-height: 0;
    --hero-portrait-h: 380px;
    padding-top: var(--hero-portrait-h);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 12px;
  }
  .hero-portrait {
    top: 0;
    bottom: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 340px;
    height: var(--hero-portrait-h);
    /* Bottom-aligned inside its box: no letterbox strip under the feet. */
    object-position: center bottom;
  }
  .float-card { position: static; animation: none; }
  /* The rail only makes sense while the modules sit in one column with room
     to spare; on a phone the cards close up anyway. */
  .module-card::after { display: none; }
}

@media (max-width: 720px) {
  .header-inner { gap: 10px; padding: 10px 16px; }
  .brand-logo { height: 36px; }
  .btn-nav-cta { padding: 9px 14px; font-size: 12.5px; gap: 7px; }

  .hero-inner { padding: 28px 24px 34px; gap: 22px; }
  .hero-title { font-size: 31px; }
  .hero-visual { --hero-portrait-h: 300px; gap: 10px; }
  .hero-portrait { max-width: 290px; }
  .float-card { min-width: 0; padding: 10px 13px; gap: 10px; }
  .float-value { font-size: 18px; }
  .float-value--sm { font-size: 14px; }

  /* Tall photo panels waste a phone screen — trim them to a readable band. */
  .path-card { min-height: 300px; }
  .audience-media { min-height: 250px; }
  .about-photo { height: 300px; }

  /* Arrows below the cards, not beside them, so the quote keeps full width. */
  .carousel { flex-wrap: wrap; justify-content: center; gap: 14px; }
  .carousel-track { order: -1; flex: 1 0 100%; }
  .carousel-btn { width: 38px; height: 38px; font-size: 14px; }

  .trusted-logos { gap: 14px 24px; font-size: 14px; }

  .ig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }

  /* The head's two columns stop fitting side by side — stack them, and let
     the stats sit on one line under the copy with the link at its end. */
  .shorts { padding: 38px 20px 44px; }
  .shorts-panel { padding-top: 30px; }
  .shorts-head { padding: 0 24px; }
  .shorts-title { font-size: 25px; }
  .shorts-head-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
  }
  .shorts-stat { text-align: left; }
  .shorts-stat + .shorts-stat { margin-left: 18px; padding-left: 18px; }
  .shorts-stat-value { font-size: 17px; }
  .shorts-marquee { margin-top: 22px; }
  .short-card { width: 168px; }
  .shorts-foot { margin: 0 24px; }
}

@media (max-width: 560px) {
  /* Sections all share the same 28px gutter — pull it in as one. */
  .about, .paths, .trusted, .audience, .programs, .curriculum,
  .cta-band, .testimonials, .faq, .contact, .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .header-inner, .hero-inner { padding-left: 18px; padding-right: 18px; }
  /* Phone: the panel is the whole screen width, so everything inside it comes
     down a size and the head loses its second column entirely. */
  .shorts { padding: 26px 14px 30px; }
  .shorts-panel { border-radius: 16px; padding-top: 22px; }
  .shorts-glow { width: 320px; height: 320px; right: -90px; top: -150px; }
  .shorts-head { padding: 0 16px; gap: 14px; }
  .shorts-badge { padding: 4px 10px 4px 8px; font-size: 10px; gap: 6px; }
  .shorts-badge svg { width: 13px; height: 13px; }
  .shorts-title { margin-top: 10px; font-size: 21px; }
  .shorts-meta { margin-top: 7px; font-size: 12px; }
  /* Stats read as a line of text rather than a three-column block. */
  .shorts-head-side {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .shorts-stat { text-align: left; }
  .shorts-stat + .shorts-stat { margin-left: 10px; padding-left: 10px; }
  .shorts-stat-value { font-size: 14px; }
  .shorts-stat-label { margin-top: 2px; font-size: 9px; letter-spacing: 0.02em; }
  /* Third stat is the one that pushes the row into a wrap — drop it. */
  .shorts-stat:nth-child(3) { display: none; }
  .shorts-cta { padding: 8px 13px; font-size: 11.5px; gap: 6px; }

  .shorts-marquee {
    margin-top: 18px;
    padding: 8px 0 14px;
    /* A softer fade — an 8% mask on a 360px screen eats half a card. */
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
  .short-card { width: 132px; border-radius: 12px; }
  .short-card:hover { transform: none; }
  .short-rank { top: 7px; left: 7px; min-width: 19px; height: 19px; font-size: 10px; }
  .short-play { display: none; }
  .short-foot { left: 9px; right: 9px; bottom: 9px; }
  .short-views { font-size: 10.5px; }
  /* No hover on touch — keep the title visible so cards still read. */
  .short-name { max-height: 30px; margin-top: 4px; opacity: 1; font-size: 10.5px; }
  .shorts-track { gap: 10px; animation-duration: 34s; }
  @keyframes shorts-slide {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - 5px)); }
  }

  .shorts-foot { margin: 0 16px; padding: 12px 0 16px; gap: 10px 14px; }
  .shorts-hint { font-size: 11px; }
  /* Hover advice means nothing on a touch screen. */
  .shorts-hint-more { display: none; }
  .shorts-sub { font-size: 11.5px; }

  .ig { padding: 4px 18px 42px; }
  /* Too narrow for the avatar to sit beside the copy — back to a stack. */
  .ig-profile { display: block; padding: 22px 18px 20px; }
  .ig-handle { margin-top: 14px; }
  .ig-grid { gap: 12px; }
  .ig-card { border-radius: 13px; }
  /* No hover on touch — keep the play cue on screen. */
  .ig-card-play { opacity: 1; transform: translate(-50%, -50%) scale(1); }

  /* Hero on a phone: the copy leads, the portrait is a supporting image
     rather than a half-screen figure, and the four badges close up into a
     2x2 block of small chips. */
  .hero-inner { padding: 20px 18px 26px; gap: 18px; }
  .hero-eyebrow {
    padding: 5px 11px;
    gap: 8px;
    font-size: 9.5px;
    letter-spacing: 0.07em;
  }
  .hero-eyebrow-dot { width: 5px; height: 5px; }
  .hero-title { margin-top: 14px; font-size: 27px; line-height: 1.18; }
  /* Phone: the headline carries the message on its own — the supporting
     paragraph is what makes the hero scroll. */
  .hero-lede { display: none; }
  .hero-visual { --hero-portrait-h: 310px; grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-portrait { max-width: 320px; }
  .float-card {
    min-width: 0;
    padding: 9px 11px;
    gap: 8px;
    border-radius: 11px;
    box-shadow: none;
  }
  .float-value { font-size: 16px; }
  .float-value--sm { font-size: 12.5px; }
  .float-label { font-size: 9px; line-height: 1.3; }
  .float-glyph svg { width: 13px; height: 13px; }

  .section-title, .faq-head h2, .contact-title,
  .audience-title, .curriculum-title { font-size: 24px; }
  .cta-title { font-size: 23px; }
  .about-title { font-size: 25px; }
  .about-lede, .audience-lede, .programs-lede { font-size: 14.5px; }

  /* One solid full-width action; the secondary one drops its pill and reads
     as a plain link, which is a lot less weight under the headline. */
  .hero-actions { margin-top: 16px; gap: 4px; }
  .hero-actions .btn-primary {
    flex: 1 0 100%;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 6px 16px rgba(47, 91, 255, 0.28);
  }
  .hero-actions .btn-ghost {
    flex: 1 0 100%;
    justify-content: center;
    padding: 8px 10px;
    border: 0;
    background: none;
    font-size: 12.5px;
    color: #b6c3e4;
  }
  .btn-play { width: 17px; height: 17px; font-size: 8.5px; }
  .audience-cta .btn-primary,
  .curriculum-btn { width: 100%; justify-content: center; }
  .cta-actions .btn-white,
  .cta-actions .btn-outline-white { flex: 1 0 100%; justify-content: center; }

  .contact-panel { padding: 28px 18px 32px; border-radius: 16px 16px 0 0; }
  .trusted-panel, .cta-panel { padding: 24px 18px 26px; }

  /* Proposal form: tighter rows, shorter controls. */
  .booking-card { padding: 16px 14px 14px; gap: 10px; border-radius: 14px; }
  .booking-head { font-size: 16px; }
  .booking-row { gap: 10px; }
  .booking-field { gap: 4px; }
  .booking-label { font-size: 10.5px; }
  .booking-input { padding: 9px 11px; font-size: 13.5px; border-radius: 9px; }
  .booking-submit { margin-top: 2px; padding: 12px 18px; font-size: 13.5px; }
  .booking-note { font-size: 11px; }

  .about-media { padding-bottom: 64px; }
  .about-photo { height: 270px; }
  .about-card { left: 12px; right: 12px; min-width: 0; padding: 14px 16px 12px; }

  .path-card { min-height: 272px; }
  .path-body { padding: 18px 16px 16px; }
  .path-title { font-size: 16.5px; }

  .faq-a { padding-left: 16px; }
  .footer-bottom { justify-content: flex-start; gap: 10px; }

  /* Player fills the phone screen; the caption drops under it. */
  .lightbox { padding: 16px; }
  .lightbox-inner { width: 100%; }
  .lightbox-frame { max-height: 68vh; border-radius: 14px; }
  .lightbox-close { top: -42px; width: 34px; height: 34px; }
  .lightbox-caption { margin-top: 12px; }

  /* The divider reads as clutter once the credit wraps to its own line. */
  .footer-copy { gap: 4px; }
  .footer-credit { display: block; width: 100%; }
  .footer-credit::before { display: none; }
}

@media (max-width: 420px) {
  .header-inner { gap: 8px; padding: 9px 14px; }
  .brand-logo { height: 32px; }
  .btn-nav-cta { padding: 8px 11px; font-size: 11.5px; }
  .btn-nav-cta .arrow--lg { display: none; }

  .booking-input { font-size: 13px; }
  .booking-row { grid-template-columns: minmax(0, 1fr); }

  .hero-title { font-size: 25px; }
  .hero-visual { --hero-portrait-h: 275px; }
  .hero-portrait { max-width: 285px; }
  .float-card { padding: 8px 10px; gap: 6px; }
  .float-value { font-size: 15px; }
  .float-value--sm { font-size: 11.5px; }
  .float-label { font-size: 8.5px; }

  .section-title, .faq-head h2, .contact-title,
  .audience-title, .curriculum-title { font-size: 23px; }
  .about-title { font-size: 25px; }
  .about-photo { height: 240px; }
  .filter-tab { padding: 9px 15px; font-size: 12.5px; }
}
