:root {
      /* Harmonized Variables */
      --blue: #6dc4e2;
      --blue-rgb: 109, 196, 226;
      --blue-dark: #4aadcc;
      --blue-dark-rgb: 74, 173, 204;
      --blue-light: #d6f0f9;
      --blue-light-rgb: 214, 240, 249;
      --red: #e85554;
      --red-rgb: 232, 85, 84;
      --red-dark: #cc3b3a;
      --red-dark-rgb: 204, 59, 58;
      --red-light: #fde8e8;
      --red-light-rgb: 253, 232, 232;
      --off-white: #faf8f4;
      --off-white-rgb: 250, 248, 244;
      --cream: #f4f0e8;
      --cream-rgb: 244, 240, 232;
      --ink: #1a1a2e;
      --ink-rgb: 26, 26, 46;
      --ink-soft: #3d3d5c;
      --ink-soft-rgb: 61, 61, 92;
      --ink-dark: #2a2a4a;
      --ink-dark-rgb: 42, 42, 74;
      --muted: #8888aa;
      --muted-rgb: 136, 136, 170;
      --yellow: #f5c542;
      --yellow-rgb: 245, 197, 66;
      --white: #ffffff;
      --white-rgb: 255, 255, 255;
      --black: #000000;
      --black-rgb: 0, 0, 0;

      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-xl: 48px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    
/* Global Fonts & Elements */
h1, h2, h3, h4, h5, h6, .nav-bubble span, .nav-wordmark, .stat-num, .hcard-accent .av, .marquee-item, .vl-stat-n {
  font-family: 'Bricolage Grotesque', sans-serif;
}
body {
      font-family: 'DM Sans', sans-serif;
      background: var(--off-white);
      color: var(--ink);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 5%;
      min-height: 72px;
      background: rgba(var(--off-white-rgb), 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1.5px solid rgba(var(--blue-rgb), 0.18);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .nav-bubble {
      background: var(--red);
      border-radius: 10px 10px 10px 2px;
      padding: 6px 12px 7px;
      position: relative;
    }

    .nav-bubble::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 10px;
      width: 0;
      height: 0;
      border-left: 7px solid transparent;
      border-top: 7px solid var(--red);
    }

    .nav-bubble span {
      font-weight: 800;
      font-size: 14px;
      color: white;
    }

    .nav-wordmark {
      font-weight: 700;
      font-size: 19px;
      color: var(--blue-dark);
      letter-spacing: -0.5px;
    }

    .nav-wordmark em {
      font-style: normal;
      color: var(--ink);
    }

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

    .nav-links a {
      text-decoration: none;
      color: var(--ink-soft);
      font-size: 15px;
      transition: color .2s;
    }

    .nav-links a:hover {
      color: var(--blue-dark);
    }

    .nav-cta {
      background: var(--red) !important;
      color: white !important;
      padding: 9px 22px;
      border-radius: 50px;
      font-weight: 500 !important;
      transition: background .2s !important;
    }

    .nav-cta:hover {
      background: var(--red-dark) !important;
    }

    /* HERO */
    #home {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      padding-top: 100px;
      position: relative;
      overflow: hidden;
    }

    .blob1 {
      position: absolute;
      top: -100px;
      right: -120px;
      width: 650px;
      height: 650px;
      background: radial-gradient(circle at 40% 40%, var(--blue-light) 0%, transparent 68%);
      border-radius: 50%;
      pointer-events: none;
    }

    .blob2 {
      position: absolute;
      bottom: -80px;
      left: -80px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, var(--red-light) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 5% 80px 8%;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cream);
      border: 1.5px solid rgba(var(--blue-rgb), 0.35);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--blue-dark);
      margin-bottom: 28px;
      width: fit-content;
      animation: fadeUp .5s ease both;
    }

    .badge-dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1)
      }

      50% {
        opacity: .6;
        transform: scale(.8)
      }
    }

    h1.hero-title {
      font-weight: 800;
      font-size: clamp(40px, 5vw, 66px);
      line-height: 1.05;
      letter-spacing: -2.5px;
      color: var(--ink);
      margin-bottom: 24px;
      animation: fadeUp .6s .1s ease both;
    }

    .pill-blue {
      display: inline-block;
      background: var(--blue);
      color: white;
      border-radius: 50px;
      padding: 2px 22px 5px;
    }

    .hero-sub {
      font-size: 18px;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 480px;
      margin-bottom: 40px;
      font-weight: 300;
      animation: fadeUp .6s .2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      animation: fadeUp .6s .3s ease both;
    }

    
