
  :root {
    --ink:    #0d1b2a;
    --sky:    #1a6b8a;
    --sky2:   #0e4d66;
    --gold:   #e8a020;
    --pale:   #f5f1eb;
    --white:  #ffffff;
    --mist:   #e8f4f8;
    --text:   #2c3e50;
    --soft:   #6b8a99;
    --radius: 16px;
    --card-shadow: 0 8px 40px rgba(13,27,42,.10);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--white);
    color: var(--text);
    overflow-x: hidden;
  }

  /* base glyph rendering — without an explicit font-family the ligature
     names ("location_on") render as raw text whenever the icon font is
     missing (the old Google-hosted link was unreachable in mainland China) */
  .material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    font-size: 1.7rem;
    color: var(--sky);
    display: block;
    margin-bottom: 14px;
  }
  .service-card .material-icons {
    font-size: 2rem;
    margin-bottom: 14px;
  }
  .audience-card .material-icons {
    font-size: 2rem;
    margin-bottom: 8px;
    color: rgba(255,255,255,.9);
  }
  .pillar .material-icons {
    font-size: 1.3rem;
    display: inline;
    vertical-align: middle;
    margin-right: 5px;
    color: var(--gold);
  }
  .contact-info-icon .material-icons {
    font-size: 1.25rem;
    color: var(--sky);
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-badge .material-icons {
    font-size: 1rem;
    color: var(--sky);
    margin: 0;
    display: inline;
    vertical-align: middle;
  }
  .zh { display: inline; }
  .en { display: none; }
  body.lang-en .zh { display: none; }
  body.lang-en .en { display: inline; }

  /* -- NAV -- */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5vw;
    height: 60px;
    background: rgba(255,255,255,.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(13,27,42,.07);
    transition: box-shadow .3s, border-color .3s;
  }
  nav.scrolled {
    border-bottom-color: rgba(13,27,42,.10);
    box-shadow: 0 2px 16px rgba(13,27,42,.07);
  }

  .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; padding: 5px 8px; border-radius: 9px; transition: background .2s; }
  .nav-logo:hover { background: rgba(13,27,42,.06); }
  .nav-logo img { height: 36px; }
  .nav-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1rem; font-weight: 700;
    color: var(--ink); line-height: 1.15;
    transition: color .3s;
  }


  .nav-links { display: flex; align-items: center; gap: 1px; list-style: none; }
  .nav-links li > a {
    display: flex; align-items: center; gap: 4px; padding: 7px 13px;
    font-size: .875rem; font-weight: 500; color: var(--text);
    text-decoration: none; border-radius: 8px;
    transition: background .2s, color .2s;
  }
  .nav-links li > a:hover, .nav-links li > a.active { background: var(--mist); color: var(--sky); }

  .nav-chevron { display: inline-flex; align-items: center; justify-content: center; transition: transform .25s; margin-left: 1px; }
  .nav-chevron svg { width: 10px; height: 10px; }
  .nav-dropdown:hover > a .nav-chevron { transform: rotate(180deg); }

  .nav-dropdown { position: relative; }
  .nav-dropdown-menu {
    visibility: hidden; opacity: 0;
    position: absolute; top: calc(100% + 4px); right: 0;
    background: var(--white); border-radius: 14px;
    box-shadow: 0 8px 40px rgba(13,27,42,.15);
    min-width: 210px; padding: 6px;
    border: 1px solid rgba(13,27,42,.07);
    transform: translateY(-5px);
    transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown-menu:hover {
    visibility: visible; opacity: 1; transform: translateY(0);
    transition: opacity .2s ease, transform .2s ease, visibility 0s 0s;
  }
  .nav-dropdown-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; border-radius: 9px;
    text-decoration: none; color: var(--text);
    transition: background .15s, color .15s;
  }
  .nav-dropdown-item:hover { background: var(--mist); color: var(--sky); }
  .nav-item-icon {
    width: 34px; height: 34px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    background: var(--mist); border-radius: 8px;
    border: 1px solid rgba(13,27,42,.06);
  }
  .nav-item-icon .material-icons { font-size: 1rem; color: var(--sky); margin: 0; display: flex; }
  .nav-item-text { display: flex; flex-direction: column; }
  .nav-item-title { font-weight: 500; font-size: .85rem; line-height: 1.2; }
  .nav-item-desc { font-size: .72rem; color: var(--soft); margin-top: 1px; }

  .nav-controls { display: flex; align-items: center; gap: 8px; }

  /* lang toggle */
  .lang-toggle {
    display: flex; align-items: center;
    background: var(--ink); border-radius: 20px;
    padding: 3px; gap: 2px;
  }
  .lang-toggle button {
    border: none; background: transparent; cursor: pointer;
    font-size: .75rem; font-weight: 600; padding: 3px 10px;
    border-radius: 16px; color: rgba(255,255,255,.6);
    transition: all .2s;
  }
  .lang-toggle button.active {
    background: var(--gold); color: var(--ink);
  }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 110px 5vw 70px;
    position: relative; overflow: hidden;
    background: #010308;
  }
  .hero-orb {
    position: absolute; border-radius: 50%;
    opacity: .04; filter: blur(120px);
    animation: float 16s ease-in-out infinite;
    pointer-events: none; z-index: 1;
  }
  .hero-orb1 { width: 700px; height: 700px; background: #1a2a9a; top: -200px; right: -200px; }
  .hero-orb2 { width: 500px; height: 500px; background: #0a1566; bottom: -130px; left: -130px; animation-delay: -8s; }
  @keyframes float {
    0%,100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.04); }
  }

  #hero .hero-inner {
    position: relative; z-index: 2;
    width: 100%; max-width: 1180px; margin: 0 auto;
    display: grid; grid-template-columns: 1.05fr .95fr;
    gap: clamp(36px, 5vw, 72px); align-items: center;
  }
  #hero .hero-copy { text-align: left; }
  .hero-eyebrow {
    display: inline-block; background: rgba(232,160,32,.22);
    border: 1px solid rgba(232,160,32,.45);
    color: var(--gold); font-size: .8rem; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    padding: 5px 16px; border-radius: 20px; margin-bottom: 24px;
    animation: fadeUp .8s ease both;
  }
  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 4.4vw, 3.6rem);
    font-weight: 700; color: var(--white); line-height: 1.18;
    margin-bottom: 22px;
    animation: fadeUp .8s .15s ease both;
  }
  .hero-title em { color: var(--gold); font-style: normal; }
  .hero-sub {
    font-size: clamp(.95rem, 2vw, 1.15rem); color: rgba(255,255,255,.76);
    line-height: 1.7; max-width: 540px; margin: 0 0 38px;
    animation: fadeUp .8s .3s ease both;
  }
  .hero-ctas {
    display: flex; gap: 14px; justify-content: flex-start; flex-wrap: wrap;
    animation: fadeUp .8s .45s ease both;
  }
  /* hero photo (right) */
  #hero .hero-media {
    position: relative; z-index: 2;
    animation: fadeUp .9s .35s ease both;
    justify-self: center;
  }
  #hero .hero-media-frame {
    position: relative; border-radius: 24px; overflow: hidden;
    aspect-ratio: 3 / 4; width: 100%; max-width: 420px;
    box-shadow: 0 30px 70px rgba(0,0,0,.42);
    border: 1px solid rgba(255,255,255,.12);
  }
  #hero .hero-media-frame img {
    width: 100%; height: 100%; object-fit: cover; display: block;
  }
  #hero .hero-media-frame::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(160deg, transparent 55%, rgba(13,27,42,.28) 100%);
    pointer-events: none;
  }
  #hero .hero-quote {
    position: absolute; left: -22px; bottom: -26px; z-index: 3;
    background: var(--white); color: var(--ink);
    padding: 16px 20px; border-radius: 16px;
    box-shadow: 0 16px 40px rgba(0,0,0,.28);
    max-width: 230px;
    animation: fadeUp .9s .6s ease both;
  }
  #hero .hero-quote .hq-mark {
    font-family: 'Playfair Display', serif; color: var(--gold);
    font-size: 2rem; line-height: 0; position: relative; top: 8px;
  }
  #hero .hero-quote p { font-size: .82rem; line-height: 1.55; font-weight: 600; margin-top: 6px; }
  #hero .hero-quote span { display: block; font-size: .72rem; color: var(--sky); font-weight: 700; margin-top: 8px; }
  @media(max-width: 880px) {
    #hero .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    #hero .hero-copy { text-align: center; }
    #hero .hero-sub { margin-left: auto; margin-right: auto; }
    #hero .hero-ctas { justify-content: center; }
    #hero .hero-media { max-width: 340px; }
    #hero .hero-quote { left: 50%; transform: translateX(-50%); bottom: -26px; }
  }
  .btn-primary {
    background: var(--gold); color: var(--ink);
    border: none; border-radius: 50px; padding: 14px 32px;
    font-size: .95rem; font-weight: 700; cursor: pointer;
    text-decoration: none; transition: transform .2s, box-shadow .2s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,.4); }
  .btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.4); border-radius: 50px;
    padding: 14px 32px; font-size: .95rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all .2s;
  }
  .btn-outline:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }

  /* Make Earth wrap take the media column slot */
  .hero-globe-wrap { justify-self: center; }
  #hero-stars {
    position: absolute; inset: 0; width: 100%; height: 100%;
    z-index: 1; pointer-events: none;
  }
  @media(max-width:880px) {
    .hero-globe-wrap { max-width: 360px; width: 100%; }
    .hero-globe-wrap #earth-3d { width: 300px; height: 300px; }
    .float-badge { display: none; }
  }
  @media(max-width:480px) {
    .hero-trusted-pills { flex-direction: column; align-items: flex-start; }
  }

