/* --- CSS from cookie-policy.html --- */

    :root {
      --brand:       #F86969;
      --brand-light: #ff9090;
      --brand-pale:  rgba(248,105,105,0.12);
      --dark:        #22303A;
      --dark-mid:    #2d3f4a;
      --dark-light:  #3a5060;
      --white:       #ffffff;
      --off-white:   #f5f7fa;
      --gray:        #6b7280;
      --gray-light:  #e5e9f0;
      --text:        #1a2530;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 17px; }

    .container { width: min(92%, 1200px); margin: 0 auto; padding: 0 28px; }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(34,48,58,0.97); backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(248,105,105,0.18);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .logo { display: flex; align-items: center; text-decoration: none; }
    .nav-back {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.65); text-decoration: none;
      font-size: 0.88rem; font-weight: 500; transition: color 0.2s;
    }
    .nav-back:hover { color: var(--brand); }
    .nav-back i { font-size: 0.8rem; }

    /* ── PAGE HERO ── */
    .page-hero {
      background: var(--dark); padding: 120px 0 64px;
      border-bottom: 1px solid rgba(248,105,105,0.12);
    }
    .page-hero-label {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--brand); margin-bottom: 14px;
    }
    .page-hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white); line-height: 1.2; margin-bottom: 16px;
    }
    .page-hero-meta {
      font-size: 0.88rem; color: rgba(255,255,255,0.4);
    }

    /* ── CONTENT ── */
    .policy-body { padding: 72px 0 96px; }
    .policy-grid { display: grid; grid-template-columns: 220px 1fr; gap: 64px; align-items: start; }

    /* Sticky TOC */
    .policy-toc {
      position: sticky; top: 90px;
      background: var(--off-white); border-radius: 10px; padding: 24px 20px;
      border-left: 3px solid var(--brand);
    }
    .policy-toc h4 {
      font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
    }
    .policy-toc a {
      display: block; font-size: 0.84rem; color: var(--gray);
      text-decoration: none; padding: 5px 0; transition: color 0.2s;
      border-bottom: 1px solid var(--gray-light);
    }
    .policy-toc a:last-child { border-bottom: none; }
    .policy-toc a:hover { color: var(--brand); }

    /* Article */
    .policy-article section { margin-bottom: 52px; }
    .policy-article h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.45rem; color: var(--dark);
      margin-bottom: 16px; padding-bottom: 10px;
      border-bottom: 2px solid var(--gray-light);
    }
    .policy-article h3 {
      font-size: 1rem; font-weight: 700; color: var(--dark);
      margin: 24px 0 10px;
    }
    .policy-article p {
      font-size: 0.96rem; color: #3a4a58; line-height: 1.85; margin-bottom: 14px;
    }
    .policy-article ul {
      margin: 10px 0 16px 0; padding-left: 0; list-style: none;
    }
    .policy-article ul li {
      display: flex; gap: 10px; align-items: flex-start;
      font-size: 0.94rem; color: #3a4a58; line-height: 1.75; margin-bottom: 8px;
    }
    .policy-article ul li::before {
      content: ''; width: 6px; height: 6px; border-radius: 50%;
      background: var(--brand); flex-shrink: 0; margin-top: 9px;
    }

    /* Cookie table */
    .cookie-table {
      width: 100%; border-collapse: collapse; margin: 20px 0 10px;
      font-size: 0.88rem;
    }
    .cookie-table th {
      background: var(--dark); color: var(--white);
      padding: 11px 14px; text-align: left; font-weight: 600;
      font-size: 0.82rem; letter-spacing: 0.04em;
    }
    .cookie-table th:first-child { border-radius: 6px 0 0 0; }
    .cookie-table th:last-child  { border-radius: 0 6px 0 0; }
    .cookie-table td {
      padding: 11px 14px; border-bottom: 1px solid var(--gray-light);
      color: #3a4a58; vertical-align: top; line-height: 1.65;
    }
    .cookie-table tr:last-child td { border-bottom: none; }
    .cookie-table tr:nth-child(even) td { background: var(--off-white); }
    .cookie-tag {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      padding: 2px 9px; border-radius: 100px; white-space: nowrap;
    }
    .cookie-tag.essential  { background: rgba(34,197,94,0.12);  color: #15803d; }
    .cookie-tag.analytics  { background: rgba(59,130,246,0.12); color: #1d4ed8; }
    .cookie-tag.functional { background: rgba(168,85,247,0.12); color: #7e22ce; }

    /* Contact box */
    .policy-contact {
      background: var(--dark); border-radius: 10px; padding: 28px 32px;
      border-left: 4px solid var(--brand); margin-top: 8px;
    }
    .policy-contact p { color: rgba(255,255,255,0.65); margin: 0; font-size: 0.93rem; }
    .policy-contact a { color: var(--brand); text-decoration: none; }
    .policy-contact a:hover { text-decoration: underline; }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); padding: 40px 0 24px;
      border-top: 1px solid rgba(248,105,105,0.18);
    }
    .footer-bottom {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 0.8rem; color: rgba(255,255,255,0.3); flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom a { color: var(--brand); text-decoration: none; }

    @media (max-width: 768px) {
      .policy-grid { grid-template-columns: 1fr; }
      .policy-toc { position: static; }
    }
  

/* --- CSS from index.html --- */

    :root {
      --brand:       #F86969;
      --brand-light: #ff9090;
      --brand-pale:  rgba(248,105,105,0.12);
      --dark:        #22303A;
      --dark-mid:    #2d3f4a;
      --dark-light:  #3a5060;
      --white:       #ffffff;
      --off-white:   #f5f7fa;
      --gray:        #6b7280;
      --gray-light:  #e5e9f0;
      --text:        #1a2530;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 17px; }

    /* ── UTILITY ──────────────────────────────────────── */
    .container { width: min(92%, 1400px); margin: 0 auto; padding: 0 28px; }
    .section-label {
      display: inline-block; font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--brand); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 3vw, 2.55rem);
      color: var(--dark); line-height: 1.25; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.02rem; color: var(--gray);
      max-width: 620px; margin-bottom: 48px; line-height: 1.78;
    }
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 13px 30px; border-radius: 4px; font-weight: 600;
      font-size: 0.93rem; text-decoration: none; cursor: pointer;
      transition: all 0.2s ease; border: none; font-family: 'Inter', sans-serif;
    }
    .btn-primary { background: var(--brand); color: var(--white); }
    .btn-primary:hover { background: var(--brand-light); transform: translateY(-1px); box-shadow: 0 4px 18px rgba(248,105,105,0.35); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
    .btn-dark { background: var(--dark); color: var(--white); }
    .btn-dark:hover { background: var(--dark-mid); transform: translateY(-1px); }

    /* ── NAV ──────────────────────────────────────────── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(34,48,58,0.97); backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(248,105,105,0.18);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
    .logo { display: flex; align-items: center; gap: 0; text-decoration: none; }
    .logo svg { height: 28px; width: auto; }
    .nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
    .nav-links > li { position: relative; }
    .nav-links a {
      color: rgba(255,255,255,0.78); text-decoration: none;
      font-size: 0.88rem; font-weight: 500; transition: color 0.2s;
      display: flex; align-items: center; gap: 5px;
    }
    .nav-links a:hover { color: var(--brand); }
    .dropdown {
      position: absolute; top: calc(100% + 16px); left: 0;
      background: var(--dark); border: 1px solid rgba(255,255,255,0.08);
      border-top: 2px solid var(--brand); border-radius: 6px;
      padding: 8px 0; min-width: 270px;
      opacity: 0; pointer-events: none; transform: translateY(6px);
      transition: all 0.2s ease;
    }
    .nav-links > li:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }
    .dropdown a { display: block; padding: 10px 18px; font-size: 0.85rem; color: rgba(255,255,255,0.7); white-space: nowrap; }
    .dropdown a:hover { background: rgba(255,255,255,0.05); color: var(--brand); }
    .hamburger { display: none; background: none; border: none; color: var(--white); font-size: 1.3rem; cursor: pointer; }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      min-height: 108vh; position: relative;
      display: flex; align-items: center;
      overflow: hidden; padding-top: 70px;
      background: var(--dark);
    }
    #heroCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
    .hero > .container { width: 100%; }
    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1.2fr 0.85fr;
      gap: 48px; align-items: center;
    }
    .hero-content { position: relative; padding-left: 32px; }
    /* ── FIDS / Split-flap display ───────────────────────── */
    .hero-fids-col {
      position: relative; display: flex; flex-direction: column; align-items: stretch;
    }
    .fids-wrap {
      background: #0b0d14; border-radius: 14px; padding: 22px 20px 20px;
      border: 1px solid #1e2235;
      box-shadow: 0 24px 64px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
      width: 100%;
    }
    .fids-header-bar {
      display: flex; align-items: center; justify-content: space-between;
      margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #1e2235;
      font-family: 'Courier New', monospace;
      font-size: 0.62rem; letter-spacing: 0.18em; color: #3a4060; text-transform: uppercase;
    }
    .fids-status { display: flex; align-items: center; gap: 6px; }
    .fids-blink {
      width: 6px; height: 6px; border-radius: 50%; background: var(--brand);
      animation: fids-blink 1.4s ease-in-out infinite;
    }
    @keyframes fids-blink { 0%,100%{opacity:1} 50%{opacity:0.1} }
    .fids-board { display: flex; flex-direction: column; gap: 4px; margin-bottom: 16px; }
    .fids-row { display: grid; grid-template-columns: repeat(17, 1fr); gap: 3px; }
    .fids-tile {
      position: relative; aspect-ratio: 0.68;
      border-radius: 3px; border: 1px solid #1e2235;
      overflow: hidden; user-select: none;
      font-family: 'Courier New', 'Consolas', monospace;
      font-size: clamp(13px, 1.6vw, 21px); font-weight: 700;
    }
    /* Horizontal centre-line divider */
    .fids-tile::after {
      content: ''; position: absolute; top: 50%; left: 0; right: 0;
      height: 1px; background: rgba(0,0,0,0.85); pointer-events: none; z-index: 5;
    }
    /* Each half clips to its 50% zone; inner span is full tile height so the
       character appears centred across the whole tile and each half sees its slice */
    .ft-top, .ft-bot, .ft-flap {
      position: absolute; left: 0; right: 0; height: 50%; overflow: hidden;
    }
    .ft-top  { top: 0;    background: #1c1f30; }
    .ft-bot  { bottom: 0; background: #161824; }
    .ft-flap { top: 0; background: #1c1f30; transform-origin: center bottom;
               z-index: 4; visibility: hidden; }
    .ft-flap.go {
      visibility: visible;
      animation: flap-fall 0.08s ease-in forwards;
    }
    @keyframes flap-fall {
      0%   { transform: perspective(140px) rotateX(0deg); }
      100% { transform: perspective(140px) rotateX(-90deg); }
    }
    /* Inner span spans the full tile height (200% of the half-box).
       ft-top/flap: anchored at top → character centred, bottom half clipped.
       ft-bot: anchored at bottom → character centred, top half clipped. */
    .ft-top > span, .ft-flap > span {
      position: absolute; left: 0; right: 0; top: 0; height: 200%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Courier New','Consolas',monospace;
      font-size: clamp(24px, 3.2vw, 34px); font-weight: 700;
      color: #ffffff; line-height: 1;
    }
    .ft-bot > span {
      position: absolute; left: 0; right: 0; bottom: 0; height: 200%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Courier New','Consolas',monospace;
      font-size: clamp(24px, 3.2vw, 34px); font-weight: 700;
      color: #ffffff; line-height: 1;
    }
    .fids-wrap:hover .ft-top > span,
    .fids-wrap:hover .ft-bot > span,
    .fids-wrap:hover .ft-flap > span { color: #FFE066; }
    .fids-cta-btn {
      display: flex; align-items: center; justify-content: center; gap: 10px;
      width: 100%; padding: 13px 20px; margin-top: 4px;
      background: var(--brand); color: var(--white);
      border: none; border-radius: 6px; cursor: pointer;
      font-family: 'Courier New', monospace; font-size: 0.82rem;
      font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
      text-decoration: none; transition: background 0.2s;
      animation: fids-pulse 2.2s ease-in-out infinite;
    }
    .fids-cta-btn:hover { background: var(--brand-light); animation: none; }
    @keyframes fids-pulse {
      0%,100%{ box-shadow: 0 0 0 0 rgba(248,105,105,0.4); }
      50%    { box-shadow: 0 0 0 10px rgba(248,105,105,0); }
    }
    .fids-cta-arrow {
      display: inline-block; animation: fids-arrow 0.7s ease-in-out infinite alternate;
    }
    @keyframes fids-arrow { to { transform: translateX(5px); } }

    /* ── Global presence map (footer area) ───────────────── */
    .global-map-section {
      background: var(--dark); padding: 52px 0;
      border-top: 1px solid rgba(248,105,105,0.1);
    }
    .global-map-inner {
      display: grid; grid-template-columns: 7fr 3fr; gap: 52px; align-items: center;
    }
    .global-map-img-wrap { position: relative; }
    .global-map-img-wrap img {
      width: 100%; height: auto; display: block;
      opacity: 0.75; filter: drop-shadow(0 0 24px rgba(248,105,105,0.1));
    }
    /* Re-use pulse-dot for map below */
    .pulse-dot {
      position: absolute; left: 87%; top: 79%; transform: translate(-50%,-50%);
    }
    .pulse-dot-inner {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--brand); position: relative; z-index: 2;
      box-shadow: 0 0 0 3px rgba(248,105,105,0.4);
    }
    .pulse-dot-ring {
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      width: 10px; height: 10px; border-radius: 50%;
      background: transparent; border: 2px solid var(--brand);
      animation: pulse-ring 1.8s ease-out infinite;
    }
    .pulse-dot-ring:nth-child(2) { animation-delay: 0.6s; }
    .pulse-dot-ring:nth-child(3) { animation-delay: 1.2s; }
    @keyframes pulse-ring {
      0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
      100% { transform: translate(-50%,-50%) scale(4.5); opacity: 0; }
    }
    .office-pill {
      display: inline-flex; align-items: center; gap: 5px;
      font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.6);
      background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
      border-radius: 100px; padding: 5px 14px; margin: 4px;
    }
    .office-pill.hq { color: var(--brand); border-color: rgba(248,105,105,0.35); background: rgba(248,105,105,0.08); }
    @media (max-width: 900px) {
      .hero-inner { grid-template-columns: 1fr; }
      .hero-fids-col { display: none; }
      .global-map-inner { grid-template-columns: 1fr; gap: 32px; }
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(248,105,105,0.15); border: 1px solid rgba(248,105,105,0.38);
      border-radius: 100px; padding: 6px 18px; font-size: 0.76rem;
      color: var(--brand-light); font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; margin-bottom: 26px;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.4rem, 5vw, 4.1rem);
      color: var(--white); line-height: 1.12; margin-bottom: 14px;
    }
    .hero h1 em { font-style: normal; color: var(--brand); }
    .hero-sub {
      font-size: 1.05rem; color: rgba(255,255,255,0.5);
      margin-bottom: 18px; font-style: italic; font-weight: 300;
    }
    .hero p {
      font-size: 1.02rem; color: rgba(255,255,255,0.68);
      margin-bottom: 38px; max-width: 570px; line-height: 1.82;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

    /* ── FAST FACTS ───────────────────────────────────── */
    #fast-facts { background: var(--brand); padding: 0; }
    .facts-inner {
      display: flex; flex-wrap: wrap;
      align-items: stretch;
    }
    .fact-item {
      flex: 1; min-width: 180px;
      padding: 36px 28px;
      border-right: 1px solid rgba(255,255,255,0.2);
      text-align: center;
    }
    .fact-item:last-child { border-right: none; }
    .fact-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.4rem; font-weight: 800;
      color: var(--white); line-height: 1;
    }
    .fact-label {
      font-size: 0.8rem; color: rgba(255,255,255,0.78);
      margin-top: 6px; font-weight: 500; line-height: 1.4;
    }

    /* ── WHY CRYSP ────────────────────────────────────── */
    #why { padding: 96px 0; background: var(--off-white); }
    .why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .why-card {
      background: var(--white); border-radius: 10px;
      border: 1px solid var(--gray-light); padding: 30px 26px;
      transition: all 0.25s;
    }
    .why-card:hover { box-shadow: 0 10px 36px rgba(34,48,58,0.09); transform: translateY(-3px); border-color: transparent; }
    .why-icon {
      width: 46px; height: 46px; border-radius: 10px;
      background: var(--brand-pale); display: flex;
      align-items: center; justify-content: center;
      font-size: 1.1rem; color: var(--brand); margin-bottom: 16px;
    }
    .why-card h3 { font-size: 0.97rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
    .why-card p { font-size: 0.87rem; color: var(--gray); line-height: 1.72; }

    /* ── SERVICES ─────────────────────────────────────── */
    #services { padding: 96px 0; background: var(--white); }
    .services-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
    .tab-btn {
      padding: 9px 20px; border-radius: 100px; font-size: 0.85rem;
      font-weight: 600; cursor: pointer; border: 1.5px solid var(--gray-light);
      background: transparent; color: var(--gray); transition: all 0.2s;
      font-family: 'Inter', sans-serif;
    }
    .tab-btn:hover, .tab-btn.active { background: var(--dark); color: var(--white); border-color: var(--dark); }
    .tab-panel { display: none; }
    .tab-panel.active { display: grid; grid-template-columns: 1fr 1.15fr; gap: 60px; align-items: start; }
    .service-overview h3 {
      font-family: 'Playfair Display', serif; font-size: 1.75rem;
      color: var(--dark); margin-bottom: 14px; line-height: 1.3;
    }
    .service-overview p { font-size: 0.95rem; color: var(--gray); line-height: 1.82; margin-bottom: 26px; }
    .subservice-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
    .subservice-list li {
      display: flex; align-items: center; gap: 12px;
      padding: 13px 16px; background: var(--off-white);
      border-radius: 8px; font-size: 0.9rem; color: var(--text);
      font-weight: 500; border-left: 3px solid var(--brand);
      cursor: pointer; transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      user-select: none;
    }
    .subservice-list li:hover {
      background: #eaf0f6; transform: translateX(4px);
      box-shadow: 0 2px 12px rgba(248,105,105,0.12);
    }
    .subservice-list li i { color: var(--brand); font-size: 0.8rem; flex-shrink: 0; }
    .subservice-list li .svc-expand-hint {
      margin-left: auto; font-size: 0.72rem; color: var(--brand);
      font-weight: 700; opacity: 0; transition: opacity 0.2s; white-space: nowrap;
    }
    .subservice-list li:hover .svc-expand-hint { opacity: 1; }

    /* ── Service detail modal ─────────────────────────── */
    .svc-modal-overlay {
      position: fixed; inset: 0; z-index: 3000;
      background: rgba(10,15,22,0.82); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      opacity: 0; pointer-events: none;
      transition: opacity 0.25s ease;
    }
    .svc-modal-overlay.open { opacity: 1; pointer-events: all; }
    .svc-modal {
      position: relative; background: #1a2530;
      border: 1px solid rgba(248,105,105,0.25);
      border-top: 3px solid var(--brand);
      border-radius: 12px; padding: 38px 42px 34px;
      max-width: 580px; width: 92%; max-height: 82vh; overflow-y: auto;
      transform: translateY(24px) scale(0.97);
      transition: transform 0.25s ease;
    }
    .svc-modal-overlay.open .svc-modal { transform: translateY(0) scale(1); }
    .svc-modal-label {
      font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--brand); margin-bottom: 10px;
    }
    .svc-modal-title {
      font-family: 'Playfair Display', serif; font-size: 1.3rem;
      color: var(--white); line-height: 1.3; margin-bottom: 24px;
      padding-right: 32px;
    }
    .svc-modal-bullets { list-style: none; padding: 0; margin: 0 0 28px; }
    .svc-modal-bullets li {
      display: flex; gap: 14px; align-items: flex-start;
      padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      font-size: 0.92rem; color: rgba(255,255,255,0.72); line-height: 1.68;
    }
    .svc-modal-bullets li:last-child { border-bottom: none; }
    .svc-modal-bullets li::before {
      content: ''; width: 7px; height: 7px; border-radius: 50%;
      background: var(--brand); flex-shrink: 0; margin-top: 7px;
    }
    .svc-modal-close {
      position: absolute; top: 16px; right: 18px;
      background: none; border: none; color: rgba(255,255,255,0.4);
      font-size: 1.1rem; cursor: pointer; padding: 6px 10px;
      border-radius: 6px; transition: color 0.2s, background 0.2s; line-height: 1;
    }
    .svc-modal-close:hover { color: var(--white); background: rgba(255,255,255,0.08); }
    .svc-modal-cta {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--brand); color: var(--white); text-decoration: none;
      padding: 11px 24px; border-radius: 6px; font-size: 0.85rem; font-weight: 600;
      transition: background 0.2s;
    }
    .svc-modal-cta:hover { background: var(--brand-light); }
    .service-visual {
      background: var(--dark); border-radius: 12px; padding: 38px 34px;
    }
    .svc-vis-icon {
      width: 50px; height: 50px; background: var(--brand-pale);
      border: 1px solid rgba(248,105,105,0.3); border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; color: var(--brand); margin-bottom: 20px;
    }
    .service-visual h4 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 14px; }
    .service-visual p { color: rgba(255,255,255,0.58); font-size: 0.88rem; line-height: 1.78; margin-bottom: 20px; }
    .svc-divider { border: none; border-top: 1px solid rgba(255,255,255,0.09); margin: 20px 0; }
    .ai-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: var(--brand-pale); border: 1px solid rgba(248,105,105,0.4);
      border-radius: 100px; padding: 4px 14px; font-size: 0.75rem;
      color: var(--brand); font-weight: 700; letter-spacing: 0.06em;
      text-transform: uppercase; margin-bottom: 12px;
    }

    /* ── DIFFERENTIATORS ──────────────────────────────── */
    #why-us { padding: 96px 0; background: var(--dark); }
    #why-us .section-title { color: var(--white); }
    #why-us .section-sub { color: rgba(255,255,255,0.55); }
    .diff-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
    .diff-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 10px; padding: 30px 26px; transition: all 0.25s;
    }
    .diff-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(248,105,105,0.3); }
    .diff-num {
      font-family: 'Playfair Display', serif; font-size: 2.4rem;
      color: rgba(248,105,105,0.2); line-height: 1; margin-bottom: 10px;
    }
    .diff-card h3 { color: var(--brand); font-size: 0.97rem; font-weight: 700; margin-bottom: 8px; }
    .diff-card p { color: rgba(255,255,255,0.58); font-size: 0.87rem; line-height: 1.72; }

    /* ── CERTIFICATIONS ───────────────────────────────── */
    #certs { padding: 48px 0; background: var(--off-white); border-top: 1px solid var(--gray-light); overflow: hidden; }
    .certs-inner { display: flex; align-items: center; gap: 36px; }
    .certs-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--gray); white-space: nowrap; flex-shrink: 0; }
    .cert-track-wrap { overflow: hidden; flex: 1; }
    .cert-badges {
      display: flex; align-items: center; gap: 20px;
      width: max-content;
      animation: cert-scroll 24s linear infinite;
    }
    .cert-badges:hover { animation-play-state: paused; }
    @keyframes cert-scroll {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .cert-badge {
      background: var(--white); border: 1.5px solid var(--gray-light);
      border-radius: 10px; padding: 14px 20px; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      transition: border-color 0.2s; height: 80px; min-width: 110px;
    }
    .cert-badge:hover { border-color: var(--brand); box-shadow: 0 4px 16px rgba(248,105,105,0.15); }
    .cert-badge img { height: 46px; width: auto; object-fit: contain; display: block; }

    /* ── CASE STUDIES ─────────────────────────────────── */
    #case-studies { padding: 96px 0; background: var(--white); }
    .sector-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 44px; }
    .sector-btn {
      padding: 9px 20px; border-radius: 100px; font-size: 0.85rem;
      font-weight: 600; cursor: pointer; border: 1.5px solid var(--gray-light);
      background: transparent; color: var(--gray); transition: all 0.2s;
      font-family: 'Inter', sans-serif;
    }
    .sector-btn:hover, .sector-btn.active { background: var(--brand); color: var(--white); border-color: var(--brand); }
    .sector-panel { display: none; }
    .sector-panel.active { display: block; }
    .cs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
    .cs-card {
      border: 1px solid var(--gray-light); border-radius: 12px;
      overflow: hidden; transition: all 0.25s;
      display: flex; flex-direction: column;
    }
    .cs-card:hover { box-shadow: 0 10px 36px rgba(34,48,58,0.1); transform: translateY(-3px); border-color: transparent; }
    .cs-header { background: var(--dark); padding: 18px 26px 20px; height: 140px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
    .cs-tag {
      display: inline-block; font-size: 0.68rem; font-weight: 700;
      letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand);
      background: var(--brand-pale); border: 1px solid rgba(248,105,105,0.3);
      border-radius: 4px; padding: 3px 10px; margin-bottom: 10px;
    }
    .cs-header h3 { color: var(--white); font-size: 1.02rem; font-weight: 700; line-height: 1.4; }
    .cs-body { padding: 22px 28px; flex: 1; display: flex; flex-direction: column; }
    .cs-section-title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--brand); margin-bottom: 8px; }
    .cs-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.72; margin-bottom: 18px; }
    .cs-outcomes { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; flex: 1; }
    .cs-outcomes li {
      display: flex; align-items: flex-start; gap: 9px;
      font-size: 0.87rem; color: var(--text);
    }
    .cs-outcomes li i { color: var(--brand); font-size: 0.78rem; margin-top: 3px; flex-shrink: 0; }
    .cs-meta {
      display: flex; gap: 16px; flex-wrap: wrap;
      padding-top: 16px; border-top: 1px solid var(--gray-light);
      margin-top: auto;
    }
    .cs-metric {
      display: flex; flex-direction: column; gap: 2px;
    }
    .cs-metric-num { font-size: 1.15rem; font-weight: 800; color: var(--dark); }
    .cs-metric-label { font-size: 0.72rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.08em; }

    /* ── TESTIMONIALS ─────────────────────────────────── */
    #testimonials { padding: 96px 0; background: var(--off-white); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
    .testimonial-card {
      background: var(--white); border: 1px solid var(--gray-light);
      border-radius: 12px; padding: 34px 30px;
      position: relative; transition: all 0.25s;
    }
    .testimonial-card:hover { box-shadow: 0 10px 36px rgba(34,48,58,0.09); transform: translateY(-3px); border-color: transparent; }
    .quote-mark {
      font-family: 'Playfair Display', serif; font-size: 5rem;
      color: var(--brand); opacity: 0.2; line-height: 1;
      position: absolute; top: 14px; right: 26px;
    }
    .stars { color: var(--brand); font-size: 0.82rem; margin-bottom: 14px; }
    .testimonial-text { font-size: 0.93rem; color: var(--gray); line-height: 1.82; margin-bottom: 26px; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 13px; }
    .author-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      background: var(--dark); display: flex;
      align-items: center; justify-content: center;
      color: var(--brand); font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
    }
    .author-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); }
    .author-title { font-size: 0.78rem; color: var(--gray); margin-top: 2px; }

    /* ── ABOUT ────────────────────────────────────────── */
    #about { padding: 96px 0; background: var(--dark); }
    #about .section-title { color: var(--white); }
    #about .section-sub { color: rgba(255,255,255,0.55); }
    .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; align-items: start; }
    .team-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px; overflow: hidden; transition: all 0.25s;
    }
    .team-card:hover { border-color: rgba(248,105,105,0.35); background: rgba(255,255,255,0.06); }
    .team-photo-wrap {
      width: 100%; height: 440px; overflow: hidden;
      background: var(--dark-mid);
    }
    .team-photo-wrap img {
      width: 100%; height: 100%; object-fit: cover; object-position: center 0%;
      filter: grayscale(100%) contrast(1.05);
      transition: filter 0.4s ease;
    }
    .team-card:hover .team-photo-wrap img { filter: grayscale(80%) contrast(1.05); }
    .team-info { padding: 24px 24px 28px; display: flex; flex-direction: column; flex: 1; }
    .team-name { font-size: 1.08rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
    .team-title { font-size: 0.8rem; font-weight: 600; color: var(--brand); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 14px; }
    .team-creds {
      display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px;
    }
    .team-cred {
      font-size: 0.72rem; font-weight: 700; padding: 3px 9px;
      border-radius: 4px; background: rgba(248,105,105,0.12);
      border: 1px solid rgba(248,105,105,0.25); color: var(--brand);
    }
    .team-bio { font-size: 0.86rem; color: rgba(255,255,255,0.55); line-height: 1.72; }
    .team-former {
      margin-top: auto; padding-top: 14px; font-size: 0.78rem; color: rgba(255,255,255,0.35);
    }
    .team-former span { color: rgba(255,255,255,0.55); font-weight: 500; }
    .about-values { margin-top: 72px; }
    .values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 36px; }
    .value-card {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px; padding: 26px 22px; text-align: center;
    }
    .value-card i { font-size: 1.4rem; color: var(--brand); margin-bottom: 12px; display: block; }
    .value-card h4 { color: var(--white); font-size: 0.92rem; font-weight: 700; }

    /* ── CONTACT ──────────────────────────────────────── */
    #contact { padding: 96px 0; background: var(--off-white); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 72px; align-items: start; }
    .contact-info h3 { font-size: 1.25rem; color: var(--dark); font-weight: 700; margin-bottom: 14px; }
    .contact-info > p { color: var(--gray); font-size: 0.93rem; margin-bottom: 32px; line-height: 1.78; }
    .contact-detail { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 20px; }
    .contact-icon {
      width: 40px; height: 40px; background: var(--white);
      border: 1px solid var(--gray-light); border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      color: var(--dark); font-size: 0.9rem; flex-shrink: 0;
    }
    .contact-detail-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 2px; }
    .contact-detail-value { font-size: 0.9rem; color: var(--dark); font-weight: 500; line-height: 1.5; }
    .global-offices { margin-top: 32px; }
    .global-offices h4 { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray); margin-bottom: 12px; }
    .office-tags { display: flex; flex-wrap: wrap; gap: 7px; }
    .office-tag {
      display: flex; align-items: center; gap: 5px;
      background: var(--white); border: 1px solid var(--gray-light);
      border-radius: 100px; padding: 5px 13px;
      font-size: 0.8rem; color: var(--dark); font-weight: 500;
    }
    .office-tag i { color: var(--brand); font-size: 0.7rem; }
    .contact-form { background: var(--white); border-radius: 12px; padding: 42px 38px; box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
    .form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 18px; }
    .form-group label { font-size: 0.78rem; font-weight: 600; color: var(--dark); letter-spacing: 0.03em; }
    .form-group input, .form-group select, .form-group textarea {
      padding: 11px 15px; border: 1.5px solid var(--gray-light);
      border-radius: 6px; font-family: 'Inter', sans-serif; font-size: 0.9rem;
      color: var(--text); background: var(--white); transition: border-color 0.2s; outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brand); }
    .form-group textarea { resize: vertical; min-height: 108px; }
    .form-submit { width: 100%; justify-content: center; font-size: 0.97rem; padding: 15px; }

    /* ── FOOTER ───────────────────────────────────────── */
    footer { background: var(--dark); padding: 56px 0 28px; border-top: 1px solid rgba(248,105,105,0.18); }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
    .footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.4); margin-top: 16px; line-height: 1.8; max-width: 300px; }
    .footer-col h4 { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--brand); margin-bottom: 16px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.48); text-decoration: none; transition: color 0.2s; }
    .footer-col ul a:hover { color: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding-top: 26px;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px;
    }
    .footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.28); }
    .social-links { display: flex; gap: 10px; }
    .social-links a {
      width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.12);
      border-radius: 6px; display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.42); font-size: 0.82rem; text-decoration: none; transition: all 0.2s;
    }
    .social-links a:hover { background: var(--brand); color: var(--white); border-color: var(--brand); }

    /* ── MOBILE NAV PANEL ─────────────────────────────────── */
    .mobile-nav {
      display: none; position: fixed; top: 70px; left: 0; right: 0; z-index: 998;
      background: var(--dark); border-bottom: 2px solid rgba(248,105,105,0.25);
      padding: 6px 0 20px; max-height: calc(100vh - 70px); overflow-y: auto;
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
    }
    .mobile-nav.open { display: block; }
    .mobile-nav a {
      display: block; padding: 13px 24px;
      color: rgba(255,255,255,0.78); text-decoration: none;
      font-size: 0.93rem; font-weight: 500; transition: color 0.2s;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .mobile-nav a.sub { padding-left: 40px; font-size: 0.84rem; color: rgba(255,255,255,0.45); }
    .mobile-nav a:hover { color: var(--brand); background: rgba(255,255,255,0.03); }
    .mobile-nav-cta { padding: 18px 24px 4px; }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 960px) {
      .nav-links, nav .btn { display: none; }
      .hamburger { display: block; }
      .why-grid, .diff-grid { grid-template-columns: repeat(2,1fr); }
      .tab-panel.active { grid-template-columns: 1fr; }
      .service-visual { display: none; }
      .cs-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; gap: 44px; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: repeat(2,1fr); }
      .values-grid { grid-template-columns: repeat(2,1fr); }
      .team-photo-wrap { height: 240px; }
    }
    @media (max-width: 768px) {
      #why, #services, #why-us, #case-studies, #testimonials, #about, #contact { padding: 72px 0; }
      .services-tabs, .sector-tabs {
        flex-wrap: nowrap; overflow-x: auto;
        padding-bottom: 8px; scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
      }
      .tab-btn, .sector-btn { white-space: nowrap; flex-shrink: 0; }
    }
    @media (max-width: 640px) {
      #why, #services, #why-us, #case-studies, #testimonials, #about, #contact { padding: 56px 0; }
      .section-sub { margin-bottom: 30px; }
      .why-grid, .diff-grid, .team-grid { grid-template-columns: 1fr; }
      .team-photo-wrap { height: 300px; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .contact-form { padding: 26px 20px; }
      .contact-grid { gap: 32px; }
      .fact-item {
        flex-basis: 50%; min-width: 0; padding: 22px 14px;
        border-right: 1px solid rgba(255,255,255,0.15);
        border-bottom: 1px solid rgba(255,255,255,0.1);
      }
      .fact-item:nth-child(2n) { border-right: none; }
      .fact-item:last-child { border-bottom: none; }
      .fact-num { font-size: 1.9rem; }
      .fact-label { font-size: 0.74rem; }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .hero-actions { flex-direction: column; gap: 10px; }
      .hero-actions .btn { width: 100%; justify-content: center; }
      .services-tabs, .sector-tabs {
        flex-wrap: nowrap; overflow-x: auto;
        padding-bottom: 8px; scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
      }
      .tab-btn, .sector-btn { white-space: nowrap; flex-shrink: 0; }
    }
  


/* Convert logo to white */
.logo img { filter: brightness(0) invert(1); }
