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

    :root {
      --bg: #FDFCF8;
      --fg: #2C2C24;
      --primary: #5D7052;
      --primary-fg: #F3F4F1;
      --secondary: #C18C5D;
      --accent: #E6DCCD;
      --muted: #F0EBE5;
      --muted-fg: #78786C;
      --border: #DED8CF;
      --shadow-soft: 0 4px 20px -2px rgba(93, 112, 82, 0.15);
      --shadow-float: 0 10px 40px -10px rgba(193, 140, 93, 0.20);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Nunito', sans-serif;
      background: var(--bg);
      color: var(--fg);
      line-height: 1.7;
      font-size: 16px;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
      opacity: 0.035;
      mix-blend-mode: multiply;
      pointer-events: none;
      z-index: 9999;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Fraunces', serif;
      line-height: 1.2;
    }

    h1 {
      font-size: clamp(2.4rem, 5.5vw, 3.8rem);
      font-weight: 800;
    }

    h2 {
      font-size: clamp(1.9rem, 3.8vw, 2.8rem);
      font-weight: 700;
    }

    h3 {
      font-size: 1.15rem;
      font-weight: 600;
    }

    p {
      color: var(--muted-fg);
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    /* ── NAV ── */
    nav {
      position: sticky;
      top: 1rem;
      z-index: 100;
      padding: 0 1.5rem;
    }

    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      background: rgba(253, 252, 248, 0.78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 9999px;
      padding: 0.6rem 1.2rem 0.6rem 0.8rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-soft);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .nav-logo-icon {
      width: 38px;
      height: 38px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .nav-logo-icon svg {
      width: 20px;
      height: 20px;
      fill: white;
    }

    .nav-logo-text {
      font-family: 'Fraunces', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--fg);
    }

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

    .nav-links a {
      padding: 0.4rem 0.9rem;
      border-radius: 9999px;
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--muted-fg);
      transition: all 0.2s;
    }

    .nav-links a:hover,
    .nav-links a.active {
      background: rgba(93, 112, 82, 0.09);
      color: var(--primary);
    }

    .nav-cta {
      background: var(--primary) !important;
      color: var(--primary-fg) !important;
      padding: 0.5rem 1.2rem !important;
      border-radius: 9999px !important;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      box-shadow: var(--shadow-soft);
      transition: all 0.25s !important;
    }

    .nav-cta:hover {
      transform: scale(1.04);
      box-shadow: 0 6px 24px -4px rgba(93, 112, 82, 0.28) !important;
    }

    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0.4rem;
    }

    .hamburger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--fg);
      margin: 4px 0;
      border-radius: 2px;
    }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(253, 252, 248, 0.97);
      z-index: 200;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.5rem;
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 700;
      color: var(--fg);
      transition: color 0.2s;
    }

    .mobile-menu a:hover {
      color: var(--primary);
    }

    .mobile-close {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      background: var(--muted);
      border: none;
      cursor: pointer;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .nav-cta-desktop {
        display: none;
      }
    }

    /* ── SHARED ── */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.75rem 2rem;
      border-radius: 9999px;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      border: none;
      transition: all 0.25s;
      text-decoration: none;
      white-space: nowrap;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--primary-fg);
      box-shadow: var(--shadow-soft);
    }

    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 28px -4px rgba(93, 112, 82, 0.28);
    }

    .btn-outline {
      background: transparent;
      color: var(--secondary);
      border: 2px solid var(--secondary);
    }

    .btn-outline:hover {
      background: rgba(193, 140, 93, 0.08);
      transform: scale(1.04);
    }

    .btn-lg {
      padding: 0.95rem 2.4rem;
      font-size: 1.05rem;
    }

    .btn-white {
      background: white;
      color: var(--fg);
    }

    .btn-white:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    }

    .btn-ghost-white {
      background: transparent;
      color: white;
      border: 2px solid rgba(255, 255, 255, 0.35);
    }

    .btn-ghost-white:hover {
      background: rgba(255, 255, 255, 0.08);
      transform: scale(1.04);
    }

    section {
      padding: 5rem 1.5rem;
    }

    .section-tag {
      display: inline-block;
      background: rgba(193, 140, 93, 0.12);
      color: var(--secondary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .section-tag-green {
      display: inline-block;
      background: rgba(93, 112, 82, 0.1);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.82rem;
      color: var(--muted-fg);
      font-weight: 600;
      margin-bottom: 1.6rem;
    }

    .breadcrumb a {
      color: var(--primary);
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ══════════════════════════════
   HERO
══════════════════════════════ */
    .t-hero {
      padding: 5rem 1.5rem 5.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .th-blob1 {
      position: absolute;
      width: 550px;
      height: 550px;
      background: rgba(93, 112, 82, 0.09);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -160px;
      filter: blur(65px);
      pointer-events: none;
    }

    .th-blob2 {
      position: absolute;
      width: 420px;
      height: 420px;
      background: rgba(193, 140, 93, 0.1);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -130px;
      filter: blur(55px);
      pointer-events: none;
    }

    .th-inner {
      max-width: 780px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .th-inner h1 {
      color: var(--fg);
      margin-bottom: 1.2rem;
    }

    .th-inner h1 em {
      font-style: italic;
      color: var(--primary);
    }

    .th-desc {
      font-size: 1.07rem;
      max-width: 620px;
      margin: 0 auto 2rem;
      line-height: 1.85;
    }

    /* Aggregate rating display */
    .th-rating-block {
      display: inline-flex;
      align-items: center;
      gap: 1.2rem;
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.6);
      border-radius: 9999px;
      padding: 0.65rem 1.6rem;
      box-shadow: var(--shadow-soft);
      margin-bottom: 2rem;
    }

    .thb-stars {
      display: flex;
      gap: 0.15rem;
    }

    .thb-stars span {
      color: #F5A623;
      font-size: 1.1rem;
    }

    .thb-score {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 800;
      color: var(--fg);
    }

    .thb-sep {
      width: 1px;
      height: 24px;
      background: var(--border);
    }

    .thb-label {
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--muted-fg);
    }

    /* Platform logos row */
    .th-platforms {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1.2rem;
      flex-wrap: wrap;
    }

    .thp-label {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--muted-fg);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .thp-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--muted);
      border-radius: 9999px;
      padding: 0.35rem 0.9rem;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--fg);
    }

    .thp-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--primary);
    }

    /* ══════════════════════════════
   STATS BANNER
══════════════════════════════ */
    .stats-banner {
      background: var(--primary);
      padding: 3rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .sb-blob1 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -160px;
      right: -80px;
      filter: blur(50px);
      pointer-events: none;
    }

    .sb-blob2 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(193, 140, 93, 0.2);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -100px;
      left: -60px;
      filter: blur(45px);
      pointer-events: none;
    }

    .stats-banner-inner {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .sbi-item {}

    .sbi-num {
      font-family: 'Fraunces', serif;
      font-size: 2.8rem;
      font-weight: 800;
      color: white;
      display: block;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .sbi-label {
      font-size: 0.85rem;
      color: rgba(243, 244, 241, 0.78);
      font-weight: 600;
    }

    .sbi-sub {
      font-size: 0.72rem;
      color: rgba(243, 244, 241, 0.5);
      margin-top: 0.15rem;
    }

    @media (max-width: 700px) {
      .stats-banner-inner {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ══════════════════════════════
   FILTER TABS
══════════════════════════════ */
    .filter-wrap {
      background: var(--muted);
      padding: 1.2rem 1.5rem;
      position: sticky;
      top: 5rem;
      z-index: 80;
    }

    .filter-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      gap: 0.5rem;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .filter-inner::-webkit-scrollbar {
      display: none;
    }

    .ftab {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.42rem 1.05rem;
      border-radius: 9999px;
      font-size: 0.84rem;
      font-weight: 700;
      color: var(--muted-fg);
      white-space: nowrap;
      cursor: pointer;
      background: transparent;
      border: 1.5px solid transparent;
      transition: all 0.22s;
    }

    .ftab:hover {
      color: var(--primary);
      background: rgba(93, 112, 82, 0.07);
    }

    .ftab.active {
      background: white;
      color: var(--primary);
      border-color: rgba(93, 112, 82, 0.25);
      box-shadow: var(--shadow-soft);
    }

    .ftab-count {
      background: rgba(93, 112, 82, 0.12);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.1rem 0.45rem;
      font-size: 0.72rem;
    }

    .ftab.active .ftab-count {
      background: rgba(93, 112, 82, 0.15);
    }

    /* ══════════════════════════════
   FEATURED (LARGE) TESTIMONIALS
══════════════════════════════ */
    .featured-testimonials {
      padding: 5rem 1.5rem;
    }

    .ft-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .ft-header {
      margin-bottom: 3.5rem;
      text-align: center;
    }

    .ft-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .ft-header p {
      max-width: 560px;
      margin: 0 auto;
    }

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

    .tcard {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      padding: 1.8rem;
      box-shadow: var(--shadow-soft);
      transition: all 0.32s;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .tcard:nth-child(1) {
      border-radius: 3.5rem 2rem 2rem 2rem;
    }

    .tcard:nth-child(2) {
      border-radius: 2rem 3.5rem 2rem 2rem;
    }

    .tcard:nth-child(3) {
      border-radius: 2rem 2rem 3.5rem 2rem;
    }

    .tcard:nth-child(4) {
      border-radius: 2rem 2rem 2rem 3.5rem;
    }

    .tcard:nth-child(5) {
      border-radius: 3rem 2rem 2.5rem 2rem;
    }

    .tcard:nth-child(6) {
      border-radius: 2rem 3rem 2rem 2.5rem;
    }

    .tcard:nth-child(7) {
      border-radius: 2.5rem 2rem 3rem 2rem;
    }

    .tcard:nth-child(8) {
      border-radius: 2rem 2.5rem 2rem 3rem;
    }

    .tcard:nth-child(9) {
      border-radius: 3.5rem 2rem 2rem 2.5rem;
    }

    .tcard:nth-child(10) {
      border-radius: 2rem 3rem 2.5rem 2rem;
    }

    .tcard:nth-child(11) {
      border-radius: 2.5rem 2rem 2rem 3rem;
    }

    .tcard:nth-child(12) {
      border-radius: 2rem 2.5rem 3rem 2rem;
    }

    .tcard:hover {
      transform: rotate(0.6deg) translateY(-5px);
      box-shadow: var(--shadow-float);
    }

    .tcard.featured-large {
      grid-column: span 1;
    }

    /* Country badge */
    .tc-country-badge {
      position: absolute;
      top: 1.3rem;
      right: 1.3rem;
      display: flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(93, 112, 82, 0.08);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.22rem 0.7rem;
      font-size: 0.72rem;
      font-weight: 700;
    }

    .tc-stars {
      display: flex;
      gap: 0.15rem;
      margin-bottom: 1rem;
    }

    .tc-stars span {
      color: #F5A623;
      font-size: 0.88rem;
    }

    .tc-quote-icon {
      color: var(--accent);
      font-size: 2.2rem;
      font-family: 'Fraunces', serif;
      line-height: 1;
      margin-bottom: 0.3rem;
    }

    .tc-quote {
      font-size: 0.92rem;
      color: var(--muted-fg);
      line-height: 1.78;
      font-style: italic;
      flex: 1;
      margin-bottom: 1.4rem;
    }

    .tc-divider {
      height: 1px;
      background: rgba(222, 216, 207, 0.5);
      margin-bottom: 1.2rem;
    }

    .tc-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .tc-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 0.95rem;
      color: white;
      flex-shrink: 0;
    }

    .tc-name {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--fg);
      line-height: 1.2;
    }

    .tc-detail {
      font-size: 0.76rem;
      color: var(--muted-fg);
      margin-top: 0.1rem;
    }

    .tc-outcome {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      background: rgba(93, 112, 82, 0.08);
      color: var(--primary);
      border-radius: 9999px;
      padding: 0.2rem 0.65rem;
      font-size: 0.7rem;
      font-weight: 700;
      margin-top: 0.4rem;
    }

    .tc-outcome svg {
      width: 11px;
      height: 11px;
      fill: var(--primary);
    }

    /* ── LARGE featured card (spans 2 cols) ── */
    .tcard-hero {
      grid-column: span 2;
      background: var(--fg);
      border-radius: 3rem !important;
      border: none;
      padding: 2.5rem;
    }

    .tcard-hero:hover {
      transform: rotate(-0.4deg) translateY(-5px);
    }

    .tcard-hero .tc-stars span {
      color: #FFD166;
    }

    .tcard-hero .tc-quote {
      color: rgba(243, 244, 241, 0.82);
      font-size: 1.02rem;
      line-height: 1.85;
    }

    .tcard-hero .tc-quote-icon {
      color: rgba(255, 255, 255, 0.2);
    }

    .tcard-hero .tc-name {
      color: white;
    }

    .tcard-hero .tc-detail {
      color: rgba(243, 244, 241, 0.6);
    }

    .tcard-hero .tc-divider {
      background: rgba(255, 255, 255, 0.1);
    }

    .tcard-hero .tc-country-badge {
      background: rgba(255, 255, 255, 0.1);
      color: rgba(243, 244, 241, 0.85);
    }

    .tcard-hero .tc-outcome {
      background: rgba(157, 195, 138, 0.2);
      color: #9DC38A;
    }

    .tcard-hero .tc-outcome svg {
      fill: #9DC38A;
    }

    .tcard-hero-blob {
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(93, 112, 82, 0.2);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      bottom: -100px;
      right: -80px;
      filter: blur(50px);
      pointer-events: none;
    }

    /* Wide card (spans full row on its own row) */
    .tcard-wide {
      grid-column: span 1;
    }

    @media (max-width: 900px) {
      .featured-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .tcard-hero {
        grid-column: span 2;
      }
    }

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

      .tcard-hero {
        grid-column: span 1;
      }
    }

    /* ══════════════════════════════
   THEMED SECTIONS (Visa / Strategy)
══════════════════════════════ */
    .themed-section {
      padding: 5rem 1.5rem;
    }

    .themed-section.bg-muted {
      background: var(--muted);
    }

    .themed-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .themed-header {
      margin-bottom: 3rem;
    }

    .themed-header h2 {
      color: var(--fg);
      margin-bottom: 0.6rem;
    }

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

    @media (max-width: 900px) {
      .themed-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

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

    /* ══════════════════════════════
   ACCEPTED STUDENTS MAP SECTION
══════════════════════════════ */
    .accepted-section {
      padding: 5rem 1.5rem;
    }

    .acc-inner {
      max-width: 1100px;
      margin: 0 auto;
    }

    .acc-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .acc-header h2 {
      color: var(--fg);
      margin-bottom: 0.8rem;
    }

    .acc-header p {
      max-width: 540px;
      margin: 0 auto;
    }

    .acc-countries {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.2rem;
    }

    .acc-card {
      background: white;
      border: 1px solid rgba(222, 216, 207, 0.55);
      border-radius: 2rem;
      padding: 1.8rem 1.4rem;
      text-align: center;
      box-shadow: var(--shadow-soft);
      transition: all 0.3s;
      position: relative;
      overflow: hidden;
    }

    .acc-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-float);
    }

    .acc-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(93, 112, 82, 0.04), transparent);
      pointer-events: none;
    }

    .acc-flag {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .acc-country {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--fg);
      margin-bottom: 0.5rem;
    }

    .acc-num {
      font-family: 'Fraunces', serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      display: block;
      line-height: 1;
      margin-bottom: 0.2rem;
    }

    .acc-sublabel {
      font-size: 0.72rem;
      color: var(--muted-fg);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .acc-bar {
      height: 4px;
      background: rgba(222, 216, 207, 0.5);
      border-radius: 9999px;
      margin-top: 0.8rem;
      overflow: hidden;
    }

    .acc-bar-fill {
      height: 100%;
      background: var(--primary);
      border-radius: 9999px;
      transform-origin: left;
      transform: scaleX(0);
      transition: transform 1s ease;
    }

    @media (max-width: 900px) {
      .acc-countries {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 500px) {
      .acc-countries {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ══════════════════════════════
   VIDEO / QUOTE PULLOUT
══════════════════════════════ */
    .pullout-section {
      background: rgba(93, 112, 82, 0.05);
      padding: 5rem 1.5rem;
      position: relative;
      overflow: hidden;
    }

    .po-blob {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(93, 112, 82, 0.08);
      border-radius: 40% 60% 30% 70% / 50% 40% 60% 50%;
      top: -100px;
      right: -100px;
      filter: blur(55px);
      pointer-events: none;
    }

    .po-inner {
      max-width: 880px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 1;
    }

    .po-quote-mark {
      font-family: 'Fraunces', serif;
      font-size: 6rem;
      color: rgba(93, 112, 82, 0.12);
      line-height: 0.7;
      display: block;
      margin-bottom: 0.5rem;
    }

    .po-quote {
      font-family: 'Fraunces', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 600;
      color: var(--fg);
      line-height: 1.5;
      margin-bottom: 1.8rem;
      font-style: italic;
    }

    .po-author {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      justify-content: center;
    }

    .po-avatar {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #5D7052, #8AAD7B);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: white;
    }

    .po-name {
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--fg);
    }

    .po-detail {
      font-size: 0.8rem;
      color: var(--muted-fg);
    }

    .po-stars {
      display: flex;
      gap: 0.15rem;
      margin-top: 0.15rem;
    }

    .po-stars span {
      color: #F5A623;
      font-size: 0.85rem;
    }

    /* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
    .final-cta {
      background: var(--fg);
      padding: 6rem 1.5rem;
      position: relative;
      overflow: hidden;
      text-align: center;
    }

    .fcta-blob1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: rgba(93, 112, 82, 0.22);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      top: -200px;
      left: -120px;
      filter: blur(65px);
      pointer-events: none;
    }

    .fcta-blob2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(193, 140, 93, 0.15);
      border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
      bottom: -150px;
      right: -100px;
      filter: blur(60px);
      pointer-events: none;
    }

    .fcta-inner {
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .fcta-tag {
      display: inline-block;
      background: rgba(255, 255, 255, 0.12);
      color: rgba(243, 244, 241, 0.9);
      border-radius: 9999px;
      padding: 0.3rem 0.9rem;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 1.2rem;
    }

    .fcta-inner h2 {
      color: white;
      margin-bottom: 1rem;
      font-size: clamp(2rem, 4vw, 3.2rem);
    }

    .fcta-inner p {
      color: rgba(240, 235, 229, 0.73);
      font-size: 1.05rem;
      margin-bottom: 1.5rem;
    }

    /* Student avatars row */
    .fcta-faces {
      display: flex;
      justify-content: center;
      align-items: center;
      margin-bottom: 2rem;
    }

    .fcta-face {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 3px solid rgba(30, 30, 20, 0.8);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Fraunces', serif;
      font-weight: 800;
      font-size: 0.85rem;
      color: white;
      margin-left: -10px;
      flex-shrink: 0;
    }

    .fcta-face:first-child {
      margin-left: 0;
    }

    .fcta-face-more {
      background: rgba(255, 255, 255, 0.12);
      color: rgba(243, 244, 241, 0.8);
      font-family: 'Nunito', sans-serif;
      font-size: 0.7rem;
      font-weight: 700;
    }

    .fcta-face-label {
      margin-left: 0.8rem;
      font-size: 0.82rem;
      color: rgba(243, 244, 241, 0.65);
      font-weight: 600;
    }

    .fcta-btns {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* ══════════════════════════════
   FOOTER
══════════════════════════════ */
    footer {
      background: #1A1A14;
      color: rgba(240, 235, 229, 0.7);
      padding: 4rem 1.5rem 2rem;
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand-name {
      font-family: 'Fraunces', serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.8rem;
    }

    .footer-logo-icon {
      width: 32px;
      height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-logo-icon svg {
      width: 16px;
      height: 16px;
      fill: white;
    }

    .footer-desc {
      font-size: 0.85rem;
      line-height: 1.7;
      margin-bottom: 1.4rem;
    }

    .footer-socials {
      display: flex;
      gap: 0.6rem;
    }

    .footer-social {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.07);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(240, 235, 229, 0.7);
      transition: all 0.2s;
    }

    .footer-social:hover {
      background: var(--primary);
      color: white;
    }

    .footer-col-title {
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(240, 235, 229, 0.4);
      margin-bottom: 1rem;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links a {
      font-size: 0.88rem;
      color: rgba(240, 235, 229, 0.65);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: white;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.5rem;
      font-size: 0.85rem;
      margin-bottom: 0.6rem;
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      fill: var(--primary);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 0 auto;
      border-top: 1px solid rgba(255, 255, 255, 0.07);
      padding-top: 1.8rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-copy {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
    }

    .footer-bottom-links {
      display: flex;
      gap: 1.5rem;
    }

    .footer-bottom-links a {
      font-size: 0.82rem;
      color: rgba(240, 235, 229, 0.4);
      transition: color 0.2s;
    }

    .footer-bottom-links a:hover {
      color: rgba(240, 235, 229, 0.75);
    }

    @media (max-width: 900px) {
      .footer-inner {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 550px) {
      .footer-inner {
        grid-template-columns: 1fr;
      }
    }