.hero-audience {
    display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
    margin-top: 50px; animation: fadeUp .8s .6s ease both;
  }
  .audience-card {
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: var(--radius); padding: 20px 28px;
    text-align: center; text-decoration: none; color: var(--white);
    backdrop-filter: blur(8px);
    transition: transform .25s, background .25s;
    min-width: 130px;
  }
  .audience-card:hover { transform: translateY(-5px); background: rgba(255,255,255,.18); }
  .audience-card span { font-size: .9rem; font-weight: 600; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ── SECTION SHELL ── */
  section { padding: 90px 5vw; }
  .section-label {
    font-size: .75rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--sky); margin-bottom: 10px;
  }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 700; color: var(--ink); line-height: 1.25; margin-bottom: 16px;
  }
  .section-sub {
    font-size: 1rem; color: var(--soft); line-height: 1.7;
    max-width: 540px; margin-bottom: 48px;
  }

  /* ── ABOUT ── */
  #about { background: var(--pale); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
  @media(max-width:780px){ .about-grid { grid-template-columns: 1fr; } }

  .about-visual {
    position: relative; border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/3; background: var(--sky2);
  }
  .about-visual img { width: 100%; height: 100%; object-fit: cover; }
  .about-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: var(--white); border-radius: 12px;
    padding: 12px 18px; box-shadow: var(--card-shadow);
  }
  .about-badge .num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--sky); }
  .about-badge .lbl { font-size: .75rem; color: var(--soft); }

  .pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
  .pillar {
    background: var(--white); border-radius: 14px;
    padding: 18px 20px; border-left: 4px solid var(--gold);
    box-shadow: 0 2px 12px rgba(13,27,42,.06);
  }
  .pillar h4 { font-size: .9rem; font-weight: 700; color: var(--ink); margin-bottom: 5px; }
  .pillar p { font-size: .8rem; color: var(--soft); line-height: 1.5; }

  /* ── SERVICES ── */
  #services { background: var(--white); }
  .services-tabs { display: flex; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
  .tab-btn {
    padding: 10px 22px; border-radius: 50px; font-size: .88rem; font-weight: 600;
    border: 2px solid transparent; cursor: pointer; transition: all .22s;
    background: var(--mist); color: var(--soft);
    display: flex; align-items: center; gap: 6px;
  }
  .tab-btn.active { background: var(--sky); color: var(--white); border-color: var(--sky); }
  .tab-btn:hover:not(.active) { border-color: var(--sky); color: var(--sky); }
  /* icons inside tab buttons must inherit the button text colour, not the global icon colour */
  .tab-btn .material-icons {
    color: inherit !important;
    display: inline !important;
    font-size: 1.1rem !important;
    margin: 0 !important;
    vertical-align: middle;
  }

  .tab-panel { display: none; }
  .tab-panel.active { display: block; animation: fadeUp .45s ease both; }

  .service-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 22px; }
  .service-card {
    background: var(--pale); border-radius: var(--radius);
    padding: 28px 24px; text-decoration: none; color: inherit;
    border: 1px solid transparent; transition: all .25s;
    position: relative; overflow: hidden;
  }
  .service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform .3s;
  }
  .service-card:hover { transform: translateY(-4px); border-color: var(--mist); box-shadow: var(--card-shadow); }
  .service-card:hover::before { transform: scaleX(1); }
  .service-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .service-card p { font-size: .82rem; color: var(--soft); line-height: 1.6; }

  /* ── IMPACT / VISUAL STATS ── */
  #impact {
    background: linear-gradient(135deg, var(--sky2) 0%, var(--ink) 100%);
    color: var(--white);
  }
  #impact .section-title { color: var(--white); }
  #impact .section-sub { color: rgba(255,255,255,.65); }
  #impact .section-label { color: var(--gold); }

  .stats-row { display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 60px; }
  .stat-item {
    flex: 1; min-width: 140px; text-align: center;
    padding: 30px 20px; border-right: 1px solid rgba(255,255,255,.1);
  }
  .stat-item:last-child { border-right: none; }
  .stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); }
  .stat-lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 6px; }

  /* who-we-serve visual grid */
  .serve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
  @media(max-width:640px){ .serve-grid { grid-template-columns: 1fr; } }
  .serve-card {
    border-radius: var(--radius); overflow: hidden;
    position: relative; min-height: 200px;
    display: flex; align-items: flex-end;
    text-decoration: none;
  }
  .serve-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
  .serve-card-overlay {
    position: relative; z-index: 1; width: 100%;
    background: linear-gradient(0deg, rgba(13,27,42,.85) 0%, transparent 100%);
    padding: 28px 22px 22px;
  }
  .serve-card h3 { color: var(--white); font-size: 1.1rem; font-weight: 700; }
  .serve-card p { color: rgba(255,255,255,.7); font-size: .8rem; margin-top: 4px; }
  .serve-card-tag {
    display: inline-block; background: var(--gold); color: var(--ink);
    font-size: .7rem; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px;
  }

  /* ── TEAM ── */
  #team { background: var(--pale); }
  .team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 24px; }
  .team-card {
    background: var(--white); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--card-shadow);
    transition: transform .25s;
  }
  .team-card:hover { transform: translateY(-5px); }
  .team-card img { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center top; }
  .team-card-info { padding: 18px 16px; }
  .team-card-info h3 { font-size: .95rem; font-weight: 700; color: var(--ink); }
  .team-card-info p { font-size: .78rem; color: var(--sky); margin-top: 3px; }

  /* ── CONTACT ── */
  #contact { background: var(--white); }
  .contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
  @media(max-width:700px){ .contact-wrap { grid-template-columns: 1fr; } }

  .contact-info-items { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
  .contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
  .contact-info-icon {
    width: 42px; height: 42px; border-radius: 10px;
    background: var(--mist); display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
  }
  .contact-info-item h4 { font-size: .82rem; color: var(--soft); margin-bottom: 2px; }
  .contact-info-item p, .contact-info-item a {
    font-size: .9rem; color: var(--ink); font-weight: 500; text-decoration: none;
  }
  .contact-info-item a:hover { color: var(--sky); }

  .contact-form { display: flex; flex-direction: column; gap: 14px; }

  /* ── CONNECT (WeChat / Xiaohongshu) ── */
  .connect-panel {
    background: var(--mist); border-radius: 20px;
    padding: 32px; height: 100%;
    display: flex; flex-direction: column;
  }
  .connect-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; color: var(--ink); margin-bottom: 8px;
  }
  .connect-sub { font-size: .9rem; color: var(--soft); line-height: 1.6; margin-bottom: 24px; }
  .connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  @media(max-width:460px){ .connect-grid { grid-template-columns: 1fr; } }
  .connect-card {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    background: var(--white); border-radius: 16px; padding: 20px 16px;
    border: 1px solid rgba(13,27,42,.06);
    box-shadow: 0 6px 20px rgba(13,27,42,.05);
    position: relative; overflow: hidden;
  }
  .connect-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  }
  .connect-wechat::before { background: #07C160; }
  .connect-xhs::before { background: #FF2442; }
  .connect-badge {
    font-size: .72rem; font-weight: 700; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 14px;
  }
  .connect-wechat .connect-badge { color: #07C160; }
  .connect-xhs .connect-badge { color: #FF2442; }
  .connect-pic {
    width: 100%; height: auto; aspect-ratio: 1 / 1; display: block;
    background: var(--mist); border-radius: 14px;
  }
  .connect-handle { font-size: .82rem; font-weight: 600; color: var(--ink); margin-top: 14px; }
  .connect-cta {
    margin-top: 12px; font-size: .78rem; font-weight: 600;
    text-decoration: none; padding: 8px 16px; border-radius: 50px;
    transition: transform .2s ease, background .2s ease, color .2s ease;
  }
  .connect-wechat .connect-cta { color: #07C160; background: rgba(7,193,96,.1); }
  .connect-wechat .connect-cta:hover { background: #07C160; color: #fff; transform: translateY(-2px); }
  .connect-xhs .connect-cta { color: #FF2442; background: rgba(255,36,66,.1); }
  .connect-xhs .connect-cta:hover { background: #FF2442; color: #fff; transform: translateY(-2px); }
  .form-field input, .form-field textarea {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid #dce6ea; border-radius: 10px;
    font-size: .9rem; font-family: inherit; color: var(--ink);
    background: var(--pale); outline: none; transition: border-color .2s;
  }
  .form-field input:focus, .form-field textarea:focus { border-color: var(--sky); background: var(--white); }
  .form-field textarea { min-height: 110px; resize: vertical; }
  .form-field label { font-size: .8rem; font-weight: 600; color: var(--soft); margin-bottom: 5px; display: block; }

  /* ── FOOTER ── */
  footer {
    background: var(--ink); color: rgba(255,255,255,.55);
    padding: 50px 5vw 28px;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  @media(max-width:700px){ .footer-grid { grid-template-columns: 1fr 1fr; } }
  .footer-brand p { font-size: .82rem; line-height: 1.7; margin-top: 12px; max-width: 220px; }
  .footer-logo-text { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; }
  .footer-col h5 { font-size: .8rem; font-weight: 700; color: var(--white); letter-spacing: .06em; text-transform: uppercase; margin-bottom: 14px; }
  .footer-col a { display: block; font-size: .82rem; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: 8px; transition: color .2s; }
  .footer-col a:hover { color: var(--gold); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1); padding-top: 22px;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
    font-size: .78rem;
  }

  /* ── SCROLL REVEAL ── */
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
    will-change: opacity, transform;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  .reveal-l {
    opacity: 0; transform: translateX(-40px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
  }
  .reveal-l.visible { opacity: 1; transform: translateX(0); }

  .reveal-r {
    opacity: 0; transform: translateX(40px);
    transition: opacity .8s ease, transform .8s ease;
    will-change: opacity, transform;
  }
  .reveal-r.visible { opacity: 1; transform: translateX(0); }

  /* -- MOBILE NAV -- */
  .hamburger {
    display: none; background: none; border: 1px solid rgba(13,27,42,.15);
    cursor: pointer; border-radius: 8px;
    align-items: center; justify-content: center;
    width: 36px; height: 36px; flex-shrink: 0;
    color: var(--ink); transition: background .2s, border-color .2s, color .2s;
  }
  .hamburger:hover { background: var(--mist); }
  .hamburger svg { display: block; overflow: visible; }
  #mobileMenu {
    display: none; position: fixed;
    top: 60px; left: 0; right: 0; bottom: 0; z-index: 95;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(13,27,42,.08);
    flex-direction: column;
    overflow-y: auto;
  }
  #mobileMenu.open {
    display: flex;
    animation: mobileSlideIn .25s ease both;
  }
  @keyframes mobileSlideIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .mobile-menu-inner {
    padding: 12px 5vw 28px;
    display: flex; flex-direction: column;
    gap: 2px;
  }
  .mobile-nav-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 12px; border-radius: 10px;
    text-decoration: none; color: var(--text);
    font-size: .9rem; font-weight: 500;
    transition: background .15s, color .15s;
  }
  .mobile-nav-link:hover { background: var(--mist); color: var(--sky); }
  .mobile-nav-link .nav-item-icon { width: 32px; height: 32px; }
  .mobile-divider { height: 1px; background: rgba(13,27,42,.07); margin: 6px 0; }
  @media(max-width:800px){
    .nav-links { display: none; }
    .hamburger { display: flex; }
  }

  .feature-strip {
    display: flex; gap: 24px; flex-wrap: wrap; margin-top: 16px; margin-bottom: 42px;
  }
  .feature-badge {
    display: flex; align-items: center; gap: 6px;
    background: var(--mist); border-radius: 30px; padding: 7px 16px;
    font-size: .82rem; font-weight: 600; color: var(--sky);
  }

  /* ── BACK TO TOP ── */
  #backToTop {
    position: fixed; bottom: 28px; right: 28px; z-index: 200;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--sky); color: var(--white);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 18px rgba(13,27,42,.22);
    opacity: 0; pointer-events: none;
    transform: translateY(12px);
    transition: opacity .3s, transform .3s;
  }
  #backToTop.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  #backToTop:hover { background: var(--sky2); transform: translateY(-2px); }
  #backToTop .material-icons { color: var(--white); font-size: 1.4rem; margin: 0; display: flex; }

  /* ── SERVICE DETAIL WRAPPER ── */
  .service-detail { display: none; }

  /* ── BREADCRUMB BAR ── */
  .breadcrumb-bar {
    position: sticky; top: 60px; z-index: 90;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(13,27,42,.09);
    padding: 0 5vw;
    height: 46px;
    display: flex; align-items: center;
    justify-content: space-between; gap: 12px;
    box-shadow: 0 2px 12px rgba(13,27,42,.06);
    animation: fadeDown .35s ease both;
  }
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .breadcrumb-trail {
    display: flex; align-items: center; gap: 0;
    list-style: none; flex-wrap: nowrap; overflow: hidden;
  }
  .breadcrumb-trail li { display: flex; align-items: center; white-space: nowrap; }

  .breadcrumb-trail li a,
  .breadcrumb-trail li span.bc-home {
    font-size: .8rem; font-weight: 500; color: var(--soft);
    text-decoration: none; padding: 3px 6px; border-radius: 6px;
    transition: color .18s, background .18s; cursor: pointer;
    display: flex; align-items: center; gap: 4px;
  }
  .breadcrumb-trail li a:hover,
  .breadcrumb-trail li span.bc-home:hover {
    color: var(--sky); background: var(--mist);
  }
  .breadcrumb-trail li a .material-icons { font-size: .9rem; margin: 0; color: inherit; display: inline; }

  .breadcrumb-trail .bc-sep {
    display: flex; align-items: center; padding: 0 2px;
    user-select: none; pointer-events: none;
  }
  .breadcrumb-trail .bc-current {
    font-size: .8rem; font-weight: 700; color: #6366f1;
    padding: 3px 8px; background: #eef2ff; border-radius: 6px;
    max-width: 260px; overflow: hidden; text-overflow: ellipsis;
  }

  .breadcrumb-actions {
    display: flex; align-items: center; gap: 8px; flex-shrink: 0;
  }
  .breadcrumb-actions a {
    font-size: .78rem; font-weight: 600;
    text-decoration: none; padding: 5px 14px; border-radius: 20px;
    transition: all .18s;
  }
  .bc-back-btn {
    color: var(--text); background: var(--pale);
    border: 1px solid rgba(13,27,42,.1);
    display: flex; align-items: center; gap: 4px;
  }
  .bc-back-btn:hover { background: var(--mist); color: var(--sky); }
  .bc-back-btn .material-icons { font-size: .85rem; margin: 0; color: inherit; display: inline; }
  .bc-contact-btn {
    color: var(--white); background: var(--sky); border: 1px solid transparent;
  }
  .bc-contact-btn:hover { background: var(--sky2); transform: translateY(-1px); }

  @media(max-width:600px) {
    .breadcrumb-actions .bc-contact-btn { display: none; }
    .breadcrumb-trail .bc-current { max-width: 160px; }
  }

  /* ── MI (Material Icons shorthand used in material-dev page) ── */
  .mi { font-family:'Material Icons'; font-size:inherit; font-style:normal; font-weight:normal; line-height:1; letter-spacing:normal; text-transform:none; white-space:nowrap; direction:ltr; font-feature-settings:'liga'; -webkit-font-smoothing:antialiased; display:inline-block; vertical-align:middle; }

  /* ── SERVICE PAGE SHARED TYPOGRAPHY ── */
  .s-label{font-size:.72rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;color:var(--sky);margin-bottom:10px}
  .s-title{font-family:'Playfair Display',serif;font-size:clamp(1.7rem,3vw,2.5rem);font-weight:700;color:var(--ink);line-height:1.25;margin-bottom:14px}
  .s-sub{font-size:1rem;color:var(--soft);line-height:1.75;max-width:520px;margin-bottom:48px}
  .center{text-align:center}
  .center .s-sub{margin-left:auto;margin-right:auto}

  /* ── SERVICE PAGE HERO ── */
  .hero{min-height:100vh;position:relative;display:flex;align-items:center;justify-content:center;padding:100px 5vw 70px;overflow:hidden}
  .hero-img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0}
  .hero-overlay{position:absolute;inset:0;z-index:1}
  .hero-inner{position:relative;z-index:2;text-align:center;max-width:780px}
  .eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(232,160,32,.18);border:1px solid rgba(232,160,32,.4);color:var(--gold);font-size:.75rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;padding:6px 18px;border-radius:20px;margin-bottom:26px}
  .hero-title{font-family:'Playfair Display',serif;font-size:clamp(2.2rem,5vw,3.8rem);font-weight:700;color:#fff;line-height:1.15;margin-bottom:22px;animation:up .8s .15s ease both}
  .hero-title em{color:var(--gold);font-style:normal}
  .hero-sub{font-size:clamp(.95rem,2vw,1.1rem);color:rgba(255,255,255,.76);line-height:1.75;max-width:560px;margin:0 auto 36px;animation:up .8s .3s ease both}
  .hero-chips{display:flex;gap:10px;flex-wrap:wrap;justify-content:center}
  .chip{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.25);color:#fff;font-size:.8rem;font-weight:600;padding:8px 18px;border-radius:30px}
  .hero-scroll{position:absolute;bottom:36px;left:50%;transform:translateX(-50%);z-index:2;text-align:center;color:rgba(255,255,255,.5);font-size:.72rem;letter-spacing:.1em;text-transform:uppercase}
  .hero-scroll-dot{width:24px;height:36px;border:2px solid rgba(255,255,255,.3);border-radius:12px;margin:0 auto 6px;position:relative}
  .hero-scroll-dot::after{content:'';position:absolute;top:6px;left:50%;transform:translateX(-50%);width:4px;height:8px;background:rgba(255,255,255,.6);border-radius:2px;animation:svcsd 1.6s ease infinite}
  @keyframes svcsd{0%,100%{opacity:.6;transform:translateX(-50%) translateY(0)}50%{opacity:1;transform:translateX(-50%) translateY(8px)}}
  @keyframes up{from{opacity:0;transform:translateY(26px)}to{opacity:1;transform:translateY(0)}}

  /* ── SERVICE PAGE STATS BAR ── */
  .stats-bar{background:var(--ink);padding:28px 5vw}
  .stats-inner{display:flex;justify-content:center;gap:0;flex-wrap:wrap}
  .stat-pill{flex:1;min-width:150px;text-align:center;padding:16px 20px;border-right:1px solid rgba(255,255,255,.1)}
  .stat-pill:last-child{border-right:none}
  .stat-pill .stat-num,.stat-pill .num{font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:var(--gold)}
  .stat-pill .stat-lbl,.stat-pill .lbl{font-size:.78rem;color:rgba(255,255,255,.55);margin-top:4px}

  /* ── DATA DRIVEN ── */
  .dashboard-section{background:var(--pale)}
  .dashboard-wrap{display:grid;grid-template-columns:1fr 1.7fr;gap:60px;align-items:center}
  @media(max-width:768px){.dashboard-wrap{grid-template-columns:1fr}}
  .dashboard-text .s-sub{margin-bottom:32px}
  .dash-feature{display:flex;align-items:flex-start;gap:14px;margin-bottom:20px}
  .dash-icon{width:44px;height:44px;background:var(--sky);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
  .dash-icon .material-icons{color:#fff;font-size:1.3rem;margin:0;display:flex}
  .dash-feature h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:3px}
  .dash-feature p{font-size:.82rem;color:var(--soft);line-height:1.55}
  .dashboard-img-wrap{position:relative}
  .dashboard-img-frame{background:#fff;border-radius:20px;padding:12px;box-shadow:0 20px 60px rgba(13,27,42,.18);position:relative}
  .dashboard-img-frame img{width:100%;border-radius:12px;display:block}
  .dash-label-pill{position:absolute;background:var(--sky);color:#fff;font-size:.72rem;font-weight:700;padding:6px 14px;border-radius:20px;box-shadow:0 4px 14px rgba(26,107,138,.35);white-space:nowrap}
  .dash-label-pill.top-right{top:-14px;right:20px}
  .dash-label-pill.bottom-left{bottom:-14px;left:20px;background:var(--gold);color:var(--ink)}
  .reports-section{background:var(--ink)}
  .reports-section .s-label{color:var(--gold)}
  .reports-section .s-title{color:#fff}
  .reports-section .s-sub{color:rgba(255,255,255,.6)}
  .reports-intro{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center;margin-bottom:56px}
  @media(max-width:700px){.reports-intro{grid-template-columns:1fr}}
  .report-highlight-box{background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);border-radius:20px;padding:32px;position:relative;overflow:hidden}
  .report-highlight-box::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--sky),var(--gold))}
  .report-highlight-box h3{font-family:'Playfair Display',serif;font-size:1.3rem;color:#fff;margin-bottom:12px}
  .report-highlight-box p{font-size:.85rem;color:rgba(255,255,255,.6);line-height:1.65;margin-bottom:16px}
  .report-tags{display:flex;gap:8px;flex-wrap:wrap}
  .report-tag{background:rgba(232,160,32,.2);border:1px solid rgba(232,160,32,.3);color:var(--gold);font-size:.72rem;font-weight:600;padding:4px 12px;border-radius:20px}
  .reports-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;max-width:720px;margin-left:auto;margin-right:auto}
  @media(max-width:900px){.reports-grid{grid-template-columns:repeat(2,1fr);max-width:480px}}
  @media(max-width:500px){.reports-grid{grid-template-columns:1fr;max-width:280px}}
  .report-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.08);border-radius:14px;overflow:hidden;transition:transform .3s,box-shadow .3s;cursor:pointer}
  .report-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(0,0,0,.4);border-color:rgba(232,160,32,.3)}
  .report-card img{width:100%;display:block;aspect-ratio:3/4;object-fit:cover;object-position:top}
  .report-card-label{padding:10px 12px;border-top:1px solid rgba(255,255,255,.07)}
  .report-card-label span{font-size:.72rem;color:rgba(255,255,255,.5);font-weight:600}
  .benefits-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:8px}
  @media(max-width:900px){.benefits-grid{grid-template-columns:repeat(2,1fr)}}
  @media(max-width:500px){.benefits-grid{grid-template-columns:1fr}}
  .benefit-card{background:var(--pale);border-radius:var(--radius);padding:28px 22px;text-align:center;transition:transform .3s,box-shadow .3s;position:relative;overflow:hidden}
  .benefit-card:hover{transform:translateY(-5px);box-shadow:var(--card-shadow)}
  .benefit-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--sky),var(--gold));transform:scaleX(0);transform-origin:left;transition:transform .4s}
  .benefit-card:hover::after{transform:scaleX(1)}
  .benefit-icon{width:60px;height:60px;background:var(--mist);border-radius:16px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
  .benefit-icon .material-icons{color:var(--sky);font-size:1.8rem;margin:0;display:flex}
  .benefit-card h3{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:6px}
  .benefit-card p{font-size:.8rem;color:var(--soft);line-height:1.6}
  .how-section{background:linear-gradient(135deg,var(--sky2) 0%,var(--ink) 100%)}
  .how-section .s-label{color:var(--gold)}
  .how-section .s-title{color:#fff}
  .how-section .s-sub{color:rgba(255,255,255,.6)}
  .how-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative;margin-top:8px}
  @media(max-width:700px){.how-flow{grid-template-columns:1fr 1fr}}
  .how-step{text-align:center;padding:32px 20px;position:relative}
  .how-step::after{content:'→';position:absolute;top:44px;right:-12px;font-size:1.4rem;color:rgba(232,160,32,.5);z-index:1}
  .how-step:last-child::after{display:none}
  @media(max-width:700px){.how-step:nth-child(2)::after,.how-step:nth-child(4)::after{display:none}}
  .how-num{width:80px;height:80px;border-radius:50%;background:rgba(255,255,255,.08);border:2px solid rgba(255,255,255,.15);display:flex;align-items:center;justify-content:center;margin:0 auto 20px;transition:transform .3s,background .3s}
  .how-step:hover .how-num{transform:scale(1.1);background:rgba(232,160,32,.2)}
  .how-num .material-icons{color:var(--gold);font-size:2rem;margin:0;display:flex}
  .how-step-num{font-family:'Playfair Display',serif;font-size:.75rem;font-weight:700;color:var(--gold);letter-spacing:.1em;text-transform:uppercase;margin-bottom:8px}
  .how-step h4{font-size:1rem;font-weight:700;color:#fff;margin-bottom:6px}
  .how-step p{font-size:.8rem;color:rgba(255,255,255,.55);line-height:1.6}
  #service-data-driven .cta-section{background:var(--pale);text-align:center}
  .btn-sky{background:var(--sky);color:#fff;border:none;border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:700;cursor:pointer;text-decoration:none;display:inline-block;transition:transform .2s,box-shadow .2s}
  .btn-sky:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(26,107,138,.35)}
  .btn-ink-btn{background:var(--ink);color:#fff;border:none;border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:600;cursor:pointer;text-decoration:none;display:inline-block;transition:all .2s;margin-left:12px}
  .btn-ink-btn:hover{background:var(--sky2);transform:translateY(-2px)}
  /* ── DATA DRIVEN · COMBINED SYSTEM (flowchart + mindmap) ── */
  .dd-system{background:linear-gradient(135deg,var(--sky2) 0%,var(--ink) 100%)}
  .dd-caption{text-align:center;font-size:.72rem;font-weight:700;letter-spacing:.18em;text-transform:uppercase;color:var(--gold);margin-bottom:24px}
  .dd-flow{display:flex;align-items:center;justify-content:center;flex-wrap:wrap;gap:8px;max-width:880px;margin:0 auto 72px}
  .dd-step{flex:1 1 150px;max-width:190px;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:16px;padding:26px 16px;text-align:center;transition:transform .3s,border-color .3s}
  .dd-step:hover{transform:translateY(-5px);border-color:rgba(232,160,32,.5)}
  .dd-step .material-icons{color:var(--gold);font-size:2rem;margin:0 0 10px;display:block}
  .dd-step h4{font-size:1.05rem;font-weight:700;color:#fff;margin-bottom:4px}
  .dd-step p{font-size:.78rem;color:rgba(255,255,255,.55);line-height:1.5}
  .dd-arrow{display:flex;align-items:center;color:rgba(232,160,32,.7);flex:0 0 auto}
  /* the global .material-icons base sets display:block, margin-bottom:14px and
     color:var(--sky) — all three are wrong for a glyph sitting in a centred flex
     row, so reset them here (the margin alone pushed the arrow 7px off-centre) */
  .dd-arrow .material-icons{font-size:1.5rem;display:inline-flex;margin:0;color:inherit}
  @media(max-width:600px){.dd-step{flex-basis:100%;max-width:260px}.dd-arrow .material-icons{transform:rotate(90deg)}}
  .dd-mind{display:flex;flex-direction:column;align-items:center;margin-bottom:64px}
  .mind-hub{display:inline-flex;align-items:center;gap:10px;background:linear-gradient(135deg,var(--gold),#c87d12);color:var(--ink);font-family:'Playfair Display',serif;font-weight:700;font-size:1.15rem;padding:15px 30px;border-radius:50px;box-shadow:0 12px 32px rgba(232,160,32,.3)}
  .mind-hub .material-icons{font-size:1.4rem;margin:0}
  .hub-stem{width:2px;height:30px;background:rgba(232,160,32,.5)}
  .mind-branches{position:relative;display:grid;grid-template-columns:repeat(4,1fr);gap:18px;width:100%;max-width:760px;padding-top:30px}
  .mind-branches::before{content:'';position:absolute;top:0;left:calc(12.5% - 6.75px);right:calc(12.5% - 6.75px);height:2px;background:rgba(232,160,32,.5)}
  .mind-leaf{position:relative;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.12);border-radius:14px;padding:22px 14px;text-align:center;transition:transform .3s,border-color .3s}
  .mind-leaf:hover{transform:translateY(-4px);border-color:rgba(232,160,32,.5)}
  .mind-leaf::before{content:'';position:absolute;top:-30px;left:50%;transform:translateX(-50%);width:2px;height:30px;background:rgba(232,160,32,.5)}
  .mind-leaf .material-icons{color:var(--gold);font-size:1.7rem;margin:0 0 8px;display:block}
  .mind-leaf h4{font-size:.92rem;font-weight:700;color:#fff}
  @media(max-width:640px){.mind-branches{grid-template-columns:1fr 1fr;gap:14px;padding-top:0;max-width:340px}.mind-branches::before,.mind-leaf::before,.hub-stem{display:none}.dd-mind{gap:20px}}
  .dd-cta{text-align:center}
  .dd-cta .btn-ink-btn{background:transparent;border:1.5px solid rgba(255,255,255,.3)}
  .dd-cta .btn-ink-btn:hover{background:rgba(255,255,255,.1);border-color:#fff}
  /* ── DATA DRIVEN · VIDEO SHOWCASE ── */
  .dd-video-section{background:var(--pale)}
  .dd-video{max-width:900px;margin:0 auto}
  .dd-video-frame{position:relative;aspect-ratio:16/9;border-radius:22px;overflow:hidden;background:var(--ink);box-shadow:0 26px 64px rgba(13,27,42,.28)}
  .dd-video-frame video{width:100%;height:100%;object-fit:cover;display:block}
  .dd-video-thumb{position:absolute;inset:0;width:100%;height:100%;object-fit:contain;background:#fff}
  .dd-video-overlay{position:absolute;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:18px;background:linear-gradient(135deg,rgba(14,77,102,.4),rgba(13,27,42,.5));color:#fff;transition:background .3s}
  .dd-video-frame:hover .dd-video-overlay{background:linear-gradient(135deg,rgba(14,77,102,.5),rgba(13,27,42,.62))}
  .dd-play{width:88px;height:88px;border-radius:50%;background:var(--gold);display:flex;align-items:center;justify-content:center;box-shadow:0 14px 36px rgba(232,160,32,.45);transition:transform .3s}
  .dd-video-frame:hover .dd-play{transform:scale(1.08)}
  .dd-play .material-icons{color:var(--ink);font-size:2.8rem;margin:0}
  .dd-video-overlay p{font-size:.85rem;color:rgba(255,255,255,.78);letter-spacing:.02em;line-height:1.6}
  .dd-video-overlay p strong{font-size:1.05rem;color:#fff;font-weight:700}
  .dd-video-overlay{cursor:pointer}
  .dd-video-frame.drag .dd-video-overlay{background:linear-gradient(135deg,rgba(232,160,32,.55),rgba(13,27,42,.7))}
  .dd-video-frame.drag .dd-play{transform:scale(1.12)}
  .dd-video-replace{position:absolute;top:14px;right:14px;width:42px;height:42px;border-radius:50%;border:none;background:rgba(13,27,42,.6);backdrop-filter:blur(6px);color:#fff;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .25s;z-index:3}
  .dd-video-replace:hover{background:var(--gold);color:var(--ink)}
  .dd-video-replace .material-icons{font-size:1.3rem;margin:0}
  .modal-overlay{display:none;position:fixed;inset:0;background:rgba(13,27,42,.92);z-index:999;align-items:center;justify-content:center;padding:20px}
  .modal-overlay.open{display:flex}
  .modal-inner{max-width:90vw;max-height:90vh;position:relative}
  .modal-inner img{max-width:100%;max-height:85vh;border-radius:12px;display:block}
  .modal-close{position:absolute;top:-14px;right:-14px;width:36px;height:36px;background:var(--gold);border:none;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.1rem;font-weight:700;color:var(--ink)}

  /* ── MARKETING SUPPORT ── */
  .services-row{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
  @media(max-width:700px){.services-row{grid-template-columns:1fr}}
  .service-big{border-radius:22px;overflow:hidden;position:relative;min-height:380px;display:flex;flex-direction:column;justify-content:flex-end;transition:transform .35s}
  .service-big:hover{transform:translateY(-6px)}
  .service-big img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;transition:transform .5s}
  .service-big:hover img{transform:scale(1.05)}
  .service-overlay{position:absolute;inset:0;z-index:1}
  .service-content{position:relative;z-index:2;padding:32px 28px}
  .service-tag{display:inline-block;font-size:.68rem;font-weight:700;letter-spacing:.1em;text-transform:uppercase;padding:4px 12px;border-radius:20px;margin-bottom:12px}
  .service-content h3{font-family:'Playfair Display',serif;font-size:1.5rem;font-weight:700;color:#fff;margin-bottom:10px}
  .service-bullets{display:flex;flex-direction:column;gap:6px}
  .service-bullet{display:flex;align-items:center;gap:8px;font-size:.8rem;color:rgba(255,255,255,.8)}
  .service-bullet::before{content:'';width:6px;height:6px;border-radius:50%;background:var(--gold);flex-shrink:0}
  .gallery-section{background:var(--pale)}
  .gallery-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}
  @media(max-width:700px){.gallery-grid{grid-template-columns:1fr}}
  .gallery-item{border-radius:18px;overflow:hidden;position:relative;background:var(--white);box-shadow:var(--card-shadow);transition:transform .3s,box-shadow .3s}
  .gallery-item:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(13,27,42,.15)}
  .gallery-item img{width:100%;display:block;transition:transform .4s}
  .gallery-item:hover img{transform:scale(1.03)}
  .gallery-caption{padding:18px 20px;border-top:1px solid rgba(13,27,42,.06)}
  .gallery-caption h4{font-size:.92rem;font-weight:700;color:var(--ink);margin-bottom:4px}
  .gallery-caption p{font-size:.78rem;color:var(--soft)}
  .gallery-item.wide{grid-column:span 2}
  @media(max-width:700px){.gallery-item.wide{grid-column:span 1}}
  .courses-section{background:var(--ink)}
  .courses-section .s-label{color:var(--gold)}
  .courses-section .s-title{color:#fff}
  .courses-section .s-sub{color:rgba(255,255,255,.6)}
  .courses-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
  @media(max-width:700px){.courses-grid{grid-template-columns:1fr}}
  .course-card{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:20px;overflow:hidden;transition:transform .3s,border-color .3s}
  .course-card:hover{transform:translateY(-5px);border-color:rgba(232,160,32,.4)}
  .course-flag{display:flex;align-items:center;gap:8px;padding:16px 20px;border-bottom:1px solid rgba(255,255,255,.07)}
  .flag-badge{font-size:.72rem;font-weight:700;letter-spacing:.08em;text-transform:uppercase;padding:4px 10px;border-radius:12px}
  .flag-badge.us{background:rgba(60,100,200,.25);color:#88aaff}
  .flag-badge.uk{background:rgba(200,50,50,.25);color:#ff9999}
  .course-body{padding:20px}
  .course-body h3{font-size:1.1rem;font-weight:700;color:#fff;margin-bottom:8px}
  .course-body p{font-size:.82rem;color:rgba(255,255,255,.55);line-height:1.6;margin-bottom:14px}
  .course-tags{display:flex;gap:6px;flex-wrap:wrap}
  .course-tag{font-size:.7rem;font-weight:600;padding:3px 10px;border-radius:16px;background:rgba(232,160,32,.15);color:var(--gold);border:1px solid rgba(232,160,32,.25)}
  .approach-section{background:var(--pale)}
  .approach-flow{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;margin-top:8px}
  @media(max-width:700px){.approach-flow{grid-template-columns:repeat(2,1fr)}}
  .approach-step{background:var(--white);border-radius:var(--radius);padding:28px 22px;text-align:center;box-shadow:var(--card-shadow);position:relative;transition:transform .3s}
  .approach-step:hover{transform:translateY(-5px)}
  .approach-step::before{content:attr(data-num);position:absolute;top:16px;right:18px;font-family:'Playfair Display',serif;font-size:2rem;font-weight:700;color:var(--mist);line-height:1}
  .approach-icon{width:56px;height:56px;background:var(--mist);border-radius:14px;display:flex;align-items:center;justify-content:center;margin:0 auto 16px}
  .approach-icon .material-icons{color:var(--sky);font-size:1.7rem;margin:0;display:flex}
  .approach-step h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:6px}
  .approach-step p{font-size:.8rem;color:var(--soft);line-height:1.6}
  .schools-section{background:var(--white)}
  .schools-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:center}
  @media(max-width:700px){.schools-grid{grid-template-columns:1fr}}
  .schools-img{border-radius:22px;overflow:hidden;aspect-ratio:4/3}
  .schools-img img{width:100%;height:100%;object-fit:cover}
  .schools-points{display:flex;flex-direction:column;gap:16px}
  .point-row{display:flex;align-items:flex-start;gap:16px;padding:18px;background:var(--pale);border-radius:14px;transition:transform .2s}
  .point-row:hover{transform:translateX(6px)}
  .point-icon{width:44px;height:44px;background:var(--sky);border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
  .point-icon .material-icons{color:#fff;font-size:1.3rem;margin:0;display:flex}
  .point-row h4{font-size:.92rem;font-weight:700;color:var(--ink);margin-bottom:3px}
  .point-row p{font-size:.8rem;color:var(--soft);line-height:1.5}
  #service-marketing-support .cta-section{background:linear-gradient(135deg,var(--gold) 0%,#c87020 100%);text-align:center}
  #service-marketing-support .cta-section .s-label{color:rgba(255,255,255,.7)}
  #service-marketing-support .cta-section .s-title{color:var(--ink)}
  #service-marketing-support .cta-section .s-sub{color:rgba(13,27,42,.65);max-width:460px;margin-left:auto;margin-right:auto}
  .btn-dark{background:var(--ink);color:#fff;border:none;border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:700;cursor:pointer;text-decoration:none;display:inline-block;transition:transform .2s,box-shadow .2s}
  .btn-dark:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(13,27,42,.3)}
  .btn-white{background:#fff;color:var(--ink);border:none;border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:600;cursor:pointer;text-decoration:none;display:inline-block;transition:all .2s;margin-left:12px}
  .btn-white:hover{background:rgba(255,255,255,.85);transform:translateY(-2px)}

  /* ── MATERIAL DEVELOPMENT ── */
  .tile-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
  @media(max-width:640px){.tile-grid{grid-template-columns:1fr}}
  .tile{position:relative;border-radius:20px;overflow:hidden;min-height:280px;display:flex;align-items:flex-end;cursor:default;text-decoration:none}
  .tile-color{position:absolute;inset:0;z-index:0}
  .tile-overlay{position:relative;z-index:1;width:100%;background:linear-gradient(0deg,rgba(13,27,42,.95) 0%,rgba(13,27,42,.4) 65%,transparent 100%);padding:36px 28px 28px}
  .tile-icon-badge{position:absolute;top:22px;right:22px;z-index:2;width:48px;height:48px;background:rgba(255,255,255,.15);backdrop-filter:blur(8px);border-radius:14px;display:flex;align-items:center;justify-content:center;border:1px solid rgba(255,255,255,.2)}
  .tile-icon-badge .mi{color:#fff;font-size:1.6rem}
  .tile-num{font-size:.68rem;font-weight:700;letter-spacing:.12em;color:var(--gold);text-transform:uppercase;margin-bottom:6px}
  .tile h3{font-family:'Playfair Display',serif;font-size:1.35rem;color:#fff;font-weight:700;margin-bottom:8px}
  .tile-tags{display:flex;gap:6px;flex-wrap:wrap}
  .tile-tags span{background:rgba(255,255,255,.12);border:1px solid rgba(255,255,255,.2);color:rgba(255,255,255,.85);font-size:.72rem;padding:3px 10px;border-radius:20px}
  .gallery-dark{background:var(--ink)}
  .gallery-dark .s-label{color:var(--gold)}
  .gallery-dark .s-title{color:#fff}
  .gallery-dark .s-sub{color:rgba(255,255,255,.6)}
  .doc-showcase{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-top:8px}
  @media(max-width:700px){.doc-showcase{grid-template-columns:1fr}}
  .doc-frame{background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.1);border-radius:16px;overflow:hidden;transition:transform .3s,box-shadow .3s}
  .doc-frame:hover{transform:translateY(-6px);box-shadow:0 20px 50px rgba(0,0,0,.4)}
  .doc-frame-bar{background:rgba(255,255,255,.08);padding:10px 16px;display:flex;align-items:center;gap:8px}
  .doc-dot{width:9px;height:9px;border-radius:50%}
  .doc-frame img{width:100%;display:block;aspect-ratio:3/4;object-fit:cover}
  .doc-frame-label{padding:14px 16px;border-top:1px solid rgba(255,255,255,.07)}
  .doc-frame-label h4{font-size:.88rem;font-weight:700;color:#fff;margin-bottom:3px}
  .doc-frame-label p{font-size:.75rem;color:rgba(255,255,255,.5)}
  .process-section{background:var(--pale)}
  .process-flow{display:flex;align-items:flex-start;gap:0;overflow-x:auto;padding-bottom:12px;margin-top:8px}
  .p-step{flex:1;min-width:140px;text-align:center;position:relative;padding:0 10px}
  .p-step-line{position:absolute;top:36px;left:calc(50% + 36px);right:calc(-50% + 36px);height:2px;background:linear-gradient(90deg,var(--sky),var(--gold));z-index:0}
  .p-step:last-child .p-step-line{display:none}
  .p-circle{width:72px;height:72px;border-radius:50%;background:linear-gradient(135deg,var(--sky2),var(--sky));display:flex;align-items:center;justify-content:center;margin:0 auto 16px;position:relative;z-index:1;box-shadow:0 6px 20px rgba(26,107,138,.25);transition:transform .3s}
  .p-step:hover .p-circle{transform:scale(1.08)}
  .p-circle .mi{color:#fff;font-size:1.6rem}
  .p-num{position:absolute;top:-4px;right:-4px;width:22px;height:22px;background:var(--gold);border-radius:50%;font-size:.68rem;font-weight:700;color:var(--ink);display:flex;align-items:center;justify-content:center}
  .p-step h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:5px}
  .p-step p{font-size:.78rem;color:var(--soft);line-height:1.5}
  .features-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
  @media(max-width:700px){.features-grid{grid-template-columns:1fr}}
  .feat-card{background:var(--white);border-radius:var(--radius);padding:32px 28px;box-shadow:var(--card-shadow);position:relative;overflow:hidden;transition:transform .3s}
  .feat-card:hover{transform:translateY(-5px)}
  .feat-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--sky),var(--gold));transform:scaleX(0);transform-origin:left;transition:transform .4s}
  .feat-card:hover::before{transform:scaleX(1)}
  .feat-icon{width:54px;height:54px;background:var(--mist);border-radius:14px;display:flex;align-items:center;justify-content:center;margin-bottom:20px}
  .feat-icon .mi{color:var(--sky);font-size:1.7rem}
  .feat-card h3{font-size:1.05rem;font-weight:700;color:var(--ink);margin-bottom:8px}
  .feat-card p{font-size:.83rem;color:var(--soft);line-height:1.65}
  .mosaic{display:grid;grid-template-columns:1fr 1fr 1fr;grid-template-rows:220px 220px;gap:14px}
  .mosaic-item{border-radius:16px;overflow:hidden;position:relative}
  .mosaic-item img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
  .mosaic-item:hover img{transform:scale(1.05)}
  .mosaic-item.tall{grid-row:span 2}
  .mosaic-item-label{position:absolute;bottom:0;left:0;right:0;background:linear-gradient(0deg,rgba(13,27,42,.8) 0%,transparent 100%);padding:20px 16px 16px;color:#fff;font-size:.8rem;font-weight:600}
  #service-material-development .cta-section{background:linear-gradient(135deg,var(--sky2) 0%,var(--ink) 100%);text-align:center}
  #service-material-development .cta-section .s-label{color:var(--gold)}
  #service-material-development .cta-section .s-title{color:#fff}
  #service-material-development .cta-section .s-sub{color:rgba(255,255,255,.65);max-width:480px;margin-left:auto;margin-right:auto}
  .btn-gold{background:var(--gold);color:var(--ink);border:none;border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:700;cursor:pointer;text-decoration:none;display:inline-block;transition:transform .2s,box-shadow .2s;margin-top:8px}
  .btn-gold:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(232,160,32,.45)}
  .btn-ghost{background:transparent;color:#fff;border:2px solid rgba(255,255,255,.35);border-radius:50px;padding:16px 38px;font-size:1rem;font-weight:600;cursor:pointer;text-decoration:none;display:inline-block;transition:all .2s;margin-top:8px;margin-left:12px}
  .btn-ghost:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.7)}

  /* ═══ NEW SERVICE PAGE COMPONENTS ═══ */
  .mindmap-hub{display:grid;grid-template-columns:1fr 210px 1fr;gap:20px;align-items:center}
  .mindmap-col{display:flex;flex-direction:column;gap:14px}
  .mindmap-node{background:var(--white);border:1.5px solid rgba(26,107,138,.12);border-radius:14px;padding:18px 20px;box-shadow:0 4px 18px rgba(13,27,42,.06);transition:transform .3s,border-color .3s}
  .mindmap-node:hover{transform:translateY(-4px);border-color:rgba(26,107,138,.4)}
  .mn-icon{width:38px;height:38px;background:var(--mist);border-radius:10px;display:flex;align-items:center;justify-content:center;margin-bottom:10px}
  .mn-icon .mi{font-size:1.2rem;color:var(--sky);display:inline;margin:0}
  .mindmap-node h4{font-size:.88rem;font-weight:700;color:var(--ink);margin-bottom:6px;line-height:1.3}
  .mindmap-node ul{margin:0 0 0 14px;padding:0}
  .mindmap-node ul li{font-size:.73rem;color:var(--soft);line-height:1.8;list-style:disc}
  .mindmap-center-node{width:196px;height:196px;border-radius:50%;background:linear-gradient(135deg,var(--sky2),var(--sky));display:flex;flex-direction:column;align-items:center;justify-content:center;box-shadow:0 14px 44px rgba(26,107,138,.4);text-align:center;padding:24px;margin:0 auto;position:relative}
  .mindmap-center-node .mi{font-size:2.4rem;color:rgba(255,255,255,.92);display:inline;margin:0}
  .mindmap-center-node h4{font-size:.88rem;font-weight:700;color:#fff;margin-top:10px;line-height:1.3}
  .mindmap-center-node p{font-size:.68rem;color:rgba(255,255,255,.7);margin-top:4px}
  .mindmap-center-node::before{content:'';position:absolute;inset:-8px;border-radius:50%;border:2px dashed rgba(255,255,255,.22);animation:orbspin 25s linear infinite}
  @keyframes orbspin{to{transform:rotate(360deg)}}
  @media(max-width:768px){.mindmap-hub{grid-template-columns:1fr 1fr}.mindmap-center-node{display:none}}
  .trainers-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
  @media(max-width:640px){.trainers-grid{grid-template-columns:1fr}}
  .trainer-card{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:var(--card-shadow);transition:transform .3s}
  .trainer-card:hover{transform:translateY(-5px)}
  .trainer-card-img{overflow:hidden;background:var(--pale)}
  .trainer-card-img img{width:100%;height:auto;display:block;object-fit:contain;transition:transform .4s}
  .trainer-card:hover .trainer-card-img img{transform:scale(1.04)}
  .trainer-card-body{padding:26px}
  .trainer-card-body h3{font-family:'Playfair Display',serif;font-size:1.1rem;font-weight:700;color:var(--ink);margin-bottom:3px}
  .trainer-role{font-size:.72rem;font-weight:700;color:var(--sky);text-transform:uppercase;letter-spacing:.07em;margin-bottom:14px;display:block}
  .trainer-card-body p{font-size:.8rem;color:var(--soft);line-height:1.7}
  .pillar-cards{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
  @media(max-width:800px){.pillar-cards{grid-template-columns:1fr 1fr}}
  .pillar-card{background:var(--ink);border-radius:18px;padding:28px 20px 24px;position:relative;overflow:hidden;transition:transform .3s,box-shadow .3s}
  .pillar-card:hover{transform:translateY(-6px);box-shadow:0 18px 50px rgba(13,27,42,.22)}
  .pillar-card::after{content:'';position:absolute;bottom:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--gold),#c47418)}
  .pc-num{position:absolute;top:14px;right:16px;font-size:2.8rem;font-weight:700;color:rgba(255,255,255,.05);font-family:'Playfair Display',serif;line-height:1}
  .pc-icon{width:46px;height:46px;background:rgba(232,160,32,.12);border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:16px;border:1px solid rgba(232,160,32,.2)}
  .pc-icon .mi{color:var(--gold);font-size:1.4rem;display:inline;margin:0}
  .pillar-card h3{font-size:.95rem;font-weight:700;color:#fff;margin-bottom:10px;line-height:1.3}
  .pillar-card ul{margin:0;padding:0 0 0 14px}
  .pillar-card ul li{font-size:.73rem;color:rgba(255,255,255,.5);line-height:1.9;list-style:disc}
  .split-wrap{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center}
  @media(max-width:768px){.split-wrap{grid-template-columns:1fr}}
  .split-img-col{border-radius:20px;overflow:hidden;box-shadow:0 20px 60px rgba(13,27,42,.14)}
  .split-img-col img{width:100%;display:block}
  .split-points{display:flex;flex-direction:column;gap:16px;margin-top:20px}
  .split-point{display:flex;gap:14px;align-items:flex-start}
  .split-point-icon{min-width:42px;height:42px;background:var(--mist);border-radius:10px;display:flex;align-items:center;justify-content:center}
  .split-point-icon .mi{font-size:1.2rem;color:var(--sky);display:inline;margin:0}
  .split-point h4{font-size:.88rem;font-weight:700;color:var(--ink);margin-bottom:3px}
  .split-point p{font-size:.78rem;color:var(--soft);line-height:1.5}
  .topic-cloud{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:28px;max-width:820px;margin-left:auto;margin-right:auto}
  .t-bubble{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.15);color:rgba(255,255,255,.82);padding:9px 18px;border-radius:40px;font-size:.8rem;font-weight:600;transition:all .3s;cursor:default}
  .t-bubble:hover{background:rgba(26,107,138,.35);border-color:var(--sky);color:#fff;transform:translateY(-2px)}
  .t-bubble.accent{background:rgba(232,160,32,.12);border-color:rgba(232,160,32,.35);color:var(--gold)}
  .t-bubble.accent:hover{background:rgba(232,160,32,.25)}
  .fmt-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
  @media(max-width:700px){.fmt-grid{grid-template-columns:1fr 1fr}}
  .fmt-card{background:rgba(26,107,138,.06);border:1px solid rgba(26,107,138,.2);border-radius:16px;padding:26px;text-align:center;transition:transform .3s,background .3s}
  .fmt-card:hover{transform:translateY(-4px);background:rgba(26,107,138,.12)}
  .fmc-icon{width:52px;height:52px;border-radius:14px;background:rgba(26,107,138,.1);display:flex;align-items:center;justify-content:center;margin:0 auto 14px}
  .fmc-icon .mi{font-size:1.7rem;color:var(--sky);display:inline;margin:0}
  .fmt-card h4{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:6px}
  .fmt-card p{font-size:.74rem;color:var(--soft);line-height:1.55}
  .prog-cards{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
  @media(max-width:700px){.prog-cards{grid-template-columns:1fr}}
  .prog-card{background:var(--white);border-radius:20px;overflow:hidden;box-shadow:var(--card-shadow);transition:transform .3s}
  .prog-card:hover{transform:translateY(-5px)}
  .prog-card-img{height:185px;overflow:hidden}
  .prog-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s}
  .prog-card:hover .prog-card-img img{transform:scale(1.05)}
  .prog-card-body{padding:22px}
  .prog-flag{display:inline-block;font-size:.68rem;font-weight:700;padding:4px 12px;border-radius:20px;background:var(--mist);color:var(--sky);margin-bottom:10px}
  .prog-card-body h3{font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:6px;font-family:'Playfair Display',serif}
  .prog-card-body p{font-size:.79rem;color:var(--soft);line-height:1.6;margin-bottom:10px}
  .prog-tags{display:flex;flex-wrap:wrap;gap:6px}
  .prog-tag{font-size:.68rem;background:var(--mist);color:var(--sky);padding:3px 10px;border-radius:20px}
  .testi-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
  @media(max-width:640px){.testi-grid{grid-template-columns:1fr}}
  .testi-card{background:var(--white);border-radius:18px;padding:28px;box-shadow:var(--card-shadow);position:relative;overflow:hidden}
  .testi-card::before{content:'❝';position:absolute;top:14px;right:20px;font-size:3.5rem;color:var(--mist);line-height:1;font-family:Georgia,serif;z-index:0}
  .testi-card blockquote{font-size:.82rem;color:var(--text);line-height:1.8;position:relative;z-index:1;margin:0 0 14px 0;font-style:normal}
  .testi-author{font-size:.72rem;font-weight:700;color:var(--sky);display:flex;align-items:center;gap:8px}
  .testi-author::before{content:'';display:block;width:22px;height:2px;background:var(--sky)}
  .online-feats{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
  @media(max-width:640px){.online-feats{grid-template-columns:1fr}}
  .online-feat{display:flex;gap:16px;background:var(--white);border-radius:16px;padding:22px;box-shadow:0 4px 18px rgba(13,27,42,.07);transition:transform .3s}
  .online-feat:hover{transform:translateY(-3px)}
  .of-icon{min-width:46px;height:46px;background:var(--mist);border-radius:12px;display:flex;align-items:center;justify-content:center}
  .of-icon .mi{font-size:1.4rem;color:var(--sky);display:inline;margin:0}
  .online-feat h4{font-size:.9rem;font-weight:700;color:var(--ink);margin-bottom:4px}
  .online-feat p{font-size:.78rem;color:var(--soft);line-height:1.55}
  .other-svcs{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
  @media(max-width:640px){.other-svcs{grid-template-columns:1fr}}
  .other-svc-card{background:var(--white);border-radius:18px;overflow:hidden;box-shadow:var(--card-shadow);transition:transform .3s}
  .other-svc-card:hover{transform:translateY(-4px)}
  .other-svc-card img{width:100%;height:160px;object-fit:cover}
  .other-svc-body{padding:22px}
  .other-svc-body h3{font-size:1rem;font-weight:700;color:var(--ink);margin-bottom:6px}
  .other-svc-body p{font-size:.79rem;color:var(--soft);line-height:1.6}
  .visit-tl{display:grid;grid-template-columns:repeat(4,1fr);gap:0;margin-top:40px;position:relative}
  .visit-tl::before{content:'';position:absolute;top:40px;left:12%;right:12%;height:2px;background:linear-gradient(90deg,var(--sky),var(--gold));z-index:0}
  @media(max-width:700px){.visit-tl{grid-template-columns:1fr 1fr}.visit-tl::before{display:none}}
  .vt-step{text-align:center;padding:0 10px;position:relative;z-index:1}
  .vt-dot{width:80px;height:80px;border-radius:50%;margin:0 auto 16px;display:flex;align-items:center;justify-content:center}
  .vt-dot .mi{font-size:1.7rem;color:#fff;display:inline;margin:0}
  .vt-step h4{font-size:.95rem;font-weight:700;color:var(--ink);margin-bottom:6px}
  .vt-step p{font-size:.77rem;color:var(--soft);line-height:1.55}
  /* CTA colors */
  #service-business-english .cta-section{background:linear-gradient(135deg,var(--sky2),var(--ink));text-align:center}
  #service-business-english .cta-section .s-label{color:var(--gold)}
  #service-business-english .cta-section .s-title{color:#fff}
  #service-business-english .cta-section .s-sub{color:rgba(255,255,255,.65);max-width:480px;margin:0 auto}
  #service-leadership .cta-section{background:linear-gradient(135deg,var(--gold),#c47418);text-align:center}
  #service-leadership .cta-section .s-label{color:rgba(255,255,255,.75)}
  #service-leadership .cta-section .s-title{color:var(--ink)}
  #service-leadership .cta-section .s-sub{color:rgba(13,27,42,.7);max-width:480px;margin:0 auto}
  #service-expert-workshops .cta-section{background:linear-gradient(135deg,var(--ink),#0a3347);text-align:center}
  #service-expert-workshops .cta-section .s-label{color:var(--gold)}
  #service-expert-workshops .cta-section .s-title{color:#fff}
  #service-expert-workshops .cta-section .s-sub{color:rgba(255,255,255,.6);max-width:480px;margin:0 auto}
  #service-in-person .cta-section{background:linear-gradient(135deg,var(--sky2),var(--sky));text-align:center}
  #service-in-person .cta-section .s-label{color:rgba(255,255,255,.75)}
  #service-in-person .cta-section .s-title{color:#fff}
  #service-in-person .cta-section .s-sub{color:rgba(255,255,255,.65);max-width:480px;margin:0 auto}
  #service-online-courses .cta-section{background:linear-gradient(135deg,var(--sky2),var(--gold));text-align:center}
  #service-online-courses .cta-section .s-label{color:rgba(255,255,255,.75)}
  #service-online-courses .cta-section .s-title{color:#fff}
  #service-online-courses .cta-section .s-sub{color:rgba(255,255,255,.65);max-width:480px;margin:0 auto}
  #service-other-services .cta-section{background:var(--pale);text-align:center}
  #service-teacher-training .cta-section{background:linear-gradient(135deg,var(--sky2),var(--ink));text-align:center}
  #service-teacher-training .cta-section .s-label{color:var(--gold)}
  #service-teacher-training .cta-section .s-title{color:#fff}
  #service-teacher-training .cta-section .s-sub{color:rgba(255,255,255,.65);max-width:480px;margin:0 auto}
  #service-expert-sharing .cta-section{background:var(--ink);text-align:center}
  #service-expert-sharing .cta-section .s-label{color:var(--gold)}
  #service-expert-sharing .cta-section .s-title{color:#fff}
  #service-expert-sharing .cta-section .s-sub{color:rgba(255,255,255,.6);max-width:480px;margin:0 auto}
  #service-expert-visit .cta-section{background:linear-gradient(135deg,var(--gold),#c47418);text-align:center}
  #service-expert-visit .cta-section .s-label{color:rgba(255,255,255,.75)}
  #service-expert-visit .cta-section .s-title{color:var(--ink)}
  #service-expert-visit .cta-section .s-sub{color:rgba(13,27,42,.7);max-width:480px;margin:0 auto}

  /* ══ PREMIUM ENHANCEMENTS ══ */

  /* Reduced-motion safety */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  }

  /* ── Three.js Earth Hero Visual ── */
  .hero-globe-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    animation: earthDrift 3.5s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
  }
  @keyframes earthDrift {
    from { opacity: 0; transform: translateX(80px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  #earth-3d {
    width: min(500px, 100%);
    height: min(500px, 100vw);
    position: relative;
    aspect-ratio: 1 / 1;
  }
  #earth-3d canvas { display: block; }

  /* ── Trusted-by Strip ── */
  .hero-trusted {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    margin-top: 28px;
    animation: fadeUp .8s .55s ease both;
  }
  .hero-trusted-label {
    font-size: .74rem; font-weight: 700; color: rgba(255,255,255,.45);
    letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
  }
  .hero-trusted-pills {
    display: flex; gap: 8px; flex-wrap: wrap;
  }
  .trusted-pill {
    display: flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px; padding: 5px 12px;
    font-size: .76rem; font-weight: 600; color: rgba(255,255,255,.75);
    backdrop-filter: blur(6px);
    transition: background .2s;
  }
  .trusted-pill .tp-dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0;
  }

  /* ── Testimonials Section ── */
  #testimonials {
    background: var(--pale);
    overflow: hidden;
  }
  .testimonials-header { text-align: center; max-width: 560px; margin: 0 auto 56px; }

  .testi-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media(max-width:900px) { .testi-carousel { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

  .testi-premium {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 32px;
    box-shadow: 0 8px 40px rgba(13,27,42,.09);
    position: relative; overflow: hidden;
    border: 1px solid rgba(13,27,42,.05);
    transition: transform .3s ease, box-shadow .3s ease;
    cursor: default;
  }
  .testi-premium:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(13,27,42,.15); }
  .testi-premium::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    border-radius: 20px 20px 0 0;
  }
  .testi-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; line-height: .8;
    color: var(--mist);
    position: absolute; top: 20px; right: 24px;
    font-weight: 700;
    user-select: none;
  }
  .testi-stars {
    display: flex; gap: 3px; margin-bottom: 18px;
  }
  .testi-star {
    width: 16px; height: 16px;
    color: var(--gold);
  }
  .testi-body {
    font-size: .9rem; line-height: 1.8;
    color: var(--text);
    font-style: italic;
    margin-bottom: 28px;
    position: relative; z-index: 1;
  }
  .testi-divider {
    width: 40px; height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    margin-bottom: 18px;
    border-radius: 2px;
  }
  .testi-author-row {
    display: flex; align-items: center; gap: 14px;
  }
  .testi-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sky2), var(--sky));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
  }
  .testi-author-name { font-size: .88rem; font-weight: 700; color: var(--ink); }
  .testi-author-role { font-size: .76rem; color: var(--sky); margin-top: 2px; font-weight: 600; }
  .testi-author-school { font-size: .73rem; color: var(--soft); margin-top: 1px; }

  /* ── Partner Logos Strip ── */
  #partners {
    background: var(--white);
    padding: 50px 5vw;
    overflow: hidden;
  }
  .partners-label {
    text-align: center;
    font-size: .72rem; font-weight: 700; letter-spacing: .14em;
    text-transform: uppercase; color: var(--soft);
    margin-bottom: 32px;
  }
  .partners-track-wrap { overflow: hidden; position: relative; }
  .partners-track-wrap::before,
  .partners-track-wrap::after {
    content: '';
    position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
    pointer-events: none;
  }
  .partners-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--white), transparent); }
  .partners-track-wrap::after { right: 0; background: linear-gradient(270deg, var(--white), transparent); }

  .partners-track {
    display: flex; gap: 48px; align-items: center;
    width: max-content;
    animation: scrollTrack 30s linear infinite;
  }
  .partners-track:hover { animation-play-state: paused; }
  @keyframes scrollTrack {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  .partner-logo-item {
    display: flex; align-items: center; justify-content: center;
    height: 50px; padding: 0 20px;
    background: var(--pale);
    border: 1px solid rgba(13,27,42,.07);
    border-radius: 12px;
    white-space: nowrap;
    font-size: .78rem; font-weight: 700;
    color: var(--soft);
    letter-spacing: .04em;
    transition: background .2s, color .2s, border-color .2s;
    cursor: default;
    min-width: 140px;
    text-align: center;
  }
  .partner-logo-item:hover {
    background: var(--mist); color: var(--sky); border-color: rgba(26,107,138,.25);
  }

  /* ── Enhanced Stats (animated counters) ── */
  .stat-num[data-count] { transition: none; }
  .stats-row .stat-item { position: relative; }
  .stat-accent {
    display: block;
    font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.4);
    margin-top: 2px; letter-spacing: .06em;
  }

  /* Stat progress bar */
  .stat-bar {
    width: 60%; height: 2px;
    background: rgba(255,255,255,.1);
    margin: 10px auto 0;
    border-radius: 2px;
    overflow: hidden;
  }
  .stat-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), #f0c040);
    width: 0%;
    border-radius: 2px;
    transition: width 1.4s ease;
  }

  /* ── Enhanced About Visual ── */
  .about-visual {
    position: relative; border-radius: 24px; overflow: hidden;
    aspect-ratio: 4/3;
  }
  .about-img-mosaic {
    position: absolute; inset: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
  }
  .about-mosaic-cell {
    background: var(--sky2);
    overflow: hidden;
  }
  .about-mosaic-cell:first-child { border-radius: 20px 0 0 0; }
  .about-mosaic-cell:nth-child(2) { border-radius: 0 20px 0 0; }
  .about-mosaic-cell:nth-child(3) { border-radius: 0 0 0 20px; }
  .about-mosaic-cell:last-child { border-radius: 0 0 20px 0; }
  .about-mosaic-cell img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .about-mosaic-cell:hover img { transform: scale(1.07); }

  /* Floating achievement badges */
  .achievement-badges {
    position: absolute; top: 16px; right: 16px; z-index: 3;
    display: flex; flex-direction: column; gap: 10px;
    animation: fadeUp .8s .4s ease both;
  }
  .ach-badge {
    background: var(--white); border-radius: 12px;
    padding: 10px 14px; box-shadow: 0 8px 28px rgba(13,27,42,.18);
    display: flex; align-items: center; gap: 10px;
    border: 1px solid rgba(13,27,42,.06);
    min-width: 155px;
  }
  .ach-badge-icon {
    width: 36px; height: 36px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .ach-badge-icon svg { width: 20px; height: 20px; }
  .ach-badge-text .num { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--sky); line-height: 1; }
  .ach-badge-text .lbl { font-size: .68rem; color: var(--soft); margin-top: 1px; }

  /* ── Process Timeline ── */
  #process { background: var(--white); }
  .process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-top: 16px;
  }
  .process-timeline::before {
    content: '';
    position: absolute;
    top: 42px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--sky), var(--gold));
    z-index: 0;
  }
  @media(max-width:768px) {
    .process-timeline { grid-template-columns: 1fr 1fr; }
    .process-timeline::before { display: none; }
  }
  .pt-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .pt-num-circle {
    width: 84px; height: 84px; border-radius: 50%;
    margin: 0 auto 20px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    background: var(--white);
    box-shadow: 0 0 0 8px var(--mist);
    transition: transform .3s;
  }
  .pt-step:hover .pt-num-circle { transform: scale(1.08); }
  .pt-num-inner {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--sky2), var(--sky));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(26,107,138,.3);
  }
  .pt-num-inner svg { width: 28px; height: 28px; }
  .pt-step h4 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
  .pt-step p { font-size: .8rem; color: var(--soft); line-height: 1.65; }

  /* ── Why Small World (Value Prop) ── */
  #why-us { background: linear-gradient(135deg, var(--ink) 0%, var(--sky2) 100%); }
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media(max-width:780px) { .why-grid { grid-template-columns: 1fr; } }
  .why-copy .section-title { color: var(--white); }
  .why-copy .section-label { color: var(--gold); }
  .why-copy .section-sub { color: rgba(255,255,255,.65); }
  .why-points { display: flex; flex-direction: column; gap: 20px; margin-top: 8px; }
  .why-point {
    display: flex; gap: 16px; align-items: flex-start;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 16px; padding: 20px;
    transition: background .25s, border-color .25s, transform .25s;
    cursor: default;
  }
  .why-point:hover { background: rgba(255,255,255,.1); border-color: rgba(232,160,32,.3); transform: translateX(6px); }
  .why-point-icon {
    width: 46px; height: 46px; border-radius: 12px;
    background: rgba(232,160,32,.15);
    border: 1px solid rgba(232,160,32,.2);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .why-point-icon svg { width: 22px; height: 22px; color: var(--gold); }
  .why-point h4 { font-size: .95rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
  .why-point p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }
  .why-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .why-card {
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px; padding: 28px 22px;
    text-align: center;
    transition: transform .3s, border-color .3s;
  }
  .why-card:hover { transform: translateY(-5px); border-color: rgba(232,160,32,.35); }
  .why-card.gold-border { border-color: rgba(232,160,32,.2); }
  .why-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem; font-weight: 700; color: var(--gold);
    line-height: 1;
  }
  .why-card-label { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: 6px; line-height: 1.5; }

  /* ── CTA Banner ── */
  .cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #c87020 100%);
    padding: 60px 5vw;
    text-align: center;
    position: relative; overflow: hidden;
  }
  .cta-banner::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .cta-banner-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
  .cta-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700; color: var(--ink);
    margin-bottom: 14px;
  }
  .cta-banner p { font-size: 1rem; color: rgba(13,27,42,.65); line-height: 1.65; margin-bottom: 32px; }
  .cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-dark-solid {
    background: var(--ink); color: var(--white);
    border: none; border-radius: 50px;
    padding: 15px 36px; font-size: .95rem; font-weight: 700;
    cursor: pointer; text-decoration: none;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-dark-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(13,27,42,.3); }
  .btn-white-outline {
    background: transparent; color: var(--ink);
    border: 2px solid rgba(13,27,42,.3); border-radius: 50px;
    padding: 13px 36px; font-size: .95rem; font-weight: 600;
    cursor: pointer; text-decoration: none;
    transition: all .2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-white-outline:hover { background: rgba(13,27,42,.08); border-color: rgba(13,27,42,.6); }

  /* ── Enhanced Contact ── */
  .contact-trust-strip {
    display: flex; gap: 20px; flex-wrap: wrap; margin-top: 36px;
  }
  .ct-badge {
    display: flex; align-items: center; gap: 8px;
    background: var(--mist); border-radius: 10px; padding: 10px 16px;
    border: 1px solid rgba(26,107,138,.1);
  }
  .ct-badge svg { width: 18px; height: 18px; color: var(--sky); flex-shrink: 0; }
  .ct-badge span { font-size: .78rem; font-weight: 600; color: var(--ink); }

  /* ── Floating Element Animations ── */
  .float-badge {
    position: absolute; z-index: 3;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(10px);
    border-radius: 14px; padding: 12px 18px;
    box-shadow: 0 12px 40px rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.5);
    display: flex; align-items: center; gap: 10px;
    animation: floatBadge 4s ease-in-out infinite;
  }
  .float-badge:nth-child(2) { animation-delay: -2s; }
  @keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
  }
  .float-badge-icon {
    width: 34px; height: 34px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .float-badge-icon svg { width: 18px; height: 18px; }
  .float-badge span { font-size: .8rem; font-weight: 700; color: var(--ink); }
  .float-badge small { display: block; font-size: .68rem; color: var(--soft); margin-top: 1px; }

  /* ── Staggered reveals ── */
  .reveal-stagger > * {
    opacity: 0; transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal-stagger.visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0s; }
  .reveal-stagger.visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: .1s; }
  .reveal-stagger.visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: .2s; }
  .reveal-stagger.visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: .3s; }

  /* ── Mobile responsive tweaks ── */
  @media(max-width:600px) {
    .hero-trusted-pills { gap: 6px; }
    .trusted-pill { font-size: .7rem; padding: 4px 10px; }
    .globe-svg-container { max-width: 300px; }
    .testi-premium { padding: 28px 22px; }
    .cta-banner { padding: 48px 5vw; }
    .why-card-num { font-size: 2rem; }
  }


  /* ═══════════════════════════════════════
     DARK MODE
     ═══════════════════════════════════════ */

  /* Sun/Moon toggle button */
  .dark-toggle {
    width: 36px; height: 36px;
    border: 1.5px solid rgba(13,27,42,.18);
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s, border-color .2s;
    position: relative;
    flex-shrink: 0;
  }
  .dark-toggle:hover { background: var(--mist); }
  .dark-toggle svg {
    position: absolute;
    transition: opacity .25s ease, transform .25s ease;
    stroke: var(--ink);
  }
  .dark-toggle .icon-sun  { opacity: 1; transform: scale(1)  rotate(0deg); }
  .dark-toggle .icon-moon { opacity: 0; transform: scale(0) rotate(-90deg); }

  /* Dark theme token overrides */
  body.dark {
    --pale: #152433;
    --white: #0f1e2c;
    --mist: #1a2d3d;
    --text: #c8dde8;
    --soft: #7ba3b8;
    --card-shadow: 0 8px 40px rgba(0,0,0,.30);
    background: #0d1b2a;
    color: var(--text);
  }

  /* Toggle in dark mode — show moon, hide sun */
  body.dark .dark-toggle { border-color: rgba(232,244,248,.2); }
  body.dark .dark-toggle:hover { background: rgba(255,255,255,.08); }
  body.dark .dark-toggle svg { stroke: #c8dde8; }
  body.dark .dark-toggle .icon-sun  { opacity: 0; transform: scale(0) rotate(90deg); }
  body.dark .dark-toggle .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }

  /* Nav */
  body.dark nav.scrolled {
    background: rgba(13,27,42,.97);
    border-bottom-color: rgba(232,244,248,.07);
  }
  body.dark .nav-logo-text { color: #e8f4f8; }
  body.dark .nav-links li > a { color: #c8dde8; }
  body.dark .nav-links li > a:hover { background: rgba(232,244,248,.08); color: #e8f4f8; }
  body.dark .hamburger { border-color: rgba(232,244,248,.2); color: #c8dde8; }
  body.dark .hamburger:hover { background: rgba(232,244,248,.08); }
  body.dark .nav-dropdown-menu { background: #0d1b2a; border-color: rgba(232,244,248,.08); }
  body.dark .nav-dropdown-item { color: #c8dde8; }
  body.dark .nav-dropdown-item:hover { background: rgba(232,244,248,.08); color: #e8f4f8; }
  body.dark .nav-item-icon { background: rgba(232,244,248,.08); border-color: rgba(232,244,248,.05); }
  body.dark .nav-item-desc { color: #6b8a99; }
  body.dark #mobileMenu { background: rgba(13,27,42,.98); border-top-color: rgba(232,244,248,.07); }
  body.dark .mobile-nav-link { color: #c8dde8; }
  body.dark .mobile-nav-link:hover { background: rgba(232,244,248,.08); color: #e8f4f8; }
  body.dark .mobile-nav-link .nav-item-icon { background: rgba(232,244,248,.08); }
  body.dark .mobile-divider { background: rgba(232,244,248,.07); }

  /* Section headings */
  body.dark .section-title { color: #e8f4f8; }

  /* Partner pill borders */
  body.dark .partner-logo-item { border-color: rgba(232,244,248,.08); }

  /* Testimonials */
  body.dark .testi-premium {
    border-color: rgba(232,244,248,.06);
    box-shadow: 0 8px 40px rgba(0,0,0,.25);
  }
  body.dark .testi-premium:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4); }
  body.dark .testi-quote-mark { color: rgba(255,255,255,.06); }

  /* Stat cards in why-us (already dark section — soften slightly) */
  body.dark .why-stat-card { border-color: rgba(255,255,255,.08); }

  /* Connect / social cards */
  body.dark .connect-card { border-color: rgba(232,244,248,.06); box-shadow: none; }

  /* Contact form inputs */
  body.dark .form-field input,
  body.dark .form-field textarea {
    border-color: rgba(232,244,248,.12);
    color: var(--text);
  }
  body.dark .form-field input:focus,
  body.dark .form-field textarea:focus { border-color: var(--sky); }

  /* Tabs */
  body.dark .tab-btn { border-color: rgba(232,244,248,.12); color: var(--text); }

  /* ─── Dark mode: restore --white in already-dark sections ─────────────────
     These sections use color: var(--white) for white text on dark backgrounds.
     Without this, overriding --white to #0f1e2c makes that text invisible.    */
  body.dark #hero,
  body.dark #why-us,
  body.dark #impact,
  body.dark footer,
  body.dark #backToTop { --white: #ffffff; }

  /* ─── Dark mode: readable headings on newly-dark card/section backgrounds ── */
  body.dark h3,
  body.dark h4,
  body.dark h5 { color: #e8f4f8; }

  /* Specific elements that use var(--ink) for text */
  body.dark .testi-author-name { color: #e8f4f8; }
  body.dark .connect-handle    { color: #e8f4f8; }
  body.dark .section-label     { color: var(--gold); }
  body.dark .bc-breadcrumb a,
  body.dark .bc-breadcrumb span { color: #c8dde8; }
  body.dark .nav-links li a.active { color: var(--sky); }

/* == Interactive Bento Gallery (Business English) == */
.be-bento-wrap{max-width:1000px;margin:0 auto}
.be-bento-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:200px;gap:14px}
.be-bento-item{position:relative;overflow:hidden;border-radius:16px;box-shadow:0 4px 24px rgba(0,0,0,.10);cursor:pointer}
.be-bento-item-1{grid-column:span 2;grid-row:span 2}
.be-bento-item-4{grid-column:span 3}
.be-bento-item img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s cubic-bezier(.25,.46,.45,.94)}
.be-bento-item:hover img{transform:scale(1.06)}
.be-bento-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(0,0,0,.72) 0%,rgba(0,0,0,.2) 50%,transparent 100%);display:flex;flex-direction:column;justify-content:flex-end;padding:18px;opacity:0;transition:opacity .3s ease;pointer-events:none}
.be-bento-item:hover .be-bento-overlay{opacity:1}
.be-bento-overlay h3{color:#fff;font-size:.92rem;font-weight:700;margin:0 0 3px;line-height:1.3}
.be-bento-overlay p{color:rgba(255,255,255,.75);font-size:.75rem;margin:0;line-height:1.4}
@media(max-width:640px){.be-bento-grid{grid-template-columns:1fr 1fr;grid-auto-rows:160px}.be-bento-item-1{grid-column:span 2;grid-row:span 1}.be-bento-item-4{grid-column:span 2}}
.be-modal-bd{position:fixed;inset:0;background:rgba(0,0,0,.55);backdrop-filter:blur(10px);-webkit-backdrop-filter:blur(10px);z-index:2000;display:flex;align-items:center;justify-content:center;opacity:0;pointer-events:none;transition:opacity .25s ease}
.be-modal-bd.open{opacity:1;pointer-events:all}
.be-modal-box{position:relative;width:min(90vw,820px);max-height:88vh;background:#f8fafb;border-radius:20px;overflow:hidden;display:flex;flex-direction:column;transform:scale(.95) translateY(10px);transition:transform .3s cubic-bezier(.34,1.56,.64,1)}
.be-modal-bd.open .be-modal-box{transform:scale(1) translateY(0)}
.be-modal-main{flex:1;display:flex;align-items:center;justify-content:center;padding:24px 24px 8px;min-height:280px;overflow:hidden}
.be-modal-main img{max-width:100%;max-height:55vh;border-radius:12px;object-fit:contain;box-shadow:0 8px 40px rgba(0,0,0,.18)}
.be-modal-caption{text-align:center;padding:8px 24px 10px}
.be-modal-caption h3{font-size:1.05rem;font-weight:700;color:#1a202c;margin:0 0 3px}
.be-modal-caption p{font-size:.82rem;color:#718096;margin:0}
.be-modal-close{position:absolute;top:12px;right:14px;width:30px;height:30px;border-radius:50%;border:none;cursor:pointer;background:rgba(0,0,0,.18);color:#fff;font-size:17px;display:flex;align-items:center;justify-content:center;transition:background .2s;z-index:10}
.be-modal-close:hover{background:rgba(0,0,0,.4)}
.be-dock{padding:10px 18px 14px;display:flex;justify-content:center;gap:10px;background:rgba(135,206,235,.18);border-top:1px solid rgba(135,206,235,.3);flex-wrap:wrap}
.be-dock-thumb{width:44px;height:44px;border-radius:10px;overflow:hidden;cursor:pointer;flex-shrink:0;border:2px solid transparent;transition:transform .22s cubic-bezier(.34,1.56,.64,1),border-color .2s;transform:rotate(var(--r,0deg))}
.be-dock-thumb.active{border-color:rgba(100,180,255,.8)!important;transform:scale(1.22) translateY(-8px) rotate(0deg)!important}
.be-dock-thumb:not(.active):hover{transform:scale(1.15) translateY(-5px) rotate(0deg)!important}
.be-dock-thumb img{width:100%;height:100%;object-fit:cover;pointer-events:none;display:block}