.btn {
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s, transform .15s;
}
.btn-primary {
  background: var(--red);
  color: white;
  border: none;
}

    .btn-primary:hover {
      background: var(--red-dark);
      transform: translateY(-2px);
    }

    .btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(var(--ink-rgb), 0.2);
}

    .btn-secondary:hover {
      border-color: var(--blue-dark);
      color: var(--blue-dark);
      transform: translateY(-2px);
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 52px;
      flex-wrap: wrap;
      animation: fadeUp .6s .4s ease both;
    }

    .stat-num {
      font-weight: 800;
      font-size: 28px;
      color: var(--ink);
      letter-spacing: -1px;
    }

    .stat-num span {
      color: var(--red);
    }

    .stat-label {
      font-size: 13px;
      color: var(--muted);
    }

    .hero-right {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 80px 8% 80px 4%;
      position: relative;
      z-index: 2;
      animation: fadeUp .8s .2s ease both;
    }

    .card-stack {
      position: relative;
      width: 340px;
      height: 480px;
    }

    .hcard {
      position: absolute;
      background: white;
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: 0 8px 40px rgba(var(--blue-rgb), 0.16), 0 2px 8px rgba(var(--black-rgb), 0.05);
    }

    .hcard-back {
      width: 280px;
      top: 15px;
      left: 40px;
      background: var(--blue);
      transform: rotate(5deg);
      opacity: .55;
      z-index: 1;
    }

    .hcard-main {
      width: 310px;
      top: 36px;
      left: 15px;
      z-index: 3;
      border: 1.5px solid rgba(var(--blue-rgb), 0.2);
    }

    .hcard-accent {
      width: 270px;
      top: 290px;
      left: 50px;
      z-index: 4;
      background: var(--cream);
      border: 1.5px solid rgba(var(--red-rgb), 0.18);
      padding: 18px 22px;
    }

    .hcard-icon {
      width: 46px;
      height: 46px;
      background: var(--blue-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 14px;
    }

    .hcard-main h3 {
      font-weight: 700;
      font-size: 17px;
      margin-bottom: 8px;
    }

    .hcard-main p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.55;
    }

    .hcard-chip {
      display: inline-flex;
      align-items: center;
      background: var(--blue-light);
      color: var(--blue-dark);
      border-radius: 50px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 500;
      margin-top: 14px;
    }

    .hcard-accent .al {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
      margin-bottom: 4px;
    }

    .hcard-accent .av {
      font-weight: 700;
      font-size: 18px;
      color: var(--red);
    }

    /* MARQUEE */
    .marquee-band {
      background: var(--blue);
      padding: 13px 0;
      overflow: hidden;
    }

    .marquee-track {
      display: flex;
      gap: 44px;
      animation: marquee 24s linear infinite;
      white-space: nowrap;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0)
      }

      100% {
        transform: translateX(-50%)
      }
    }

    .marquee-item {
      display: flex;
      align-items: center;
      gap: 14px;
      font-weight: 600;
      font-size: 14px;
      color: white;
    }

    .msep {
      width: 5px;
      height: 5px;
      background: rgba(var(--white-rgb), .45);
      border-radius: 50%;
    }

    /* SHARED */
    section {
      padding: 100px 8%;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 16px;
    }

    .section-tag::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
    }

    .section-title {
      font-weight: 800;
      font-size: clamp(32px, 4vw, 52px);
      letter-spacing: -1.5px;
      line-height: 1.1;
      color: var(--ink);
      margin-bottom: 20px;
    }

    .section-title .ar {
      color: var(--red);
    }

    .section-title .ab {
      color: var(--blue-dark);
    }

    .section-lead {
      font-size: 17px;
      color: var(--ink-soft);
      line-height: 1.7;
      max-width: 580px;
      font-weight: 300;
    }

    /* ABOUT */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-cards {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .about-card {
      background: white;
      border-radius: var(--radius-md);
      padding: 22px 26px;
      display: flex;
      align-items: center;
      gap: 18px;
      box-shadow: 0 4px 20px rgba(var(--black-rgb), 0.05);
      border: 1.5px solid rgba(var(--blue-rgb), 0.14);
      transition: transform .25s, box-shadow .25s;
    }

    .about-card:hover {
      transform: translateX(6px);
      box-shadow: 0 8px 32px rgba(var(--blue-rgb), 0.2);
    }

    .about-card:nth-child(2) {
      margin-left: 24px;
    }

    .about-card:nth-child(3) {
      margin-left: 48px;
    }

    .about-card-icon {
      font-size: 28px;
    }

    .about-card h4 {
      font-weight: 700;
      font-size: 15px;
      margin-bottom: 3px;
    }

    .about-card p {
      font-size: 13px;
      color: var(--muted);
    }

    .about-text {
      font-size: 16px;
      color: var(--ink-soft);
      line-height: 1.8;
      margin-bottom: 18px;
      font-weight: 300;
    }

    .about-values {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 28px;
    }

    .value-chip {
      background: var(--cream);
      border: 1.5px solid rgba(var(--blue-rgb), 0.25);
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-soft);
    }

    /* PROGRAMMES */
    #programmes {
      background: var(--cream);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }

    .prog-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .prog-header .section-tag {
      justify-content: center;
    }

    .prog-header .section-lead {
      margin: 0 auto;
      text-align: center;
    }

    .prog-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .prog-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 30px 26px;
      box-shadow: inset 0 0 0 1.5px transparent;
      transition: transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }

    .prog-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--blue);
      border-radius: 4px 4px 0 0;
    }

    .prog-card.rt::before {
      background: var(--red);
    }

    .prog-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 48px rgba(var(--blue-rgb), 0.14), inset 0 0 0 1.5px rgba(var(--blue-rgb), 0.3);
    }

    .prog-icon {
      width: 50px;
      height: 50px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 18px;
    }

    .bl {
      background: var(--blue-light);
    }

    .rl {
      background: var(--red-light);
    }

    .cr {
      background: var(--cream);
    }

    .prog-card h3 {
      font-weight: 700;
      font-size: 19px;
      margin-bottom: 10px;
    }

    .prog-card p {
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 18px;
    }

    .prog-meta {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .prog-meta-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
    }

    .prog-free-banner {
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
      border-radius: var(--radius-lg);
      padding: 36px 40px;
      margin-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(var(--blue-rgb), 0.15);
    }
    
    .prog-free-banner::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: rgba(var(--white-rgb), .25);
    }

    .fb-left {
      display: flex;
      align-items: center;
      gap: 20px;
      flex: 1;
    }

    .fb-text h3 {
      color: white;
      font-weight: 700;
      font-size: 20px;
      margin-bottom: 6px;
    }

    .fb-text p {
      color: rgba(var(--white-rgb), .85);
      font-size: 14px;
      line-height: 1.5;
    }

    .fb-meta {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    
    .fb-meta .prog-meta-item {
      color: rgba(var(--white-rgb), .85);
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
    }

    .fb-meta .prog-meta-item span:first-child {
      color: white;
    }

    @media (max-width: 900px) {
      .prog-free-banner {
        flex-direction: column;
        align-items: flex-start;
      }
      .fb-left {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .free-badge {
      display: inline-block;
      background: rgba(var(--white-rgb), 0.2);
      color: white;
      font-size: 11px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 12px;
    }

    /* VOICE LAB */
    #voicelab {
      background: var(--ink);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #voicelab::before {
      content: '';
      position: absolute;
      top: -80px;
      right: -80px;
      width: 480px;
      height: 480px;
      background: radial-gradient(circle, rgba(var(--blue-rgb), 0.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    #voicelab::after {
      content: '';
      position: absolute;
      bottom: -60px;
      left: 30%;
      width: 360px;
      height: 360px;
      background: radial-gradient(circle, rgba(var(--red-rgb), 0.07) 0%, transparent 70%);
      border-radius: 50%;
    }

    .vl-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    #voicelab .section-tag {
      color: var(--blue);
    }

    #voicelab .section-tag::before {
      background: var(--blue);
    }

    #voicelab .section-title {
      color: white;
    }

    .vl-text {
      font-size: 16px;
      color: rgba(var(--white-rgb), .65);
      line-height: 1.8;
      margin-bottom: 16px;
      font-weight: 300;
    }

    .vl-features {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 28px;
    }

    .vl-feat {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      background: rgba(var(--white-rgb), .04);
      border: 1px solid rgba(var(--white-rgb), .07);
      border-radius: var(--radius-sm);
      padding: 13px 16px;
      transition: background .2s;
    }

    .vl-feat:hover {
      background: rgba(var(--blue-rgb), 0.08);
    }

    .vl-feat-icon {
      font-size: 17px;
      flex-shrink: 0;
      padding-top: 2px;
    }

    .vl-feat-text {
      font-size: 14px;
      color: rgba(var(--white-rgb), .75);
      line-height: 1.5;
    }

    .vl-box {
      background: rgba(var(--white-rgb), .04);
      border: 1px solid rgba(var(--blue-rgb), 0.2);
      border-radius: var(--radius-lg);
      padding: 34px;
    }

    .vl-box-title {
      font-weight: 700;
      font-size: 22px;
      color: var(--blue);
      margin-bottom: 4px;
    }

    .vl-box-sub {
      font-size: 13px;
      color: rgba(var(--white-rgb), .35);
      margin-bottom: 26px;
    }

    .vl-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 26px;
    }

    .vl-stat {
      background: rgba(var(--white-rgb), .05);
      border-radius: var(--radius-sm);
      padding: 16px;
      text-align: center;
    }

    .vl-stat-n {
      font-weight: 800;
      font-size: 28px;
      color: white;
      letter-spacing: -1px;
    }

    .vl-stat-n span {
      color: var(--blue);
    }

    .vl-stat-l {
      font-size: 12px;
      color: rgba(var(--white-rgb), .35);
      margin-top: 2px;
    }

    .vl-delivers {
      border-top: 1px solid rgba(var(--white-rgb), .08);
      padding-top: 22px;
    }

    .vl-delivers h4 {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(var(--white-rgb), .35);
      margin-bottom: 14px;
    }

    .vl-deliver-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 0;
      font-size: 14px;
      color: rgba(var(--white-rgb), .7);
    }

    .vl-check {
      width: 20px;
      height: 20px;
      background: rgba(var(--blue-rgb), .12);
      border: 1px solid var(--blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      color: var(--blue);
      flex-shrink: 0;
    }

    .vl-cta {
      text-align: center;
      margin-top: 22px;
    }

    /* REVIEWS */
    #reviews {
      background: var(--off-white);
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 52px;
    }

    .reviews-header .section-tag {
      justify-content: center;
    }

    .reviews-header .section-lead {
      margin: 0 auto;
      text-align: center;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
    }

    .review-card {
      background: white;
      border-radius: var(--radius-lg);
      padding: 30px;
      border: 1.5px solid rgba(var(--blue-rgb), 0.1);
      position: relative;
    }

    .review-card::before {
      content: '\201C';
      position: absolute;
      top: 14px;
      right: 22px;
      font-size: 80px;
      color: var(--blue-light);
      line-height: 1;
      pointer-events: none;
    }

    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
      color: var(--yellow);
      font-size: 14px;
    }

    .review-text {
      font-size: 15px;
      color: var(--ink-soft);
      line-height: 1.75;
      font-style: italic;
      font-weight: 300;
      margin-bottom: 20px;
    }

    .reviewer {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .reviewer-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
    }

    .av-b {
      background: var(--blue-light);
      color: var(--blue-dark);
    }

    .av-r {
      background: var(--red-light);
      color: var(--red);
    }

    .reviewer-name {
      font-weight: 600;
      font-size: 15px;
    }

    .reviewer-label {
      font-size: 12px;
      color: var(--muted);
    }

    /* CTA */
    #booking {
      background: var(--off-white);
      padding: 80px 8% 120px;
      text-align: center;
    }

    .cta-box {
      background: linear-gradient(135deg, var(--ink) 0%, var(--ink-dark) 100%);
      border-radius: var(--radius-xl);
      padding: 80px 60px;
      position: relative;
      overflow: hidden;
      max-width: 900px;
      margin: 0 auto;
    }

    .cta-box::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(var(--blue-rgb), .18) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-box::after {
      content: '';
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(var(--red-rgb), .13) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(var(--blue-rgb), .14);
      border: 1px solid rgba(var(--blue-rgb), .28);
      border-radius: 50px;
      padding: 6px 16px;
      font-size: 13px;
      font-weight: 500;
      color: var(--blue);
      margin-bottom: 22px;
      position: relative;
      z-index: 2;
    }

    .cta-title {
      font-weight: 800;
      font-size: clamp(28px, 4vw, 46px);
      letter-spacing: -1.5px;
      color: white;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .cta-sub {
      font-size: 17px;
      color: rgba(var(--white-rgb), .58);
      margin-bottom: 40px;
      line-height: 1.65;
      font-weight: 300;
      position: relative;
      z-index: 2;
    }

    .cta-actions {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative;
      z-index: 2;
    }

    .btn-white {
  background: white;
  color: var(--blue-dark);
  border: none;
}

    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(var(--black-rgb), .2);
    }

    .btn-ghost {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(var(--white-rgb), .28);
}

    .btn-ghost:hover {
      border-color: white;
      transform: translateY(-2px);
    }

    /* Google Calendar Button Override */
    .cta-actions button {
      background: transparent !important;
      color: white !important;
      border: 1.5px solid rgba(255, 255, 255, 0.28) !important;
      padding: 14px 30px !important;
      border-radius: 50px !important;
      font-size: 16px !important;
      font-weight: 500 !important;
      font-family: inherit !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
      cursor: pointer !important;
      transition: all .2s, transform .15s !important;
      height: auto !important;
    }

    .cta-actions button:hover {
      border-color: white !important;
      transform: translateY(-2px) !important;
    }

    /* FOOTER */
    footer {
      background: var(--ink);
      padding: 36px 8%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-logo {
      font-weight: 700;
      font-size: 17px;
      color: white;
    }

    .footer-logo em {
      font-style: normal;
      color: var(--blue);
    }

    .footer-copy {
      font-size: 13px;
      color: rgba(var(--white-rgb), .38);
    }

    .footer-address {
      font-size: 13px;
      color: rgba(var(--white-rgb), .38);
      margin-top: 6px;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 8px;
    }

    .footer-links a {
      text-decoration: none;
      font-size: 13px;
      color: rgba(var(--white-rgb), .38);
      transition: color .2s;
    }

    .footer-links a:hover {
      color: var(--blue);
    }

    /* ANIMATIONS */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px)
      }

      to {
        opacity: 1;
        transform: translateY(0)
      }
    }

    /* RESPONSIVE */
    @media (max-width: 900px) {
      #home {
        grid-template-columns: 1fr;
      }

      .hero-right {
        display: none;
      }

      #about {
        grid-template-columns: 1fr;
      }

      .vl-inner {
        grid-template-columns: 1fr;
      }

      .cta-box {
        padding: 52px 32px;
      }

      footer {
        flex-direction: column;
        text-align: center;
      }

      .footer-links {
        align-items: center;
        justify-content: center;
        margin-top: 10px;
      }

      .nav-links {
        display: none;
      }

      .prog-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 650px) {
      .prog-grid, .reviews-grid {
        grid-template-columns: 1fr;
      }
    }

    /* LANG DROPDOWN */
    .lang-dropdown {
      position: relative;
      display: inline-block;
      margin-left: 12px;
      cursor: pointer;
    }

    .lang-current {
      color: var(--ink);
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 8px;
      border-radius: var(--radius-sm);
      transition: background .2s;
    }

    .lang-flag {
      font-size: 24px;
      line-height: 1;
      display: flex;
    }

    .lang-arrow {
      font-size: 11px;
      color: var(--ink-soft);
      display: flex;
      transform: translateY(2px);
    }

    .lang-dropdown:hover .lang-current {
      background: rgba(var(--blue-rgb), 0.05);
    }

    .lang-menu {
      position: absolute;
      top: 100%;
      right: 0;
      background: white;
      min-width: 140px;
      border-radius: var(--radius-md);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      border: 1px solid rgba(var(--blue-rgb), 0.1);
      display: flex;
      flex-direction: column;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;
      z-index: 100;
      padding: 6px;
    }

    .lang-dropdown:hover .lang-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(4px);
    }

    .lang-menu a {
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      color: var(--ink-soft);
      padding: 8px 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      border-radius: 4px;
      transition: all 0.2s;
    }

    .lang-menu a:hover {
      background: rgba(var(--blue-rgb), 0.05);
      color: var(--blue);
    }

    .lang-menu a.active-lang {
      color: var(--blue-dark);
      background: rgba(var(--blue-rgb), 0.08);
      pointer-events: none;
    }
