/* ===============================================================
   First Link Dubai — site styles
   Built on shadcn/ui tokens; brand layer adds navy + gold + WhatsApp.
   =============================================================== */



/* ---------- Brand layer on top of shadcn tokens ---------- */
:root{
  /* Brand — teal pulled from the First Link Dubai logo */
  --brand:        oklch(0.74 0.07 188);   /* logo teal       ≈ #57c5bf */
  --brand-2:      #0f3d46;               /* brand dark teal ≈ #0f3d46 */
  --brand-3:      oklch(0.88 0.06 188);  /* pale teal       ≈ #c4ece9 */
  --brand-4:      oklch(0.96 0.03 188);   /* whisper teal    ≈ #e6f6f4 */
  --brand-ink:    oklch(0.985 0 0);
  --accent:       oklch(0.55 0.10 195);   /* deeper teal     ≈ #2a8a85 */
  --accent-2:     oklch(0.80 0.09 188);   /* mid teal        ≈ #87d6d0 */
  --gold:         oklch(0.88 0.06 188);   /* pale teal — no gold */
  --gold-2:       oklch(0.94 0.03 188);   /* whisper teal — no gold */
  --sky:          oklch(0.82 0.06 195);   /* light wash      ≈ #b6e2dd */
  --sky-soft:     oklch(0.96 0.025 195);
  --wa:           #25d366;
  --wa-2:         #128c5b;
  --ink:          oklch(0.20 0.03 195);   /* deep teal-black for body */

  /* Glassmorphism (white frosted) */
  --glass-bg:        linear-gradient(140deg, rgba(255,255,255,.65), rgba(255,255,255,.35));
  --glass-bg-strong: linear-gradient(140deg, rgba(255,255,255,.85), rgba(255,255,255,.55));
  --glass-bg-dark:   linear-gradient(140deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
  --glass-border:    1px solid rgba(255,255,255,0.12);
  --glass-border-dark:1px solid rgba(255,255,255,.10);
  --glass-shadow:    0 8px 24px -10px rgba(12,42,85,.22), inset 0 1px 0 rgba(255,255,255,.7);
  --glass-blur:      blur(16px) saturate(180%);

  /* Surfaces */
  --bg:           #ffffff;
  --bg-soft:      #f8f9fa;
  --bg-sky:       #ffffff;
  --hairline:     oklch(0.92 0.014 195);
  --hairline-2:   oklch(0.86 0.018 195);

  /* Type scale */
  --fs-display:   clamp(2.75rem, 1.4rem + 5vw, 6rem);
  --fs-display-sm:clamp(2.25rem, 1.4rem + 3.4vw, 4.25rem);
  --fs-h2:        clamp(1.875rem, 1.1rem + 2.3vw, 3rem);
  --fs-h3:        clamp(1.25rem, 1rem + 0.7vw, 1.625rem);
  --fs-lead:      clamp(1.05rem, 0.95rem + 0.5vw, 1.3rem);

  /* Layout */
  --container:    1280px;
  --container-x:  clamp(1.25rem, 3vw, 2.5rem);
  --section-y:    clamp(4.5rem, 5vw + 1.5rem, 8rem);
}

/* ---------- Resets ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; overflow-x: clip; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html, body {
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
  text-rendering: optimizeLegibility;
}
a, button, [role="button"], input, select, textarea {
  touch-action: manipulation;
}
@media (max-width: 768px) {
  * { -webkit-tap-highlight-color: transparent; }
}
body{
  margin:0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
a { color: inherit; text-decoration: none; }
img,svg { display: block; max-width: 100%; }
button{font-family:inherit;}
:focus-visible{ outline: 3px solid color-mix(in oklab, var(--brand) 55%, transparent); outline-offset: 2px; border-radius: 6px;}

/* Skip link — visible only when keyboard-focused */
.skip-link{
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  padding: .65rem 1rem;
  background: var(--brand-2);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transform: translateY(-200%);
  transition: transform .15s ease;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.35);
}
.skip-link:focus,
.skip-link:focus-visible{ transform: translateY(0); }

/* Reinforce focus for keyboard users on interactive surfaces */
.btn:focus-visible,
.nav-links a:focus-visible,
.lead-contact-row:focus-visible,
.svc-card:focus-visible,
.float-btn:focus-visible,
.meet-play:focus-visible{
  outline: 3px solid color-mix(in oklab, var(--brand) 70%, transparent);
  outline-offset: 3px;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-x);
}

.section{ padding-block: var(--section-y); }
.section-soft{ background: var(--bg-soft); }
.section-dark{
  background: var(--brand-2);
  color: var(--brand-ink);
}

/* ---------- Reusable section heads ---------- */
.section-head{
  max-width: 900px;
  margin: 0 0 clamp(2.5rem,4vw,4rem);
  overflow: visible;
}
.section-head-tight{ margin-bottom: 2.25rem; }
.section-eyebrow{
  display:inline-flex;
  align-items:center;
  gap: .5rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0f3d46;
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  padding: .35rem .65rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.section-head-dark .section-eyebrow,
.section-eyebrow-light{
  color: var(--brand-3);
  background: color-mix(in oklab, var(--brand-3) 18%, transparent);
}
#contact .section-eyebrow{
  color: #123f48;
  background: rgba(18,63,72,.08);
  border-color: rgba(18,63,72,.15);
}
#contact .section-eyebrow .dot{ background: #25d36a; }
.section-title{
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 .9rem;
  text-wrap: balance;
}
.section-sub{
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 68%, transparent);
  margin: 0;
  text-wrap: pretty;
  max-width: 60ch;
}
.section-head-dark .section-sub{
  color: color-mix(in oklab, var(--brand-ink) 75%, transparent);
}

/* ---------- Buttons ---------- */
.btn{
  --h: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  height: var(--h);
  padding: 0 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  position: relative;
}
.btn:active{ transform: translateY(1px); }
.btn-sm{ --h: 38px; font-size: .875rem; padding: 0 .85rem; }
.btn-lg{ --h: 56px; font-size: 1rem; padding: 0 1.4rem; border-radius: 12px; }
.btn-xl{ --h: 64px; font-size: 1.05rem; padding: 0 1.6rem; border-radius: 14px; }
.btn-block{ width: 100%; }

.btn i, .btn svg{ flex: none; }

/* Variants */
.btn-wa{ background: var(--wa); color: #06281a; border-color: color-mix(in oklab, #000 10%, var(--wa)); box-shadow: 0 1px 0 rgba(0,0,0,.06), 0 8px 18px -10px rgba(18,140,91,.6); }
.btn-wa:hover{ background: color-mix(in oklab, var(--wa) 88%, #000); }
.btn-wa em{ font-style: normal; opacity: .65; font-weight: 500; font-size: .82rem; margin-left: .35rem; }

.btn-ink{ background: #fff; color: var(--brand-2); border: none; }
.btn-ink:hover{ background: #fff; }

.btn-calc-cta{
  background: #000;
  color: #fff !important;
  border-color: transparent;
  border-radius: 999px !important;
  font-weight: 700;
  letter-spacing: .01em;
  height: 48px;
  min-width: 177px;
  padding: 0 1.5rem;
  transition: background .15s, box-shadow .15s, transform .1s;
}
.btn-calc-cta:hover{
  background: #222;
  box-shadow: 0 4px 16px rgba(0,0,0,.28);
  transform: translateY(-1px);
}
.btn-calc-cta:active{ transform: scale(.97); }

.btn-outline{ background: #fff; color: var(--ink); border-color: color-mix(in oklab, var(--brand) 35%, var(--hairline)); }
.btn-outline:hover{ border-color: var(--brand); color: var(--brand); }

.btn-outline-light{ background: transparent; color: var(--brand-ink); border-color: color-mix(in oklab, var(--brand-ink) 30%, transparent); }
.btn-outline-light:hover{ background: color-mix(in oklab, var(--brand-ink) 8%, transparent); }

.btn-teal,
.btn-sky{
  background: linear-gradient(180deg, var(--brand) 0%, color-mix(in oklab, var(--brand) 80%, #000) 100%);
  color: #fff;
  border-color: color-mix(in oklab, var(--brand) 80%, #000);
  box-shadow: 0 1px 0 rgba(255,255,255,.25) inset, 0 14px 28px -14px color-mix(in oklab, var(--brand) 80%, transparent);
}
.btn-teal:hover,
.btn-sky:hover{ background: linear-gradient(180deg, color-mix(in oklab, var(--brand) 92%, #000), color-mix(in oklab, var(--brand) 70%, #000)); }

.btn-ghost{ background: transparent; color: var(--ink); }
.btn-ghost:hover{ background: var(--bg-soft); }

/* ───────────────────────── ANNOUNCE BAR ───────────────────────── */
.announce-bar{
  will-change: transform;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: #0f3d46;
  color: #fff;
  display: flex;
  align-items: center;
  min-height: 36px;
  height: auto;
  overflow: hidden;
  will-change: transform, opacity;
}
.announce-bar.dismissing{
  transition: transform 0.45s cubic-bezier(.4,0,.2,1), opacity 0.4s ease;
}
.nav{
  will-change: transform;
}
.nav.dismissing{
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.announce-track{
  flex: 1;
  overflow: hidden;
  min-width: 0;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.announce-belt{
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: announce-scroll 32s linear infinite;
  width: max-content;
}
.announce-belt:hover{ animation-play-state: paused; }
.announce-item{
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .01em;
  padding: 0 1.25rem;
}
.announce-sep{
  opacity: .45;
  font-size: .7rem;
  flex: none;
}
.announce-bar a{
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.announce-bar a:hover{ opacity: .8; }
/* Announce bar utility icons */
.announce-utils{
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
  padding-right: .35rem;
  flex-shrink: 0;
}
.announce-util-btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  border-radius: 5px;
  border: none;
  background: transparent;
  color: rgba(255,255,255,.7);
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.announce-util-btn:hover{ background: rgba(255,255,255,.12); color: #fff; }
/* Language dropdown */
.announce-lang{ position: relative; }
.announce-lang-drop{
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #0a2c33;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 10px;
  overflow: hidden;
  min-width: 130px;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  z-index: 100;
}
.announce-lang.open .announce-lang-drop{ display: block; }
.announce-lang-drop button{
  display: flex;
  align-items: center;
  gap: .45rem;
  width: 100%;
  padding: .55rem .9rem;
  background: transparent;
  border: none;
  color: rgba(255,255,255,.85);
  font-size: .8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: background .12s ease;
}
.announce-lang-drop button:hover{ background: rgba(255,255,255,.08); color: #fff; }
/* Theme toggle */
.dark .icon-sun{ display: none !important; }
.dark .icon-moon{ display: block !important; }

.announce-close{
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 .75rem;
  height: 36px;
  flex: none;
  transition: color .15s;
}
.announce-close:hover{ color: #fff; }
.announce-bar.hidden, .announce-bar.dismissed{ transform: translateY(-100%); opacity: 0; pointer-events: none; }
@keyframes announce-scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .announce-belt{ animation: none; }
}

/* ───────────────────────── NAV (Apple liquid glass) ───────────────────────── */
.nav{
  will-change: transform;
  transform: translateZ(0);
  position: fixed;
  top: var(--bar-h, 36px);
  left: 0; right: 0;
  width: 100%;
  transform: translate3d(0,0,0);
  z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  border-radius: 0;
  will-change: transform;
  isolation: isolate;
}
/* Top specular sheen */
.nav::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,.08) 26%, rgba(255,255,255,0) 55%),
    radial-gradient(120% 80% at 50% -20%, rgba(255,255,255,.5) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
}
/* Bottom edge refraction */
.nav::after{
  content:"";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.18) 18%,
    rgba(255,255,255,.18) 82%,
    rgba(255,255,255,0) 100%);
  pointer-events: none;
  z-index: 0;
}
.nav-inner{ position: relative; z-index: 1; }
.nav-inner{
  padding: 0.75rem clamp(1rem, 4vw, 2.5rem);
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  flex: none;
  padding-right: 1rem;
  position: relative;
}
.brand::after{ display: none; }
.brand-mark-img{
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 2px 6px rgba(0,60,60,.18));
}
.nav .brand-word em{ display: none; }
.nav .brand-word b{ padding-top: 4px; color: #0f3d46; }
.brand-word{ display: flex; flex-direction: column; line-height: 1; }
.brand-word b{
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--brand-2);
}
.brand-word em{
  font-style: normal;
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(15,61,70,.55);
  margin-top: .18rem;
}
/* Footer brand — bigger */
.footer .brand-word b{ font-size: 1.35rem; color: #fff; }
.footer .brand-word em{ font-size: .7rem; color: rgba(255,255,255,.55); letter-spacing: .1em; }
.footer .brand-mark-img{ width: 48px; height: 48px; }
.footer .brand{ padding-right: 0; margin-left: 0; flex-direction: column; align-items: flex-start; gap: 1rem; }
  color: color-mix(in oklab, var(--brand-2) 60%, transparent);
  font-weight: 500;
  margin-top: 3px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand-dark b{ color: var(--brand-ink); }
.brand-dark em{ color: color-mix(in oklab, var(--brand-ink) 60%, transparent); }

.nav-links{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: clamp(1rem, 1.6vw, 1.75rem);
  margin: 0;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--brand-2) 75%, transparent);
  white-space: nowrap;
}
.nav-links a{
  position: relative;
  padding: .35rem 0;
  transition: color .15s ease;
}
.nav-links a:hover{ color: var(--brand-2); }
.nav-links a::after{
  content:"";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .2s ease;
}
.nav-links a:hover::after{ width: 100%; }


.nav-dropdown{
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 940px;
  max-width: calc(100vw - 40px);
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 6px rgba(0,0,0,.04), 0 20px 60px rgba(0,0,0,.1);
  border: 1px solid #e8e8e8;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 300;
  display: flex;
  overflow: hidden;
}
.nav-has-dropdown:hover .nav-dropdown{
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown::before{ display: none; }
/* Left panel */
.nav-dd-left{
  flex: 1;
  padding: 2rem 2rem 1.75rem;
  border-right: 1px solid #ebebeb;
}
.nav-dd-heading{
  font-size: .82rem;
  color: #888;
  font-weight: 400;
  margin: 0 0 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid #ebebeb;
}
.nav-dd-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .1rem;
}
.nav-dd-item{
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.1rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
  transition: background .15s;
}
.nav-dd-item:hover{ background: #eef9f6; }
.nav-dd-item:hover .nav-dd-body b{ color: #01b0ca; }
.nav-dd-icn{
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  color: #01b0ca; flex-shrink: 0; margin-top: 2px;
}
.nav-dd-icn i{ width: 22px; height: 22px; stroke-width: 1.5; }
.nav-dd-body{ display: flex; flex-direction: column; gap: .22rem; }
.nav-dd-body b{ font-size: .9rem; font-weight: 600; color: #1a1a2e; line-height: 1.25; transition: color .15s; }
.nav-dd-body em{
  font-style: normal; font-size: .79rem; color: #666;
  line-height: 1.5;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
/* Right panel */
.nav-dd-right{
  width: 320px; flex-shrink: 0;
  padding: 2rem 1.75rem 1.75rem;
  display: flex; flex-direction: column; gap: 1rem;
  background: #f7f8fa;
}
.nav-dd-right-label{
  font-size: .75rem; color: #888; font-weight: 400; letter-spacing: .01em;
}
.nav-dd-right-img{
  border-radius: 12px; overflow: hidden; height: 180px; flex-shrink: 0;
}
.nav-dd-right-img img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-dd-right-body{ display: flex; flex-direction: column; gap: .55rem; }
.nav-dd-right-body h4{ font-size: 1.05rem; font-weight: 700; color: #1a1a2e; line-height: 1.3; margin: 0; }
.nav-dd-right-body p{ font-size: .8rem; color: #555; line-height: 1.55; margin: 0; }
.nav-dd-right-cta{
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .83rem; font-weight: 600; color: #1a1a2e;
  text-decoration: none;
  border-bottom: 1.5px solid #1a1a2e;
  padding-bottom: 1px; width: fit-content;
  transition: color .15s, border-color .15s;
}
.nav-dd-right-cta:hover{ color: #01b0ca; border-color: #01b0ca; }


.nav-cta{ display: flex; align-items: center; gap: .5rem; flex: none; }
.nav-cta .btn-wa{
  border-radius: 999px;
  padding: 0 1.1rem;
  height: 44px;
}
.nav-cta .btn-ghost{
  border-radius: 999px;
  height: 40px;
  padding: 0 .85rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--brand-2) 85%, transparent);
}
.nav-cta .btn-ghost:hover{ background: color-mix(in oklab, var(--brand) 8%, transparent); color: #0f3d46; }

/* Spacer below fixed nav so content doesn't collide */
body::before{
  content: none;
}



.glass{
  background: var(--glass-bg);
  border: var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.glass-dark{
  background: var(--glass-bg-dark);
  border: var(--glass-border-dark);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}

/* ───────────────────────── HERO FULLSCREEN SLIDESHOW ───────────────────────── */
.hero-fs{
  position: relative;
  width: 100%;
  background: #0a2c33;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a2c33;
}
.hfs-bg{ position: absolute; inset: 0; z-index: 0; }
.hfs-slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  z-index: 1;
  backface-visibility: hidden;
  animation: hfsKenBurns 10s ease-in-out infinite alternate;
  transition: opacity 1.8s ease-in-out;
  will-change: opacity, transform;
}
.hfs-slide--active{
  opacity: 1;
  z-index: 2;
}
.hfs-slide--active.hfs-slide--first{
  transition: none;
}
@keyframes hfsKenBurns{
  from { transform: scale(1); }
  to   { transform: scale(1.08); }
}

.hfs-overlay{
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.38) 50%,
    rgba(0,0,0,.62) 100%
  );
}
.hfs-inner{
  position: relative; z-index: 2;
  text-align: center; color: #fff;
  max-width: 860px;
  padding: 0 2rem;
  margin-top: calc(var(--nav-h, 72px) + 20px);
}
.hfs-eyebrow{
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; color: #fff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.hfs-eyebrow-line{ flex: 0 0 44px; height: 1px; background: #fff; opacity: .45; }
.hfs-title{
  font-size: clamp(2.6rem, 5.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 2px 24px rgba(0,0,0,.5);
}
.hfs-sub{
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 2.25rem;
  text-wrap: pretty;
}
.hfs-cta{
  display: flex; gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.hfs-btn-primary{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  background: #fff; color: #0f3d46;
  font-weight: 700; font-size: 1rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-family: inherit;
  transition: background .2s, transform .15s;
  cursor: pointer;
}
.hfs-btn-primary:hover{ background: #fff; transform: translateY(-2px); }
.hfs-btn-secondary{
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.2rem;
  background: transparent; color: #fff;
  font-weight: 700; font-size: 1rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.55);
  cursor: pointer; font-family: inherit;
  transition: background .2s, border-color .2s, transform .15s;
}
.hfs-btn-secondary .hfs-arrow-icon{
  display: inline-block;
  transition: transform .25s cubic-bezier(.22,1,.36,1);
}
.hfs-btn-secondary:hover .hfs-arrow-icon{ transform: translateX(6px); }
.hfs-btn-secondary:hover{ background: rgba(255,255,255,.1); border-color: #fff; }
.hfs-trust{
  display: flex; align-items: center; justify-content: center;
  gap: .6rem; font-size: 1rem;
  color: rgba(255,255,255,.75);
  flex-wrap: wrap;
}
.hfs-trust-sep{ opacity: .35; }
.hfs-platforms{
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: nowrap;
  margin-top: .7rem;
}
.hfs-plat svg[viewBox="200 360 1650 490"]{ width: 44px !important; height: 13px !important; }
.hfs-plat{
  display: flex; align-items: center; gap: .35rem;
  padding: .3rem .9rem;
}
.hfs-plat-name{
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.9);
  letter-spacing: .01em;
}
.hfs-plat-sep{
  width: 1px; height: 24px;
  background: rgba(255,255,255,.25);
  flex-shrink: 0;
}
/* Arrows */
.hfs-arrow{
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 3;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.5);
  background: rgba(0,0,0,.2);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  backdrop-filter: none;
}
.hfs-arrow:hover{ background: rgba(255,255,255,.15); border-color: #fff; }
.hfs-arrow--prev{ left: 2.5rem; }
.hfs-arrow--next{ right: 2.5rem; }
/* Dots */
.hfs-dots{
  position: absolute; bottom: 2.25rem;
  left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; gap: .5rem;
}
.hfs-dot{
  width: 28px; height: 4px;
  border-radius: 2px; border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer; padding: 0;
  transition: background .35s, width .35s cubic-bezier(.16,1,.3,1);
}
.hfs-dot--active{ background: #fff; width: 48px; }
/* Ticker */
.hfs-ticker{
  overflow: hidden;
  background: #0f3d46;
  padding: .85rem 0;
  white-space: nowrap;
}
.hfs-ticker-track{
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: hfsTicker 36s linear infinite;
}
.hfs-ticker-track span{
  color: rgba(255,255,255,.82);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .04em;
  padding: 0 .15rem;
}
.hfs-ticker-dot{ color: #75bab3 !important; opacity: .8; }
@keyframes hfsTicker{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
@media(max-width:768px){
  .hero-fs{ min-height: 100svh; align-items: flex-start; }
  .hfs-title{ font-size: 2.4rem; letter-spacing: -.025em; }
  .hfs-sub{ font-size: 1rem; max-width: 100%; line-height: 1.65; }
  .hfs-eyebrow{ font-size: .6rem; gap: .5rem; letter-spacing: .12em; flex-wrap: nowrap; }
  .hfs-eyebrow-line{ flex: 0 0 24px; }
  .hfs-arrow{ display: none; }
  .hfs-inner{ margin-top: 150px; padding: 0 1.5rem; box-sizing: border-box; }
  .hfs-cta{ flex-direction: column; gap: .75rem; align-items: stretch; }
  .hfs-btn-primary, .hfs-btn-secondary{ width: 100%; justify-content: center; padding: .95rem 1.5rem; font-size: 1rem; box-sizing: border-box; }
  .hfs-btn-secondary .hfs-arrow-icon{ display: none; }
  .hfs-trust{ display: flex; font-size: .78rem; }
  .hfs-platforms{ gap: 0; margin-top: .5rem; flex-wrap: nowrap; width: 100%; justify-content: center; }
  .hfs-plat{ padding: .25rem .4rem; gap: .22rem; flex-shrink: 1; min-width: 0; }
  .hfs-plat-name{ font-size: .65rem; white-space: nowrap; }
  .hfs-plat svg[viewBox="0 0 60 12"]{ width: 38px; height: 9px; }
  .hfs-plat-sep{ height: 18px; flex-shrink: 0; }
  .hfs-dots{ bottom: 1.5rem; }
  .hero-founder-backdrop{ display: none !important; }
  .hfs-ticker{ display: block !important; visibility: visible !important; position: relative; z-index: 5; }
}
/* Founder video inline card wrapper (mobile only) */
.founder-mobile-wrap{ display: none; }
@media(max-width:768px){
  .founder-mobile-wrap{
    display: block;
    position: relative;
    background: transparent;
    padding: 2.25rem 1.25rem 2.5rem;
  }
  .founder-mobile-wrap .hero-founder{
    box-shadow: 0 24px 50px -18px rgba(15,61,70,.55), 0 8px 20px -10px rgba(15,61,70,.35);
  }
}
@media(max-width:768px){
  .trust-bg{ display: none; }
}
@media(max-width:395px){
  .hfs-title{ font-size: 2rem; }
  .hfs-eyebrow{ font-size: .55rem; letter-spacing: .1em; }
}

  position: relative;
  padding-top: clamp(8rem, 6vw + 6rem, 11rem);
  padding-bottom: clamp(3rem, 5vw, 6rem);
  background: var(--bg);
  overflow: hidden;
}


/* ─────────────────────────── EMIRATE CYCLE ANIMATION ─────────────────────────── */
.hero-emirate-wrap{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
}
.hero-emirate{
  position: absolute;
  font-size: clamp(5rem, 14vw, 13rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(12px) scale(.97);
  transition: opacity .7s ease, transform .7s ease;
  user-select: none;
  text-align: center;
  white-space: nowrap;
  text-shadow: 0 4px 40px rgba(0,0,0,.18);
}
.hero-emirate.active{
  opacity: .12;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce){
  .hero-emirate{ transition: none; }
}

/* Background sky gradient + huge faded word */
.hero-bg{ position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg-shade{
  position: absolute; inset: 0;
  background:
    radial-gradient(1200px 700px at 50% -20%, color-mix(in oklab, var(--brand) 28%, transparent), transparent 70%),
    linear-gradient(180deg, color-mix(in oklab, var(--brand-4) 80%, transparent) 0%, var(--bg) 50%, var(--bg) 100%);
}
.hero-bg-glow{
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 85% 20%, color-mix(in oklab, var(--brand) 18%, transparent), transparent 65%),
    radial-gradient(700px 500px at 15% 90%, color-mix(in oklab, var(--brand) 12%, transparent), transparent 70%);
}

.hero-mega-word{
  position: absolute;
  left: 50%;
  top: 38%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(8rem, 22vw, 24rem);
  letter-spacing: -0.045em;
  line-height: 1;
  white-space: nowrap;
  background: linear-gradient(180deg,
    color-mix(in oklab, var(--brand) 22%, transparent) 0%,
    color-mix(in oklab, var(--brand) 10%, transparent) 55%,
    transparent 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
}

.hero-grid{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-x);
  display: grid;
  grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
  position: relative;
}

.hero-copy .eyebrow{
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .9rem .5rem .7rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-2);
  margin-bottom: 1.6rem;
}
.hero-copy .eyebrow .dot,
.section-eyebrow .dot,
.dot{
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--wa);
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--wa) 25%, transparent);
  display: inline-block;
  position: relative;
}
.hero-copy .eyebrow .dot::after,
.section-eyebrow .dot::after,
.dot::after{
  content:"";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: var(--wa);
  animation: dot-pulse 1.8s ease-out infinite;
}
@keyframes dot-pulse{
  0%   { transform: scale(1);   opacity: .65; }
  80%  { transform: scale(3.2); opacity: 0; }
  100% { transform: scale(3.2); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){
  .dot::after, .hero-copy .eyebrow .dot::after, .section-eyebrow .dot::after{ animation: none; }
}

.display{
  font-family: var(--font-heading);
  font-size: var(--fs-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: .95;
  margin: 0 0 1.4rem;
  color: var(--brand-2);
  text-wrap: balance;
}
.display .ink{
  position: relative;
  display: inline-block;
  background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.display .ink-gold{
  color: var(--brand);
  font-style: italic;
  font-weight: 700;
}

.lead{
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 72%, transparent);
  max-width: 56ch;
  margin: 0 0 2rem;
  text-wrap: pretty;
}
.lead b{ color: var(--brand-2); font-weight: 600; }
.lead-light{ color: color-mix(in oklab, var(--brand-ink) 78%, transparent); }
.lead-light b{ color: var(--brand-3); }

.cta-row{ display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2rem; }

/* Glass feature pills */
.hero-pills{
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 2rem;
}
.pill{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem .9rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--brand-2);
  overflow: hidden;
}
.pill span{ min-width: 0; }
.pill i{ width: 16px; height: 16px; color: var(--brand); }

.hero-meta{
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.25rem 2rem;
  color: color-mix(in oklab, var(--ink) 70%, transparent);
  font-size: .9rem;
}
.stars i, .stars svg, .stars svg *{ color: #F5A623; fill: #F5A623; stroke: #F5A623; }
.stars i, .stars svg{ width: 16px; height: 16px; }
.stars{ display: inline-flex; align-items: center; gap: .25rem; }
.stars span{ margin-left: .5rem; color: color-mix(in oklab, var(--ink) 70%, transparent); }
.stars b{ color: var(--brand-2); }
.trust-pill{ display: inline-flex; align-items: center; gap: .4rem; }
.trust-pill i{ width: 16px; height: 16px; color: var(--brand); }

/* Hero card */
.hero-card{
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand) 4%, #fff), #fff);
  border: 1px solid var(--hairline);
  border-radius: 22px;
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 30px 60px -30px rgba(14,31,68,.25), 0 12px 30px -18px rgba(14,31,68,.15);
  position: relative;
  isolation: isolate;
}
.hero-card::before{
  content:"";
  position:absolute; inset: -1px; border-radius: 22px;
  background: linear-gradient(160deg, color-mix(in oklab, var(--brand-3) 40%, transparent), transparent 45%, color-mix(in oklab, var(--brand) 25%, transparent));
  z-index:-1; filter: blur(18px); opacity:.45;
}
.hero-card-tag{
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase;
  background: var(--brand-2); color: var(--brand-3);
  padding: .4rem .65rem; border-radius: 999px;
  margin-bottom: .9rem;
}
.hero-card-tag i{ width: 14px; height: 14px; }
.hero-card h3{
  font-size: clamp(1.25rem, .9rem + 1vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 1.2rem;
  text-wrap: balance;
}
.hero-card h3 u{
  text-decoration: underline;
  text-decoration-color: var(--brand);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.quick-form{ display: flex; flex-direction: column; gap: .75rem; }
.quick-form label{ display: flex; flex-direction: column; gap: .35rem; font-size: .82rem; font-weight: 500; color: color-mix(in oklab, var(--ink) 65%, transparent); }
.quick-form input, .quick-form select, .lead-form input, .lead-form select, .lead-form textarea{
  width: 100%;
  height: 44px;
  padding: 0 .85rem;
  border-radius: 10px;
  border: 1px solid var(--hairline-2);
  background: #fff;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
/* Glass inputs specifically inside lead-form */
.lead-form input, .lead-form select, .lead-form textarea{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,0.28);
  color: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255,255,255,.35) inset, 0 2px 8px rgba(0,0,0,.06);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder{ color: rgba(255,255,255,.5); }
.lead-form select option{ background: #0f3d46; color: #fff; }
.lead-form textarea{ height: auto; padding: .65rem .85rem; resize: vertical; min-height: 96px; line-height: 1.45; }
.quick-form input:focus, .quick-form select:focus, .lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus{
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--brand) 18%, transparent);
}
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus{
  border-color: #57c5bf;
  box-shadow: 0 0 0 3px rgba(87,197,191,.25);
}
.micro{ font-size: .78rem; color: color-mix(in oklab, var(--ink) 55%, transparent); margin: .4rem 0 0; }
.lead-form .micro{ color: rgba(255,255,255,.55); }

/* Decorative skyline */
.skyline{
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%; height: 120px;
  pointer-events: none;
  color: var(--brand);
  z-index: 0;
}

/* ── Mobile intro video (below hero, mobile only) ── */
.mobile-intro-video{
  display: none;
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #0f3d46;
  overflow: hidden;
}
.mobile-intro-overlay{
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .75rem;
  background: rgba(0,0,0,.35);
  transition: opacity .3s ease;
  cursor: pointer;
}
.mobile-intro-overlay.hidden{ opacity: 0; pointer-events: none; }
.mobile-intro-play{
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  border: 2px solid rgba(255,255,255,.7);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: none;
  transition: background .2s, transform .2s;
}
.mobile-intro-play:hover{ background: rgba(255,255,255,.3); transform: scale(1.05); }
.mobile-intro-label{
  color: #fff; font-size: .9rem; font-weight: 600;
  letter-spacing: .04em; margin: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
@media(max-width:768px){
  .mobile-intro-video{ display: block; }
}

/* ───────────────────────── HERO FOUNDER VIDEO PANEL ───────────────────────── */
.hero-founder{
  display: none !important;
  position: fixed;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  width: clamp(160px, 16vw, 220px);
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  z-index: 45;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(87,197,191,0.25);
  box-shadow:
    0 1px 0 rgba(255,255,255,.7) inset,
    0 20px 40px -18px color-mix(in oklab, var(--brand-2) 55%, transparent),
    0 6px 16px -8px color-mix(in oklab, var(--brand-2) 35%, transparent);
  animation: founder-neon 3s linear infinite;
  transition: transform .35s cubic-bezier(.22,.61,.36,1),
              width .45s cubic-bezier(.22,.61,.36,1),
              aspect-ratio .45s cubic-bezier(.22,.61,.36,1),
              left .45s cubic-bezier(.22,.61,.36,1),
              bottom .45s cubic-bezier(.22,.61,.36,1),
              border-radius .35s ease,
              opacity .3s ease;
  background: #0f3d46;
}
@keyframes founder-neon {
  0%   { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 4px 0   8px 0 rgba(87,197,191,0.4); }
  25%  { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0 -4px  8px 0 rgba(87,197,191,0.4); }
  50%  { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, -4px 0  8px 0 rgba(87,197,191,0.4); }
  75%  { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 0  4px  8px 0 rgba(87,197,191,0.4); }
  100% { box-shadow: 0 1px 0 rgba(255,255,255,.7) inset, 4px 0   8px 0 rgba(87,197,191,0.4); }
}
.hero-founder.in-view{ opacity: 1; pointer-events: auto; }
.hero-founder.expanded{ opacity: 1; pointer-events: auto; }
.hero-founder:hover{ transform: translateY(-2px); }
.hero-founder video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.hero-founder-shade{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,.5) 100%);
  transition: opacity .3s ease;
  pointer-events: none;
}

/* Play button — Tahoe glass with pulse rings */
.hero-founder-play{
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: grid; place-items: center;
  transition: transform .25s ease, opacity .35s ease;
}
.hero-founder-play:hover{ transform: translate(-50%, -50%) scale(1.06); }
.hero-founder-play:active{ transform: translate(-50%, -50%) scale(.96); }
.hero-founder-play-core{
  position: relative;
  width: 46px; height: 46px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--glass-bg-strong);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 1.5px 0 rgba(255,255,255,.9) inset,
    0 12px 26px -10px rgba(11,42,85,.55),
    0 0 0 1px color-mix(in oklab, var(--brand-3) 30%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--brand);
  z-index: 2;
}
.hero-founder-play-core svg{ width: 18px; height: 18px; transform: translateX(2px); }
.hero-founder-play-ring,
.hero-founder-play-ring-2{
  position: absolute; inset: 0;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  animation: hero-founder-pulse 2.4s ease-out infinite;
}
.hero-founder-play-ring-2{ animation-delay: .9s; }
@keyframes hero-founder-pulse{
  0%   { transform: scale(.7); opacity: .85; }
  80%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* Caption — bottom-left of small panel */
.hero-founder-cap{
  position: absolute;
  left: 10px; right: 10px; bottom: 8px;
  display: flex; flex-direction: column; gap: 2px;
  color: #fff;
  pointer-events: none;
  z-index: 1;
}
.hero-founder-tag{
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: .22rem .45rem;
  border-radius: 999px;
  margin-bottom: .25rem;
}
.hero-founder-cap b{
  font-family: var(--font-heading);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.1;
  color: #fff;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}
.hero-founder-cap em{
  font-style: normal;
  font-size: .68rem;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

/* Close button — only visible when expanded */
.hero-founder-close{
  position: absolute;
  top: 12px; right: 12px;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,.45);
  color: #fff;
  display: grid; place-items: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: scale(.8);
  transition: opacity .25s ease, transform .25s ease, background .15s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  z-index: 4;
}
.hero-founder-close:hover{ background: rgba(0,0,0,.7); }

/* Expanded state */
.hero-founder.expanded{
  position: fixed;
  left: 50%;
  top: 50%;
  bottom: auto;
  transform: translate(-50%, -50%);
  width: min(820px, calc(100vw - 3rem));
  aspect-ratio: 16 / 10;
  border-radius: 24px;
  cursor: default;
  z-index: 100;
  box-shadow:
    0 1px 0 rgba(255,255,255,.5) inset,
    0 60px 120px -30px rgba(11,42,85,.55),
    0 24px 48px -16px rgba(11,42,85,.4);
}
.hero-founder.expanded:hover{ transform: translate(-50%, -50%); }
.hero-founder.expanded .hero-founder-play{ width: 88px; height: 88px; }
.hero-founder.expanded .hero-founder-play-core{ width: 64px; height: 64px; }
.hero-founder.expanded .hero-founder-play-core svg{ width: 24px; height: 24px; }
.hero-founder.expanded .hero-founder-cap b{ font-size: 1.1rem; }
.hero-founder.expanded .hero-founder-cap em{ font-size: .85rem; }
.hero-founder.expanded .hero-founder-tag{ font-size: .7rem; padding: .35rem .6rem; }
.hero-founder.expanded .hero-founder-close{
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}
.hero-founder.expanded.playing .hero-founder-play{ opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.6); }
.hero-founder.expanded.playing .hero-founder-shade{ opacity: 0; }
.hero-founder.expanded.playing .hero-founder-cap{ opacity: 0; }

/* Backdrop dim when expanded — fixed full viewport */
.hero-founder-backdrop{
  position: fixed;
  inset: 0;
  background: rgba(11,42,85,.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  z-index: 90;
}
.has-expanded-founder .hero-founder-backdrop{ opacity: 1; pointer-events: auto; }

@media (max-width: 1100px){
  .hero-founder{
    width: clamp(160px, 26vw, 220px);
    left: clamp(1rem, 2.5vw, 1.5rem);
    bottom: clamp(1rem, 2.5vw, 1.5rem);
  }
  .hero-founder.expanded{
    width: calc(100% - 2rem);
  }
}
@media (max-width: 768px){
  .hero-founder{
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
    z-index: 1;
    transform: none;
    transition: none;
    box-shadow: 0 16px 40px -16px rgba(15,61,70,.4);
  }
  .hero-founder:hover{ transform: none; }
  .hero-founder.playing .hero-founder-play{ opacity: 0; pointer-events: none; }
  .hero-founder.playing .hero-founder-shade{ opacity: 0; }
  .hero-founder.playing .hero-founder-cap{ opacity: 0; }
  .hero-founder.playing .hero-founder-close{ opacity: 1; pointer-events: auto; transform: scale(1); }
}

@media (prefers-reduced-motion: reduce){
  .hero-founder-play-ring, .hero-founder-play-ring-2{ animation: none; }
}
.trust{
  position: relative;
  background: #fff;
  color: oklch(0.12 0.03 195);
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-block: none;
  border-radius: 0;
  overflow: hidden;
}
@media(max-width:768px){
  .trust{ background: #fff; }
}
.trust-bg{
  display: none;
}
.trust-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: center;
}

/* Hero rating side */
.trust-hero{ display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.trust-tag{
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .45rem .9rem .45rem .75rem;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #0f3d46;
  background: color-mix(in oklab, #0f3d46 8%, transparent);
  border: 1px solid color-mix(in oklab, #0f3d46 18%, transparent);
  backdrop-filter: none;
}
.trust-rating{
  display: flex; align-items: flex-end; gap: 1rem;
}
.trust-rating > b{
  font-family: var(--font-heading);
  font-size: clamp(4.5rem, 4rem + 3vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: .85;
  color: #0f3d46;
}
.trust-rating > span{ display: flex; flex-direction: column; gap: .35rem; padding-bottom: .5rem; }
.trust-rating-out{
  font-style: normal;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: oklch(0.5 0.025 195);
}
.trust-stars{ display: inline-flex; gap: 3px; }
.trust-stars i, .trust-stars svg{ width: 22px; height: 22px; }
.trust-stars svg, .trust-stars svg *{ fill: #F5A623; stroke: #F5A623; color: #F5A623; }
.trust-cap{
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: oklch(0.45 0.025 195);
  max-width: 42ch;
}
.trust-cap b{ color: oklch(0.15 0.03 195); font-weight: 600; }

/* Stats grid (right side) */
.trust-stats{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.stat{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .9rem;
  padding: 1.1rem 1.2rem;
  border-radius: 16px;
  background: oklch(0.975 0.008 195);
  border: 1px solid oklch(0.92 0.012 195);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
  text-align: left;
  justify-items: start;
}
.stat:hover{
  transform: translateY(-3px);
  background: #fff;
  border-color: color-mix(in oklab, #0f3d46 25%, transparent);
  box-shadow: 0 6px 20px -8px rgba(15,61,70,.15);
}
.stat-icn{
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  color: var(--brand-3);
  flex: none;
}
.stat-icn i, .stat-icn svg{ width: 22px; height: 22px; stroke-width: 1.75; }
.stat-body{ display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.stat-num{
  display: inline-flex;
  align-items: baseline;
  gap: .35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-num b{ font-size: 1.5rem; color: #0f3d46; font-weight: 700; }
.stat-num i{
  font-style: normal;
  font-size: .72rem;
  font-weight: 500;
  color: oklch(0.5 0.025 195);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.stat-label{
  font-size: .82rem;
  color: oklch(0.45 0.025 195);
  line-height: 1.35;
}

/* ───────────────────────── WHY US ───────────────────────── */
.why{
  background: var(--brand-2);
  color: #fff;
  overflow: hidden;
}

/* ── Top intro ── */
.why-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: end;
  padding-top: clamp(3.5rem, 5vw, 6rem);
  padding-bottom: clamp(2.5rem, 4vw, 4rem);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-tag{
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 1.25rem;
}
.why-tag::before{
  content:'';
  display: inline-block;
  width: 22px; height: 2px;
  background: var(--brand);
  border-radius: 2px;
}
.why-headline{
  font-size: clamp(2.75rem, 4vw + 1rem, 5.5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0;
}
.why-lead{
  font-size: clamp(.95rem, 1vw + .3rem, 1.15rem);
  line-height: 1.7;
  color: rgba(255,255,255,.65);
  margin: 0 0 2.25rem;
  max-width: 480px;
}
.why-stats-row{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}
.why-stat{
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding: 1.1rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.why-stat:last-child{ border-right: none; }
.why-stat b{
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -.03em;
}
.why-stat b sup{
  font-size: .5em;
  vertical-align: super;
}
.why-stat span{
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}

/* ── Split layout ── */
.why-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

/* ── Left visual panel ── */
.why-visual{
  position: relative;
  overflow: hidden;
}
.why-photo-main{
  position: absolute;
  inset: 0;
}
.why-photo-main img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.75) saturate(1.1);
  transform: scale(1.01);
  transition: transform 8s ease;
}
.why-visual:hover .why-photo-main img{ transform: scale(1.06); }
.why-photo-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15,61,70,.15) 0%, rgba(15,61,70,.55) 100%),
    linear-gradient(90deg, transparent 60%, rgba(15,61,70,.8) 100%);
}
.why-photo-inset{
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  width: 44%;
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  margin: 0;
  border: 2.5px solid rgba(255,255,255,0.12);
  box-shadow: 0 20px 48px -8px rgba(0,0,0,.55);
  backdrop-filter: none;
}
.why-photo-inset img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.why-visual-badge{
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: rgba(255,255,255,.1);
  backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1rem 1.25rem;
}
.wvb-num{
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  letter-spacing: -.04em;
}
.wvb-text{
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand);
  line-height: 1.4;
  margin-top: .25rem;
}

/* ── Right features ── */
.why-features{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4.5rem);
}
.why-ol{
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.why-li{
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .2s;
  cursor: default;
}
.why-li:first-child{ border-top: 1px solid rgba(255,255,255,0.08); }
.why-li:hover .why-li-num{ color: var(--brand); }
.why-li-num{
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: rgba(255,255,255,.28);
  padding-top: .18rem;
  transition: color .2s;
}
.why-li-body strong{
  display: block;
  font-size: .975rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .3rem;
  line-height: 1.2;
}
.why-li-body p{
  font-size: .855rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.why-cta-btn{
  align-self: flex-start;
}

/* ── Responsive ── */
@media (max-width: 960px){
  .why-top{ grid-template-columns: 1fr; gap: 2rem; }
  .why-stats-row{ grid-template-columns: repeat(2,1fr); }
  .why-stat:nth-child(2){ border-right: none; }
  .why-stat:nth-child(3),
  .why-stat:nth-child(4){ border-top: 1px solid rgba(255,255,255,0.08); }
  .why-split{ grid-template-columns: 1fr; }
  .why-visual{ min-height: 380px; }
  .why-photo-main{ position: relative; height: 380px; }
  .why-photo-main img{ height: 380px; }
}
@media (max-width: 580px){
  .why-stats-row{ grid-template-columns: repeat(2,1fr); }
  .why-photo-inset{ width: 42%; bottom: 1rem; left: 1rem; }
  .why-visual-badge{ top: 1rem; left: 1rem; padding: .75rem 1rem; }
  .wvb-num{ font-size: 1.5rem; }
}

/* ───────────────────────── SERVICES ───────────────────────── */
.services{
  position: relative;
  border: none;
  overflow: clip;
  background: #fff;
}
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1rem;
}
.svc-card{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  padding: 1.6rem 1.6rem 1.4rem;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: #fff;
  outline: 0.5px solid transparent;
  outline-offset: -1px;
  transition: transform .2s ease, box-shadow .2s ease, outline-color .2s ease;
  min-height: 320px;
  isolation: isolate;
  overflow: hidden;
}
.svc-card::before{
  content:"";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--brand-3), var(--accent-2));
  transform: translateY(100%);
  transition: transform .25s ease;
}
.svc-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 30px 60px -40px color-mix(in oklab, var(--brand-2) 45%, transparent), 0 1px 0 rgba(255,255,255,.7) inset;
  outline-color: #75bab3;
}
.svc-card:hover::before{ transform: translateY(100%); }
.svc-card-wide{
  grid-column: span 3;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  background:
    linear-gradient(180deg, color-mix(in oklab, var(--brand) 4%, #fff), #fff);
  min-height: auto;
}
.svc-card-wide h3{ flex: 0 0 100%; max-width: 24ch; }
.svc-card-wide p{ flex: 1 1 360px; max-width: 70ch; }
.svc-card-wide .svc-go{ width: 100%; margin: 0; }

.svc-icn{
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--glass-bg-strong);
  color: var(--brand);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: var(--glass-shadow), 0 0 0 1px color-mix(in oklab, var(--brand) 12%, transparent);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.svc-icn i{ width: 22px; height: 22px; stroke-width: 1.75; }
.svc-icn-row{ display: flex; gap: .5rem; }

.svc-num{
  position: absolute;
  top: 1.3rem; right: 1.4rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: color-mix(in oklab, var(--ink) 35%, transparent);
}
.svc-card h3{
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  text-wrap: balance;
  color: var(--brand-2);
}
.svc-card p{
  font-size: .95rem;
  color: color-mix(in oklab, var(--ink) 65%, transparent);
  line-height: 1.55;
  margin: 0;
}
.svc-list{
  list-style: none; margin: 0; padding: 0;
  font-size: .85rem;
  color: color-mix(in oklab, var(--ink) 60%, transparent);
  display: flex; flex-direction: column; gap: .3rem;
}
.svc-list li{ position: relative; padding-left: 1.05rem; }
.svc-list li::before{
  content:""; position: absolute; left: 0; top: .55em;
  width: 5px; height: 5px; background: var(--brand); border-radius: 2px;
}
.svc-go{
  margin-top: auto;
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .9rem; font-weight: 600;
  color: var(--brand);
  padding-top: .75rem;
  border-top: 1px dashed var(--hairline);
}
.svc-go i{ width: 16px; height: 16px; transition: transform .2s ease; }
.svc-card:hover .svc-go i{ transform: translate(2px,-2px); }

/* ───────────────────────── WHY ───────────────────────── */
.why{ position: relative; overflow: hidden; border-radius: 64px 0 0 0; }
.why::before{
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(700px 400px at 110% 0%, color-mix(in oklab, var(--brand-3) 18%, transparent), transparent 70%),
    radial-gradient(900px 600px at -10% 100%, color-mix(in oklab, var(--brand-ink) 6%, transparent), transparent 70%);
  pointer-events: none;
}
.why .container{ position: relative; }

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1rem;
}
.why-card{
  padding: 1.5rem;
  border-radius: 16px;
  background: color-mix(in oklab, var(--brand-ink) 4%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand-ink) 10%, transparent);
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 220px;
}
.why-icn{
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--brand-3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.why-icn i{ width: 22px; height: 22px; stroke-width: 1.75; }
.why-card h3{
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.why-card p{
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
  color: color-mix(in oklab, var(--brand-ink) 75%, transparent);
}

.why-cta{
  margin-top: clamp(2.25rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  padding: 1.4rem 1.6rem;
  border: 1px dashed color-mix(in oklab, var(--brand-ink) 25%, transparent);
  border-radius: 16px;
  background: color-mix(in oklab, var(--brand-ink) 3%, transparent);
}
.why-cta p{
  margin: 0;
  font-size: 1.05rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--brand-ink) 85%, transparent);
}

/* ───────────────────────── CERTIFICATIONS MARQUEE ───────────────────────── */
.certs{
  background: #fff;
  padding: clamp(2.5rem, 4vw, 4rem) 0 clamp(2rem, 3vw, 3rem);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  overflow: hidden;
}
.certs .section-title{
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
}
.certs-marquee-wrap{
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}
.certs-belt{
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  animation: certs-scroll 32s linear infinite;
  padding: 1rem 0;
}
.certs-belt:hover{ animation-play-state: paused; }
/* card — matches the light gray rounded cards in the reference */
.cert-card{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 180px;
  height: 140px;
  background: #f2f2f2;
  border-radius: 16px;
  padding: 1rem;
  transition: transform .2s ease, box-shadow .2s ease;
}
.cert-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 24px -8px rgba(0,0,0,.14);
}
.cert-card svg{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* wider cards for UAF / IAF */
.cert-card-wide{
  width: 260px;
}
@keyframes certs-scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .certs-belt{ animation: none; }
}
@media (max-width: 600px){
  .cert-card{ width: 140px; height: 112px; border-radius: 12px; }
  .cert-card-wide{ width: 200px; }
}

/* ───────────────────────── OFFICE / BENTO ───────────────────────── */
.office{
  position: relative;
  overflow: clip;
  background: #f8f8f8;
}
.bento-grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
  grid-template-areas:
    "a a a b b c"
    "a a a d d d"
    "e e f f g g";
  padding-top: 1.5rem;
}
.bento-tile{
  position: relative;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  border: none;
  background: var(--brand-3);
  box-shadow: none;
  isolation: isolate;
}
.bento-tile img,
.bento-tile iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  z-index: 0;
}
.bento-tile img{
  object-fit: cover;
  transition: transform .6s ease;
}
.bento-tile:hover img{ transform: scale(1.04); }

/* On the map tile, position pills at top-right and bottom-right */
.bt-a figcaption{
  inset: .9rem .9rem .9rem auto;
  background: none;
  padding: 0;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: .65rem;
  pointer-events: none;
}
.bt-a figcaption > *{ pointer-events: auto; }

.bento-map-link{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .6rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  background: #0f3d46;
  border: 1px solid #0f3d46;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  box-shadow: 0 8px 22px -10px rgba(11,18,32,.55);
}
.bento-map-link:hover{
  transform: translateY(-1px);
  background: #000;
  box-shadow: 0 12px 26px -10px rgba(11,18,32,.7);
}
.bento-map-link i,
.bento-map-link svg{ width: 16px; height: 16px; color: #fff; }
.bento-tile figcaption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem 1rem;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--brand-2) 70%, transparent) 70%, color-mix(in oklab, var(--brand-2) 95%, transparent));
  color: var(--brand-ink);
  display: flex;
  flex-direction: column;
  gap: .55rem;
  align-items: flex-start;
}
.bento-tile figcaption h3{
  font-size: clamp(1.1rem, .8rem + .8vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0;
  color: var(--brand-ink);
  text-wrap: balance;
}
.bento-tag{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--brand-2);
  padding: .4rem .65rem;
  border-radius: 999px;
}
.bento-tag i{ width: 14px; height: 14px; color: var(--brand); }

.bt-a{ grid-area: a; }
.bt-b{ grid-area: b; }
.bt-c{
  grid-area: c;
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-2) 100%);
  display: grid;
  place-items: center;
  padding: 1.25rem;
  color: var(--brand-ink);
  text-align: center;
}
.bt-d{ grid-area: d; }
.bt-e{ grid-area: e; }
.bt-f{ grid-area: f; }
.bt-g{ grid-area: g; }

.bento-cover-link{
  position: absolute;
  inset: 0;
  z-index: 3;
  cursor: pointer;
}

.bento-stat{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.bento-stat b{
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--brand-ink);
  display: inline-flex;
  align-items: baseline;
}
.bento-stat b i{
  font-style: normal;
  font-size: .6em;
  color: var(--brand-2);
}
.bento-stat em{
  font-style: normal;
  font-size: .82rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--brand-ink) 80%, transparent);
  line-height: 1.4;
}

/* ───────────────────────── PROCESS — vertical timeline ───────────────────────── */
/* Process split: photo left, timeline right */
.process-split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 5rem);
  align-items: start;
}
.process-photo{
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 24px 60px -20px rgba(15,61,70,.28);
}
.process-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.process-photo-badge{
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  border-radius: 12px;
  background: rgba(255,255,255,.28);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}
.process-photo-badge svg{ width: 18px; height: 18px; color: #57c5bf; flex-shrink:0; }
.process-timeline{
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,2.5fr);
  gap: 0;
  max-width: none;
  margin: 0;
}
@media(max-width:900px){
  .process-split{ grid-template-columns: 1fr; }
  .process-photo{ display: none; }
}
.pt-step{
  display: contents;
}
.pt-left{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 1.5rem;
}
.pt-num-wrap{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.pt-num{
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 8px 20px -8px color-mix(in oklab, var(--brand) 25%, transparent);
  font-family: var(--font-mono);
  font-size: .95rem;
  font-weight: 700;
  color: var(--brand-2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pt-icon{ }
.pt-num-final{
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  color: var(--brand-2);
  border-color: rgba(255,255,255,.85);
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 8px 20px -8px color-mix(in oklab, var(--brand) 25%, transparent);
}
.pt-line{
  position: relative;
  flex: 1;
  width: 2px;
  background: color-mix(in oklab, var(--brand) 12%, #e6ecea);
  margin: .5rem 0;
  min-height: 40px;
  border-radius: 2px;
  overflow: hidden;
}
/* Gradient fill that grows with scroll (--fill: 0 → 1) */
.pt-line::after{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: calc(var(--fill, 0) * 100%);
  background: linear-gradient(180deg,
    var(--brand-2) 0%,
    color-mix(in oklab, var(--brand) 50%, #57c5bf) 100%
  );
  border-radius: 2px;
  transition: height .8s linear;
}
.pt-card{
  display: flex;
  gap: 1rem;
  padding: 0 0 2.5rem;
  align-items: flex-start;
}
.pt-card-final{ padding-bottom: 0; }
.pt-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 4px 12px -4px rgba(15,61,70,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--brand-2);
  flex-shrink: 0;
}
.pt-icon svg{ width: 20px; height: 20px; stroke-width: 1.7; }
.pt-icon-final{
  background: linear-gradient(145deg, rgba(255,255,255,.75), rgba(255,255,255,.45));
  border-color: rgba(255,255,255,.12);
  color: var(--brand-2);
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 4px 12px -4px rgba(15,61,70,.12);
}
.pt-body{ display: flex; flex-direction: column; gap: .45rem; padding-top: .2rem; }
.pt-body h3{
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
}
.pt-body p{
  font-size: .92rem;
  line-height: 1.65;
  color: oklch(0.42 0.03 195);
  margin: 0;
}
.pt-badge{
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .74rem; font-weight: 600;
  color: var(--brand-2);
  background: color-mix(in oklab, var(--brand) 8%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand) 18%, transparent);
  padding: .22rem .6rem;
  border-radius: 999px;
  width: fit-content;
  margin-top: .25rem;
}
.pt-badge svg{ width: 12px; height: 12px; }
.pt-badge-final{
  background: color-mix(in oklab, var(--brand-2) 10%, transparent);
  border-color: color-mix(in oklab, var(--brand-2) 25%, transparent);
}
@media(max-width: 600px){
  .process-timeline{ grid-template-columns: 40px 1fr; }
  .pt-num{ width: 40px; height: 40px; font-size: .8rem; }
  .pt-card{ gap: .75rem; padding-bottom: 2rem; }
}


/* ───────────────────────── REVIEWS ───────────────────────── */
.reviews-head{
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
  max-width: none;
  margin-bottom: clamp(2rem, 3vw, 3rem);
}
.reviews-nav{ display: flex; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.reviews-btn{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: 1.5px solid var(--hairline);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition: background .15s, border-color .15s, color .15s;
}
.reviews-btn:hover{ background: var(--brand); border-color: var(--brand); color: #fff; }
.reviews-btn:disabled{ opacity: .35; cursor: default; }
.reviews-btn i, .reviews-btn svg{ width: 18px; height: 18px; pointer-events: none; }

/* Desktop carousel */
.reviews-slider-wrap{ overflow: hidden; padding-block: 2rem; margin-block: -2rem; }
.reviews-grid{
  display: flex;
  flex-direction: row;
  gap: 1.25rem;
  align-items: center;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.reviews-grid .review{
  flex: 0 0 calc(33.333% - .85rem);
  min-width: 260px;
  transition: transform .45s cubic-bezier(.4,0,.2,1), box-shadow .45s ease, opacity .45s ease;
  opacity: .55;
  transform: scale(.9);
}
.reviews-grid .review.is-active{
  opacity: 1;
  transform: scale(1) translateY(-12px);
  box-shadow: 0 24px 56px -12px rgba(15,61,70,.18), 0 4px 16px -4px rgba(15,61,70,.1) !important;
  z-index: 2;
  position: relative;
}
.reviews-rating{
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: .95rem;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  padding: .5rem .85rem;
  border-radius: 999px;
}
.reviews-rating b{ font-weight: 700; color: var(--brand-2); }
.reviews-rating span{ color: color-mix(in oklab, var(--ink) 65%, transparent); }
.reviews-rating a{ color: var(--brand); border-bottom: 1px dashed currentColor; }
.reviews-stars{ display: inline-flex; }
.reviews-stars i, .reviews-stars svg{ width: 16px; height: 16px; }
.reviews-stars svg, .reviews-stars svg *{ fill: #F5A623; stroke: #F5A623; color: #F5A623; }
.review{
  margin: 0;
  padding: 1.6rem;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: #fff;
  display: flex; flex-direction: column;
  gap: 1rem;
}
.review-stars{ display: inline-flex; gap: 2px; }
.review-stars i, .review-stars svg{ width: 16px; height: 16px; }
.review-stars svg, .review-stars svg *{ fill: #F5A623; stroke: #F5A623; color: #F5A623; }
.review blockquote{
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  text-wrap: pretty;
  font-weight: 500;
}
.review figcaption{
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: .65rem;
  font-size: .85rem;
  margin-top: auto;
}
.review figcaption .avatar{
  width: 38px; height: 38px;
  font-size: .78rem;
}
.avatar{
  width: 48px; height: 48px;
  flex-shrink: 0;
  display: grid; place-items: center;
  border-radius: 999px;
  background: var(--brand-2);
  color: var(--brand-3);
  letter-spacing: .02em;
}
.who{ display: flex; flex-direction: column; line-height: 1.25; }
.who b{ font-size: .9rem; color: var(--brand-2); }
.who em{ font-style: normal; font-size: .78rem; color: color-mix(in oklab, var(--ink) 55%, transparent); }
.verified{ width: 18px; height: 18px; color: var(--brand); }

/* Logo wall — marquee */
.logo-wall{
  margin-top: clamp(2.5rem, 4vw, 4rem);
  display: flex; align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  flex-wrap: nowrap;
  padding: 1.25rem 1.5rem;
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 14px;
  overflow: hidden;
}
.logo-wall-label{
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ink) 55%, transparent);
  white-space: nowrap;
  flex: none;
}
.logo-wall-track{
  display: flex;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.logo-wall-row{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: nowrap;
  gap: clamp(2.5rem, 4vw, 4rem);
  animation: logo-wall-scroll 36s linear infinite;
  padding-right: clamp(2.5rem, 4vw, 4rem);
  flex: none;
}
.logo-wall-row li{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
  color: color-mix(in oklab, var(--ink) 55%, transparent);
  white-space: nowrap;
  flex: none;
  transition: color .15s ease;
}
.logo-wall-row li:hover{ color: var(--brand-2); }
.logo-wall-track:hover .logo-wall-row{ animation-play-state: paused; }

@keyframes logo-wall-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce){
  .logo-wall-row{ animation: none; }
}

/* ───────────────────────── HERO COLLAGE ───────────────────────── */
.hero-collage{
  display: none; /* visible only in centered / bleed hero modes */
  margin-top: 2.75rem;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 920px;
  margin-inline: auto;
  perspective: 1200px;
}
.hero-collage .hc{
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--brand-2) 12%, transparent);
  box-shadow: 0 30px 50px -30px rgba(14,31,68,.35);
  aspect-ratio: 4 / 5;
  isolation: isolate;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .35s ease, box-shadow .35s ease;
  outline: 1px solid transparent;
  -webkit-transform: translateZ(0);
  filter: blur(0);
}
.hero-collage .hc-1:hover{ transform: rotate(-2deg) translateY(2px) scale(1.03) translateZ(0); }
.hero-collage .hc-2:hover{ transform: translateY(-18px) scale(1.03) translateZ(0); }
.hero-collage .hc-3:hover{ transform: rotate(2deg) translateY(2px) scale(1.03) translateZ(0); }
.hero-collage .hc img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.hero-collage .hc:hover img{ transform: scale(1.04); }
.hero-collage .hc figcaption{
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.1rem .9rem;
  background: linear-gradient(180deg, transparent, color-mix(in oklab, var(--brand-2) 70%, transparent) 60%, color-mix(in oklab, var(--brand-2) 95%, transparent));
  color: var(--brand-ink);
}
.hero-collage .hc figcaption span{
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: color-mix(in oklab, var(--brand-ink) 12%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand-ink) 18%, transparent);
  padding: .35rem .55rem;
  border-radius: 999px;
  backdrop-filter: none;
}
.hero-collage .hc-1{ transform: rotate(-2deg) translateY(8px); aspect-ratio: 3/4.2; }
.hero-collage .hc-2{ transform: translateY(-12px); aspect-ratio: 3/4; z-index: 2; }
.hero-collage .hc-3{ transform: rotate(2deg) translateY(8px); aspect-ratio: 3/4.2; }

/* Reveal collage when hero is centered or bleed */
body[data-hero="centered"] .hero-collage{ display: grid; }
body[data-hero="bleed"] .hero-collage{ display: grid; }
body[data-hero="bleed"] .hero-collage .hc figcaption span{
  background: color-mix(in oklab, var(--brand-ink) 18%, transparent);
}

/* ───────────────────────── AVATAR (testimonials) ───────────────────────── */
div.avatar{
  width: 48px; height: 48px;
  border-radius: 999px;
  background: #e0f0ef;
  color: #0f3d46;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: grid; place-items: center;
  flex-shrink: 0;
}
img.avatar{
  width: 48px; height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--brand);
  background: var(--brand-2);
  padding: 0;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--brand) 20%, transparent);
}

/* ───────────────────────── MEET THE FOUNDER ───────────────────────── */
.meet{
  position: relative;
  padding-block: clamp(5rem, 6vw + 1rem, 8rem);
  overflow: hidden;
  background: var(--bg);
}
.meet-bg{ display: none; }

/* Meet-section consultant strip + contact rows — light-mode overrides */
.meet .lead-consult{
  background: var(--bg-soft);
  border: 1px solid var(--hairline);
  border-radius: 14px;
}
.meet .lead-consult-text b{ color: var(--brand); font-size: 1.05rem; }
.meet .lead-consult-text em{ color: color-mix(in oklab, var(--ink) 65%, transparent); }
.meet .lead-consult-avatars img{
  border: 2px solid #fff;
  background: var(--bg-soft);
  box-shadow: 0 4px 12px -6px rgba(11,42,85,.25);
}

.meet .lead-contact-row{
  background: #fff;
  border: 1px solid var(--hairline);
  color: var(--ink);
}
.meet .lead-contact-row:hover{
  border-color: var(--brand);
  background: color-mix(in oklab, var(--brand) 5%, transparent);
}
.meet .lead-contact-row b{ color: var(--brand-2); }
.meet .lead-contact-row em{ color: color-mix(in oklab, var(--ink) 55%, transparent); }
.meet .lc-icn{
  background: var(--glass-bg-strong);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--brand);
  box-shadow: var(--glass-shadow), 0 0 0 1px color-mix(in oklab, var(--brand) 12%, transparent);
}
.meet .lc-wa{ background: var(--wa); color: #06281a; border-color: color-mix(in oklab, var(--wa) 80%, #000); }
.meet-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: end;
}
.meet-col-left{ grid-column: 1; display: flex; flex-direction: column; gap: 1.5rem; }
.meet-col-right{ grid-column: 2; display: flex; flex-direction: column; }
.meet-col-left .section-head{ margin-bottom: 0; max-width: 60ch; }
.meet-col-right .lead-contact{ margin-top: .55rem; }

/* Video frame */
.meet-video{
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 16 / 11;
  background: var(--brand-2);
  border: 1px solid color-mix(in oklab, var(--brand-ink) 14%, transparent);
  box-shadow:
    0 30px 80px -40px color-mix(in oklab, #000 60%, transparent),
    0 0 0 1px color-mix(in oklab, var(--brand-3) 18%, transparent),
    inset 0 1px 0 rgba(255,255,255,.08);
  isolation: isolate;
}
.meet-video video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.meet-video-shade{
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 400px at 50% 40%, transparent 0%, transparent 30%, rgba(11,42,85,.45) 80%),
    linear-gradient(180deg, transparent 50%, rgba(11,42,85,.55) 100%);
  pointer-events: none;
  transition: opacity .35s ease;
}

/* Big modern play button (Voxen-style glass) */
.meet-play{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 124px; height: 124px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
  transition: transform .25s ease, opacity .35s ease;
}
.meet-play:hover{ transform: translate(-50%, -50%) scale(1.05); }
.meet-play:active{ transform: translate(-50%, -50%) scale(.97); }

.meet-play-core{
  position: relative;
  width: 96px; height: 96px;
  border-radius: 999px;
  display: grid; place-items: center;
  background: var(--glass-bg-strong);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,.85) inset,
    0 20px 50px -16px rgba(11,42,85,.6),
    0 0 0 1px color-mix(in oklab, var(--brand-3) 30%, transparent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  color: var(--brand);
  z-index: 2;
}
.meet-play-core svg{ transform: translateX(3px); } /* visually center the play triangle */

.meet-play-ring,
.meet-play-ring-2{
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid color-mix(in oklab, var(--brand-3) 55%, transparent);
  pointer-events: none;
  animation: meet-pulse 2.4s ease-out infinite;
}
.meet-play-ring-2{ animation-delay: .8s; border-color: color-mix(in oklab, var(--brand-ink) 35%, transparent); }
@keyframes meet-pulse{
  0%   { transform: scale(.85); opacity: .9; }
  80%  { transform: scale(1.55); opacity: 0; }
  100% { transform: scale(1.55); opacity: 0; }
}

/* Caption pinned to bottom-left of video frame */
.meet-video-caption{
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1;
  display: flex; flex-direction: column;
  align-items: flex-start;
  gap: .55rem;
  color: var(--brand-ink);
  transition: opacity .35s ease, transform .35s ease;
}
.meet-video-caption h3{
  margin: 0;
  font-size: clamp(1.3rem, .9rem + 1vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.meet-video-caption em{
  font-style: normal;
  font-size: .92rem;
  color: color-mix(in oklab, var(--brand-ink) 78%, transparent);
}
.meet-video-caption .bento-tag{
  color: var(--brand-ink);
  background: linear-gradient(140deg, rgba(255,255,255,.22), rgba(255,255,255,.08));
  border: 1px solid rgba(255,255,255,0.10);
}
.meet-video-caption .bento-tag .dot{ flex: none; }

/* Playing state: hide overlay UI, dim the shade */
.meet-video.playing .meet-play{ opacity: 0; pointer-events: none; transform: translate(-50%, -50%) scale(.7); }
.meet-video.playing .meet-video-shade{ opacity: 0; }
.meet-video.playing .meet-video-caption{ opacity: 0; transform: translateY(8px); pointer-events: none; }
@media (prefers-reduced-motion: reduce){
  .meet-play-ring, .meet-play-ring-2{ animation: none; }
}

/* ───────────────────────── BLOG TEASER ───────────────────────── */
.blog-teaser{
  background: #fff;
  padding-bottom: clamp(3rem, 4.5vw, 5rem);
}
.faq{
  background: #fff;
  padding-top: clamp(3rem, 4.5vw, 5rem);
}
.blog-teaser-head{
  max-width: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.blog-teaser-head .section-title{ margin-bottom: 0; }
.blog-teaser-cta{ margin-left: auto; }
.blog-teaser-cta{
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--brand-2);
  text-decoration: none;
  padding-bottom: .15rem;
  border-bottom: 1px solid color-mix(in oklab, var(--brand-2) 25%, transparent);
  transition: border-color .15s ease, gap .15s ease;
}
.blog-teaser-cta:hover{ border-color: var(--brand-2); gap: .6rem; }
.blog-teaser-cta i{ width: 15px; height: 15px; }

.blog-teaser-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.bt-card{
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid var(--hairline);
  background: #fff;
  overflow: visible;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.bt-card:hover{
  transform: translateY(-3px);
  border-color: color-mix(in oklab, var(--brand) 35%, var(--hairline));
  box-shadow: 0 30px 60px -40px color-mix(in oklab, var(--brand-2) 45%, transparent), 0 1px 0 rgba(255,255,255,.7) inset;
}
.bt-img-wrap{
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 17px 17px 0 0;
}
.bt-img-wrap img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.bt-card:hover .bt-img-wrap img{ transform: scale(1.05); }
.bt-body{
  display: flex;
  flex-direction: column;
  gap: .65rem;
  padding: 1.25rem 1.4rem 1.4rem;
  flex: 1;
}
.bt-tag{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--brand);
}
.bt-tag i{ width: 14px; height: 14px; }
.bt-body h3{
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--ink);
}
.bt-read{
  margin-top: auto;
  font-size: .8rem;
  color: oklch(0.55 0.02 195);
}
@media (max-width: 900px){
  .blog-teaser-grid{
    grid-template-columns: unset;
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1.25rem .75rem 0;
    scrollbar-width: none;
  }
  .blog-teaser-grid::-webkit-scrollbar{ display: none; }
  .blog-teaser-grid .bt-card{
    flex: 0 0 80vw;
    max-width: 320px;
    min-width: 260px;
    scroll-snap-align: start;
  }
  .blog-teaser-head{ align-items: flex-start; flex-direction: column; }
}

/* ───────────────────────── LEAD (redesigned) ───────────────────────── */
.lead-section .section-eyebrow{
  gap: .35rem;
  padding: .3rem .6rem .3rem .55rem;
  margin-bottom: .8rem;
}
.lead-section{
  position: relative;
  padding-block: clamp(5rem, 6vw + 1rem, 8rem);
  overflow: hidden;
  background: transparent;
}
.lead-bg{
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.lead-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .85;
  filter: saturate(1.1) contrast(1.05) brightness(.72);
}
.lead-bg::after{
  content:"";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.42);
}
@media (max-width: 768px){
  .lead-bg::after{
    background: rgba(0,0,0,.35);
  }
  .lead-bg img{
    filter: saturate(1) contrast(1.02) brightness(.65);
  }
}

.lead-inner{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4.5rem);
  align-items: start;
}
.section-title-light{ color: var(--brand-ink); }
.section-sub-light{ color: color-mix(in oklab, var(--brand-ink) 78%, transparent); }

.lead-promises{
  list-style: none; padding: 0; margin: 1.75rem 0 0;
  display: flex; flex-direction: column;
  gap: .55rem;
}
.lead-promises li{
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: 1rem;
  font-weight: 500;
}
.lead-promises i{
  width: 20px; height: 20px;
  background: color-mix(in oklab, var(--wa) 25%, transparent);
  color: var(--wa);
  border-radius: 999px;
  padding: 3px;
  flex: none;
  stroke-width: 2.5;
}
.lead-promises-light li{ color: color-mix(in oklab, var(--brand-ink) 90%, transparent); }

/* Consultant strip */
.lead-consult{
  margin-top: 1.75rem;
  padding: 1.4rem 1.4rem;
  background: color-mix(in oklab, var(--brand-ink) 6%, transparent);
  border: 1px solid color-mix(in oklab, var(--brand-ink) 12%, transparent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.lead-consult-avatars{ display: inline-flex; }
.lead-consult-avatars img{
  width: 52px; height: 52px;
  border-radius: 999px;
  object-fit: cover;
  border: 2px solid var(--brand-2);
  background: var(--brand-2);
}
.lead-consult-avatars img + img{ margin-left: -18px; }
.lead-consult-text{ display: flex; flex-direction: column; line-height: 1.4; font-size: .98rem; gap: .15rem; }
.lead-consult-text b{ color: var(--brand-3); font-weight: 700; font-size: 1.05rem; }
.lead-consult-text em{ font-style: normal; color: color-mix(in oklab, var(--brand-ink) 75%, transparent); font-size: .85rem; }

.lead-contact{
  margin-top: .55rem;
  display: flex; flex-direction: column; gap: .55rem;
}
.lead-contact-row{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: .85rem;
  align-items: center;
  padding: .85rem 1rem;
  border: 1px solid color-mix(in oklab, var(--brand-ink) 12%, transparent);
  background: color-mix(in oklab, var(--brand-ink) 5%, transparent);
  border-radius: 12px;
  transition: border-color .15s ease, transform .15s ease, background .15s ease;
  color: var(--brand-ink);
}
.lead-contact-row:hover{ border-color: var(--brand); transform: translateX(2px); background: color-mix(in oklab, var(--brand) 8%, transparent); }
.lc-icn{
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(140deg, rgba(255,255,255,.22), rgba(255,255,255,.06));
  border: 1px solid rgba(255,255,255,0.09);
  color: var(--brand-3);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
}
.lc-icn i{ width: 20px; height: 20px; }
.lc-wa{ background: var(--wa); color: #06281a; }
.lead-contact-row b{ font-weight: 700; color: var(--brand-ink); }
.lead-contact-row em{ display: block; font-style: normal; font-size: .85rem; color: color-mix(in oklab, var(--brand-ink) 65%, transparent); margin-top: 2px; }

/* Form card — Apple Liquid Glass */
.lead-form{
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.22);
  background:
    linear-gradient(145deg,
      rgba(255,255,255,.32) 0%,
      rgba(255,255,255,.18) 35%,
      rgba(255,255,255,.14) 65%,
      rgba(255,255,255,.24) 100%
    );
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  box-shadow:
    0 1.5px 0 rgba(255,255,255,.15) inset,
    0 -1px 0 rgba(255,255,255,.06) inset,
    1px 0 0 rgba(255,255,255,.06) inset,
    -1px 0 0 rgba(255,255,255,.04) inset,
    0 40px 80px -24px rgba(0,0,0,.55),
    0 10px 24px -8px rgba(0,0,0,.32);
  position: sticky;
  top: 100px;
  display: flex; flex-direction: column; gap: .85rem;
  isolation: isolate;
  overflow: hidden;
}
/* Top-left specular highlight — the signature Apple glass lens flare */
.lead-form::before{
  content:"";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 55%;
  background: linear-gradient(180deg,
    rgba(255,255,255,.28) 0%,
    rgba(255,255,255,.10) 40%,
    rgba(255,255,255,0) 100%
  );
  border-radius: 28px 28px 0 0;
  pointer-events: none; z-index: 0;
}
/* Bottom prismatic refraction line */
.lead-form::after{
  content:"";
  position: absolute;
  left: 8%; right: 8%;
  bottom: 0; height: 1.5px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(255,255,255,.6) 20%,
    rgba(255,255,255,.8) 50%,
    rgba(255,255,255,.6) 80%,
    transparent 100%
  );
  pointer-events: none; z-index: 0;
}
.lead-form > *{ position: relative; z-index: 1; }
.lead-form .form-head{
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin-bottom: .25rem;
}
.lead-form h3{
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.form-badge{
  display: inline-flex; align-items: center; gap: .35rem;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #0f3d46;
  background: rgba(255,255,255,.45);
  padding: .3rem .6rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: none;
}
.form-badge i{ width: 12px; height: 12px; }

.lead-form label{
  display: flex; flex-direction: column;
  gap: .4rem;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.lead-form label .label-row{ display: flex; flex-direction: row; align-items: baseline; gap: .3em; white-space: nowrap; }
.lead-form label .opt{ font-weight: 400; color: rgba(255,255,255,.55); font-style: italic; }
.grid-2{ display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; }
.form-actions{ display: grid; grid-template-columns: 1fr 1fr; gap: .65rem; margin-top: .35rem; }
.form-actions .btn{ border-radius: 100px !important; }

.form-sent{
  display: none;
  margin-top: .35rem;
  padding: 1rem 1.1rem;
  justify-content: center;
  text-align: center;
  font-size: .92rem;
  color: #fff;
}
.form-sent i{ width: 22px; height: 22px; flex-shrink: 0; margin-right: .5rem; }
.lead-form.sent .form-sent{ display: flex; }

/* ───────────────────────── FAQ ───────────────────────── */
.faq .section-head{
  max-width: 880px;
  margin-inline: auto;
  text-align: left;
}
.faq-list{
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: .5rem;
}
.faq-list details{
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s ease;
}
.faq-list details[open]{
  border: 1px solid var(--brand);
  outline: 0.5px solid var(--brand);
  box-shadow: 0 2px 0 rgba(255,255,255,.8) inset, 0 24px 56px -24px rgba(14,31,68,.28), 0 8px 24px -12px rgba(15,61,70,.18);
}
.faq-list summary{
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: var(--brand-2);
}
.faq-list summary::-webkit-details-marker{ display: none; }
.faq-list summary i{
  width: 22px; height: 22px;
  color: var(--brand);
  background: color-mix(in oklab, var(--brand) 10%, transparent);
  border-radius: 999px;
  padding: 2px;
  flex: none;
  transition: transform .2s ease;
}
/* Single plus icon — rotates 45° to × when open, same stroke weight always */
.faq-list summary i[data-lucide="minus"]{ display: none; }
.faq-list summary i[data-lucide="plus"]{ display: block; }
/* After Lucide replaces <i> with <svg> — single SVG, consistent size */
.faq-list summary svg{
  width: 22px; height: 22px;
  flex: none;
  transition: transform .25s ease;
}
.faq-list details[open] summary svg{ transform: rotate(45deg); }
.faq-a{
  padding: 0 1.25rem 1.25rem;
  font-size: .98rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--ink) 72%, transparent);
}
.faq-a p{ margin: 0; }
.faq-a b{ color: var(--brand-2); }

/* ───────────────────────── LIVE WALL — scrolling review feed ───────────────────────── */
.feed{
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
  padding-block: clamp(4rem, 5vw + 1rem, 7rem);
}
.feed-head-wrap{ position: relative; }
.feed-head-wrap .section-head{ text-align: center; margin-inline: auto; max-width: 720px; }
.feed-head-wrap .section-head .section-sub{ margin-inline: auto; }
.feed-head-wrap .section-eyebrow{ margin-left: auto; margin-right: auto; }
@media(max-width:768px){
  .feed-head-wrap .section-head{ text-align: left; margin-inline: 0; }
  .feed-head-wrap .section-head .section-sub{ margin-inline: 0; }
  .feed-head-wrap .section-eyebrow{ margin-left: 0; margin-right: 0; }
}

.feed-track-wrap{
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-block: 18px;
  overflow-x: clip;
  overflow-y: visible;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
}
@media(max-width:768px){
  .feed-track-wrap{ -webkit-mask-image: none; mask-image: none; }
}
.feed-row{
  display: flex;
  width: 100%;
  overflow-x: clip;
  overflow-y: visible;
}
.feed-row-inner{
  display: flex;
  gap: 1.25rem;
  flex: none;
  padding-right: 1.25rem;
  animation: feed-scroll-l 50s linear infinite;
}
.feed-row-2 .feed-row-inner{ animation: feed-scroll-r 60s linear infinite; }
.feed-row:hover .feed-row-inner{ animation-play-state: paused; }

@keyframes feed-scroll-l{
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@keyframes feed-scroll-r{
  from { transform: translateX(-100%); }
  to   { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce){
  .feed-row-inner{ animation: none; }
}

.feed-card{
  flex: none;
  width: 340px;
  padding: 1.25rem 1.4rem 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hairline);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 18px 36px -24px color-mix(in oklab, var(--brand-2) 35%, transparent),
    0 4px 12px -8px color-mix(in oklab, var(--brand-2) 18%, transparent);
  transform: rotate(var(--tilt, 0));
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column; gap: .75rem;
  margin-block: 18px;
}
.feed-card:hover{
  transform: rotate(0) translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255,255,255,.8) inset,
    0 24px 48px -24px color-mix(in oklab, var(--brand) 35%, transparent),
    0 8px 18px -10px color-mix(in oklab, var(--brand) 25%, transparent);
}
.feed-stars{ display: inline-flex; gap: 2px; }
.feed-stars i, .feed-stars svg{ width: 16px; height: 16px; }
.feed-stars svg, .feed-stars svg *{ fill: #F5A623; stroke: #F5A623; color: #F5A623; }
.feed-card p{
  margin: 0;
  font-size: .98rem;
  line-height: 1.5;
  color: var(--brand-2);
  font-weight: 500;
  text-wrap: pretty;
}
.feed-card footer{
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: .65rem;
  align-items: center;
  margin-top: auto;
  padding-top: .6rem;
  border-top: 1px dashed var(--hairline);
}
.feed-card footer img,
.feed-card footer .avatar{
  width: 38px; height: 38px;
  border-radius: 999px;
  object-fit: cover;
  background: #e0f0ef;
}
.feed-card footer span{ display: flex; flex-direction: column; line-height: 1.25; }
.feed-card footer b{ font-size: .88rem; font-weight: 700; color: var(--brand-2); }
.feed-card footer em{ font-style: normal; font-size: .78rem; color: color-mix(in oklab, var(--ink) 55%, transparent); }

/* ───────────────────────── FOUNDERS REVIEWS ───────────────────────── */
.founders-reviews{
  background: var(--bg-soft);
  padding-block: clamp(4rem, 5vw + 1rem, 7rem);
  overflow: hidden;
}
.founders-reviews .section-head{
  margin-bottom: clamp(2rem, 3vw, 3.5rem);
}
.founders-reviews .section-title{
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ───────────────────────── FINAL CTA ───────────────────────── */
.final .section-eyebrow{
  gap: .7rem;
  padding: .45rem 1rem .45rem .9rem;
}
.final{
  position: relative;
  overflow: hidden;
  border-radius: 0 0 0 0;
  padding-block: clamp(5rem, 6vw + 1rem, 9rem);
  background: #f8fdfd;
  color: var(--ink);
}
.final-bg{
  position: absolute; inset: 0;
  z-index: 0;
  pointer-events: none;
}
.final-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: .7;
  filter: brightness(.18) saturate(0.8) contrast(1.1);
}
.final::before{
  content:""; position: absolute; inset:0; z-index: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.72) 100%);
  backdrop-filter: none;

  pointer-events: none;
}

/* Floating UAE flag — SVG banner with built-in cloth wave, animated tilt */
.final-flag{
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: clamp(220px, 24vw, 360px);
  z-index: 1;
  pointer-events: none;
  transform-origin: top right;
  animation: flag-rock 3s ease-in-out infinite;
  filter: drop-shadow(0 18px 26px rgba(12, 60, 58, .35));
}
.final-flag svg{
  width: 100%;
  height: auto;
  display: block;
  animation: flag-ripple 2.6s ease-in-out infinite;
  transform-origin: top right;
}
@keyframes flag-rock{
  0%, 100% { transform: rotate(-2deg)   translateY(0); }
  50%      { transform: rotate(2.5deg)  translateY(3px); }
}
@keyframes flag-ripple{
  0%, 100% { transform: skewX(0deg)   scaleY(1); }
  25%      { transform: skewX(-3deg)  scaleY(1.025); }
  50%      { transform: skewX(0deg)   scaleY(.985); }
  75%      { transform: skewX(3deg)   scaleY(1.025); }
}
@media (prefers-reduced-motion: reduce){
  .final-flag,
  .final-flag svg{ animation: none; }
}
@media (max-width: 680px){
  .final-flag{ display: none; }
}

.final-inner{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
}
.final-inner .display{
  color: #ffffff;
  font-size: var(--fs-display-sm);
  text-shadow: 0 2px 18px rgba(0,0,0,.25);
}
.final-inner .display .ink-gold{
  background: none;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  font-style: italic;
  font-weight: 700;
}
.final-inner .lead{
  color: #ffffff;
  text-shadow: 0 1px 12px rgba(0,0,0,.2);
}
.final-inner .lead b{ color: #ffffff; }
.final .section-eyebrow{
  color: #ffffff;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.final-meta{
  color: rgba(255,255,255,.85) !important;
}
.final-cta{
  display: flex; flex-direction: column; gap: .65rem;
  align-items: stretch;
}
.final-cta .btn{ border-radius: 100px !important; }
.final-meta{
  margin-top: .35rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .06em;
  color: color-mix(in oklab, var(--ink) 55%, transparent);
  text-align: center;
}

/* ═══════════ BLOG CTA BANNER ═══════════ */
.blog-cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: #0f3d46;
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}
.blog-cta h3{ color: #fff; font-size: 1.25rem; margin: 0 0 .35rem; }
.blog-cta p{ color: rgba(255,255,255,.75); margin: 0; font-size: .95rem; }
.blog-cta .btn{ border-radius: 100px !important; flex-shrink: 0; }

/* ═══════════ SERVICE PAGE FINAL BENTO CTA ═══════════ */
.svc-final-bento{
  padding: clamp(3rem,5vw,5rem) 0;
  background: var(--brand-2);
}
.sfb-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "a b"
    "a c"
    "a d";
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  box-sizing: border-box;
}
/* Card base */
.sfb-card{
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
/* A — main big card */
.sfb-a{
  grid-area: a;
  min-height: 560px;
  display: flex;
  align-items: flex-end;
}
.sfb-bg{
  position: absolute; inset: 0;
}
.sfb-bg img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.sfb-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(0deg,
    rgba(8,26,30,.96) 0%,
    rgba(8,26,30,.72) 50%,
    rgba(8,26,30,.28) 100%);
}
.sfb-content{
  position: relative; z-index: 2;
  padding: 2.5rem 2rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.sfb-eyebrow{
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.sfb-dot{
  width: 7px; height: 7px; border-radius: 50%;
  background: #25d36a;
  box-shadow: 0 0 0 3px rgba(37,211,106,.25);
  flex-shrink: 0;
}
.sfb-content h2{
  font-size: clamp(2rem, 1rem + 3vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  color: #fff; margin: 0;
  letter-spacing: -.025em;
}
.sfb-content p{
  font-size: .95rem; line-height: 1.65;
  color: rgba(255,255,255,.72);
  margin: 0; max-width: 420px;
}
.sfb-ctas{
  display: flex; gap: .65rem; flex-wrap: wrap;
  margin-top: .5rem;
}
.sfb-btn-wa{
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.35rem;
  background: #25d36a; color: #fff;
  border-radius: 999px;
  font-size: .88rem; font-weight: 700;
  text-decoration: none;
  transition: filter .15s ease, transform .1s ease;
}
.sfb-btn-wa:hover{ filter: brightness(1.08); transform: translateY(-2px); }
.sfb-btn-call{
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .75rem 1.35rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none;
  transition: background .15s ease;
}
.sfb-btn-call:hover{ background: rgba(255,255,255,.2); }
.sfb-meta{
  font-size: .72rem; color: rgba(255,255,255,.45);
  letter-spacing: .04em;
}
/* B — stats card */
.sfb-b{
  grid-area: b;
  background: rgba(255,255,255,.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.75rem;
}
.sfb-stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
}
.sfb-stat{ display: flex; flex-direction: column; gap: .15rem; }
.sfb-stat b{
  font-size: 2rem; font-weight: 800; line-height: 1;
  color: #fff; letter-spacing: -.02em;
}
.sfb-stat b span{
  font-size: 1rem; font-weight: 600;
  color: #57c5bf; margin-left: .1rem;
}
.sfb-stat em{
  font-style: normal; font-size: .74rem;
  color: rgba(255,255,255,.55);
}
/* C — image card */
.sfb-c{
  grid-area: c;
  min-height: 160px;
}
.sfb-c img{
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  min-height: 160px;
}
.sfb-img-caption{
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: .6rem .9rem;
  background: linear-gradient(0deg, rgba(8,26,30,.85), transparent);
  color: rgba(255,255,255,.8);
  font-size: .75rem; font-weight: 600;
}
/* D — office card */
.sfb-d{
  grid-area: d;
  background: rgba(255,255,255,.06);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,.08);
  padding: 1.4rem 1.75rem;
  display: flex; flex-direction: column; gap: .35rem;
  color: rgba(255,255,255,.8);
}
.sfb-d svg{ color: #57c5bf; margin-bottom: .2rem; }
.sfb-d b{ color: #fff; font-size: 1rem; font-weight: 700; }
.sfb-d span{ font-size: .82rem; color: rgba(255,255,255,.55); }
.sfb-d a{
  font-size: .8rem; font-weight: 600;
  color: #57c5bf; text-decoration: none;
  margin-top: .2rem;
  transition: color .15s;
}
.sfb-d a:hover{ color: #fff; }
/* Responsive */
@media(max-width: 860px){
  .sfb-grid{
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d";
  }
  .sfb-a{ min-height: 460px; }
}

/* ═══════════ FOOTER ═══════════ */

/* ─── Smooth page transitions ─── */
#pgOverlay{
  position: fixed; inset: 0; z-index: 9999;
  background: #fff;
  opacity: 0; pointer-events: none;
  transition: opacity .22s ease;
}
.footer{
  background: var(--brand-2);
  color: color-mix(in oklab, var(--brand-ink) 80%, transparent);
  padding-top: clamp(3rem, 4vw, 4.5rem);
  border: none;
  outline: none;
  margin-top: -1px;
}
.footer-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto auto;
  column-gap: clamp(3rem, 5vw, 5rem);
  row-gap: clamp(1.5rem, 3vw, 3rem);
  padding-top: 20px;
  padding-bottom: 60px;
  align-items: start;
}
.footer-brand{ max-width: 360px; display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand p{
  margin: 1rem 0 1.25rem;
  font-size: .9rem;
  line-height: 1.55;
  max-width: 38ch;
}
/* ── Govt logo marquee ── */
.govt-marquee{
  overflow: hidden;
  background: var(--surface-2, #0f3d46);
  padding: 0.75rem 0;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.govt-marquee-track{
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: marquee-scroll 38s linear infinite;
}
.govt-marquee-track img{
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  flex-shrink: 0;
  opacity: .85;
  filter: brightness(1.1);
}
.govt-marquee-track img[alt="RTA"]{
  height: 28px;
}
@keyframes marquee-scroll{
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce){
  .govt-marquee-track{ animation: none; }
}

.footer-authority-logos{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 1.5rem;
  width: min(100%, 420px);
  margin-top: .5rem;
}
.footer-authority-logo{
  height: 52px;
  display: grid;
  place-items: center;
  padding: .2rem .3rem;
  overflow: visible;
}
.footer-authority-logo img{
  display: block;
  width: 100%;
  height: 100%;
  max-width: 110px;
  max-height: 44px;
  object-fit: contain;
}
/* Scale up logos that render too small due to wide internal viewBox */
.footer-authority-logo img[alt="United Arab Emirates Ministry of Justice"]{
  transform: scale(1.5);
  transform-origin: center;
}
.footer-authority-logo img[alt="Dubai Metro"]{
  transform: scale(0.8);
  transform-origin: center;
}
.socials{ display: flex; gap: .7rem; }
.socials a{
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: none;
  transition: transform .15s ease, opacity .15s ease;
}
.socials a:hover{ transform: scale(1.1); opacity: .9; }
.socials i, .socials svg{ width: 15px; height: 15px; flex-shrink: 0; }
.footer-col{ padding-top: 32px; }
@media (min-width: 681px){ .footer-col{ padding-top: 72px; } }
.footer-col h4{
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin: 0 0 1rem;
}
/* Desktop: accordion toggle styled as a plain heading, chevron hidden */
.footer-acc-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: none;
  padding: 0;
  cursor: default;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--brand-3);
  margin: 0 0 1rem;
  pointer-events: none;
}
.footer-chevron{ display: none; }
/* Desktop: accordion body always visible — overridden on mobile below */
@media (min-width: 681px){
  .footer-acc-body{ max-height: none !important; overflow: visible; }
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .92rem; line-height: 1.5; }
.footer-col a:hover{ color: var(--brand-ink); }
.footer-contact li{ display: flex; align-items: center; gap: .55rem; }
.footer-contact li:first-child{ align-items: flex-start; }
.footer-contact i{ width: 14px; height: 14px; color: var(--brand-3); flex-shrink: 0; margin-top: 3px; }
.footer-contact i svg{ width: 14px !important; height: 14px !important; }
.footer-contact-socials{ margin-top: 1.25rem; }
/* Mobile-only socials section — hidden on desktop */
.footer-mobile-socials{ display: none; }

.footer-watermark{
  text-align: center;
  font-family: 'Special Gothic Expanded One', sans-serif;
  font-size: clamp(3rem, 16vw, 16rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.018);
  text-transform: uppercase;
  user-select: none;
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
  padding: 0;
  width: 110%;
  margin-left: -5%;
  margin-bottom: -0.1em;
  overflow: hidden;
}
.footer-bar{
  border-top: none;
  padding: 1.25rem var(--container-x);
  max-width: var(--container);
  margin: 0 auto;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  font-size: .82rem;
  color: color-mix(in oklab, var(--brand-ink) 35%, transparent);
}
.footer-bar a{ color: inherit; }
.footer-bar a:hover{ color: var(--brand-ink); }
.footer-li-btn:hover span{ background:#0077B5; border-color:#0077B5; }
.footer-li-btn:hover svg{ opacity:1 !important; }

/* ───────────────────────── FLOATING CTAs ───────────────────────── */
.floats{
  position: fixed;
  right: 38px;
  bottom: 46px;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  z-index: 60;
}
.float-btn{
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 999px;
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,.35);
  position: relative;
  transition: transform .15s ease;
}
.float-btn:hover{ transform: scale(1.05); }
.float-wa{ background: var(--wa); border: none; outline: none; cursor: pointer; }
.float-call{ background: #111; display: none; }
.float-icon-only{
  background: transparent;
  color: #0f3d46;
  box-shadow: none;
  width: 46px; height: 46px;
  border: none;
  filter: none;
  transition: transform .15s ease;
}
.float-icon-only:hover{ transform: scale(1.12); }
.float-icon-only i{ width: 22px; height: 22px; stroke-width: 2.2; }
.float-pulse{
  position: absolute; inset: 0; border-radius: 999px;
  box-shadow: 0 0 0 0 var(--wa);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--wa) 60%, transparent); }
  80%{ box-shadow: 0 0 0 18px color-mix(in oklab, var(--wa) 0%, transparent); }
  100%{ box-shadow: 0 0 0 0 color-mix(in oklab, var(--wa) 0%, transparent); }
}

/* ───────────────────────── TWEAK VARIANTS ───────────────────────── */
/* Hero layouts — hero now light/airy in all modes; centered just centers content */
body[data-hero="centered"] .hero-grid{
  grid-template-columns: minmax(0, 960px);
  justify-content: center;
  text-align: center;
}
body[data-hero="centered"] .hero-copy{ display: flex; flex-direction: column; align-items: center; }
body[data-hero="centered"] .lead{ margin-inline: auto; }
body[data-hero="centered"] .cta-row,
body[data-hero="centered"] .hero-pills,
body[data-hero="centered"] .hero-meta{ justify-content: center; }
body[data-hero="centered"] .hero-card{ display: none; }

body[data-hero="bleed"] .hero-grid{ grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); }

/* Primary CTA swap */
body[data-cta="quote"] .hero .cta-row .btn-wa{ order: 2; }
body[data-cta="quote"] .hero .cta-row .btn-outline{
  order: 1;
  background: var(--brand);
  color: var(--brand-ink);
  border-color: var(--brand);
}
body[data-cta="quote"] .hero .cta-row .btn-outline:hover{ background: var(--brand-2); color: var(--brand-ink); }
body[data-cta="quote"] .hero .cta-row .btn-wa{
  background: #fff; color: var(--ink);
  border-color: var(--hairline-2);
  box-shadow: none;
}
body[data-cta="quote"] .hero .cta-row .btn-wa:hover{ border-color: var(--wa); color: var(--wa-2); background:#fff; }

/* Trust styles */
body[data-trust="stars"] .trust-inner{ grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 1.1rem; padding-block: .5rem; }
body[data-trust="stars"] .stat{ display: none; }
body[data-trust="stars"] .trust-inner::before{
  content:"★ ★ ★ ★ ★";
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  letter-spacing: .25em;
  color: var(--brand-3);
}
body[data-trust="stars"] .trust-inner::after{
  content:"4.9 out of 5 — across 220+ verified Google reviews · #1-rated Emirati setup consultancy in Deira";
  font-size: 1rem;
  color: color-mix(in oklab, var(--brand-ink) 80%, transparent);
  max-width: 60ch;
}

body[data-trust="logos"] .trust-inner{ grid-template-columns: auto; justify-content: center; padding-block: .5rem; gap: 1.5rem; }
body[data-trust="logos"] .stat{ display: none; }
body[data-trust="logos"] .trust-inner::before{
  content:"DED  ·  MOHRE  ·  GDRFA  ·  IFZA  ·  DMCC  ·  MEYDAN FZ  ·  JAFZA  ·  MOFA";
  display: block;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .08em;
  font-size: clamp(.95rem, 1vw + .4rem, 1.3rem);
  color: color-mix(in oklab, var(--brand-ink) 65%, transparent);
}
body[data-trust="logos"] .trust-inner::after{
  content:"Officially recognised & processed with the UAE government authorities & free-zones we work with daily.";
  text-align: center;
  font-size: .85rem;
  color: color-mix(in oklab, var(--brand-ink) 55%, transparent);
  font-family: var(--font-mono);
  letter-spacing: .04em;
}

/* Service grid styles */
body[data-svc="icons"] .svc-card{ min-height: 200px; align-items: center; text-align: center; }
body[data-svc="icons"] .svc-card .svc-icn{ width: 64px; height: 64px; border-radius: 18px; }
body[data-svc="icons"] .svc-card .svc-icn i{ width: 28px; height: 28px; }
body[data-svc="icons"] .svc-card .svc-list{ display: none; }
body[data-svc="icons"] .svc-card .svc-num{ display: none; }
body[data-svc="icons"] .svc-card .svc-go{ border-top: 0; padding-top: 0; }
body[data-svc="icons"] .svc-card-wide{ flex-direction: column; align-items: center; text-align: center; }

body[data-svc="list"] .services-grid{ grid-template-columns: 1fr; gap: 0; border: 1px solid var(--hairline); border-radius: 18px; overflow: hidden; background: #fff; }
body[data-svc="list"] .svc-card{
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  min-height: auto;
  padding: 1.25rem 1.6rem;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
}
body[data-svc="list"] .svc-card:last-child{ border-bottom: 0; }
body[data-svc="list"] .svc-card:hover{ transform: none; background: var(--bg-soft); }
body[data-svc="list"] .svc-card h3{ flex: 0 0 22%; margin: 0; }
body[data-svc="list"] .svc-card p{ flex: 1; max-width: 60ch; }
body[data-svc="list"] .svc-card .svc-list{ display: none; }
body[data-svc="list"] .svc-card .svc-icn{ width: 38px; height: 38px; }
body[data-svc="list"] .svc-card .svc-icn i{ width: 18px; height: 18px; }
body[data-svc="list"] .svc-card .svc-num{ position: static; }
body[data-svc="list"] .svc-card .svc-go{ border: 0; padding: 0; margin-left: auto; }
body[data-svc="list"] .svc-card-wide{ background: var(--bg-soft); }
body[data-svc="list"] .svc-card-wide h3{ flex-basis: 22%; }

/* Accent variants */
body[data-accent="sky"]{
  --brand: oklch(0.74 0.07 188);
  --brand-2: #0f3d46;
  --brand-3: oklch(0.88 0.06 188);
}
body[data-accent="royal"]{
  --brand: oklch(0.55 0.10 195);
  --brand-2: oklch(0.20 0.05 195);
  --brand-3: oklch(0.80 0.09 188);
}
body[data-accent="black"]{
  --brand: oklch(0.25 0.01 195);
  --brand-2: oklch(0.10 0.005 195);
  --brand-3: oklch(0.55 0 0);
}
body[data-accent="black"] .display .ink{
  background: linear-gradient(180deg, var(--brand-2) 50%, var(--brand-3) 50%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 1100px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-card{ max-width: 560px; width: 100%; margin-inline: auto; }
  .hero-collage{ max-width: 720px; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .svc-card-wide{ grid-column: span 2; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .steps{ grid-template-columns: repeat(2, 1fr); }
  .step::after{ display: none; }
  .reviews-nav{ display: none; }
  .reviews-slider-wrap{ overflow-x: auto; padding-block: 0; margin-block: 0; }
  .reviews-grid{
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding: 0 1.25rem .75rem 0;
    margin: 0;
    scrollbar-width: none;
    transform: none !important;
    transition: none !important;
    align-items: stretch;
  }
  .reviews-grid::-webkit-scrollbar{ display: none; }
  .reviews-grid .review{
    flex: 0 0 82%;
    max-width: 420px;
    min-width: 280px;
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    box-shadow: none !important;
  }
  .lead-inner{ grid-template-columns: 1fr; }
  .lead-form{ position: static; }
  .meet-inner{ grid-template-columns: 1fr; gap: 2rem; }
  .meet-col-left, .meet-col-right{ grid-column: 1; }
  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .nav-links{ display: none; }
  .trust-inner{ grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-stats{ grid-template-columns: repeat(2, 1fr); }
  .trust-hero{ align-items: center; text-align: center; }
  .trust-cap{ margin-inline: auto; }
  .stat:nth-child(2n)::after{ display: none; }
  .final-inner{ grid-template-columns: 1fr; }
  .final-cta{ padding: 0; box-sizing: border-box; width: 100%; }
  .final-cta .btn{ box-sizing: border-box; width: 100%; max-width: 100%; border-radius: 100px !important; }
  .btn-sub-text{ display: none; }
  .final-flag{ display: none; }
  body[data-svc="list"] .svc-card{ flex-wrap: wrap; }
  body[data-svc="list"] .svc-card h3{ flex-basis: 40%; }
  .bento-grid{
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    grid-template-areas:
      "a a b c"
      "a a d d"
      "e e f g";
  }
}

@media (max-width: 680px){
  .services-grid{ grid-template-columns: 1fr; }
  .svc-card-wide{ grid-column: span 1; }
  .why-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .step::after{ display: none; }
  .grid-2{ grid-template-columns: 1fr; }
  .form-actions{ grid-template-columns: 1fr; }
  /* Mobile accordion */
  .footer-inner{ grid-template-columns: 1fr; overflow: hidden; padding-bottom: 0; padding-top: 0; row-gap: 0; column-gap: 0; }
  .footer-brand{ display: flex; width: 100%; max-width: 100%; padding-bottom: 1.5rem; overflow: hidden; border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-authority-logos{ display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; max-width: 100%; min-width: 0; box-sizing: border-box; }
  .footer-col{ padding-top: 0; }
  /* Accordion toggle — re-enable on mobile */
  .footer-acc-toggle{
    border-bottom: 1px solid rgba(255,255,255,.1);
    padding: 1rem 0;
    margin: 0;
    cursor: pointer;
    pointer-events: auto;
  }
  .footer-chevron{
    display: block;
    flex-shrink: 0;
    transition: transform .25s ease;
  }
  .footer-acc-toggle[aria-expanded="true"] .footer-chevron{ transform: rotate(180deg); }
  .footer-acc-body{ max-height: 0; overflow: hidden; transition: max-height .3s ease; }
  .footer-acc-body ul{ padding: .5rem 0 1rem; gap: 0; }
  .footer-acc-body ul li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .65rem 0;
    min-height: 44px;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-acc-body ul li a::after{ content: '›'; font-size: 1.2rem; opacity: .5; flex-shrink: 0; }
  .footer-contact .footer-acc-body ul li, .footer-contact .footer-acc-body ul li a{ border-top: none; }
  .footer-contact .footer-acc-body ul li a::after{ display: none; }
  /* Mobile socials row */
  .footer-mobile-socials{ display: block; padding: 1.25rem 0; }
  .footer-mobile-socials .footer-contact-socials{ margin-top: 0; gap: 1.25rem; }
  .footer-contact-socials-desktop{ display: none !important; }
  /* Watermark hidden on mobile — shown as separate section */
  .footer-watermark{ display: none; }
  .footer-bar{ flex-direction: column; align-items: flex-start; gap: .5rem; padding-right: 80px; }
  .announce-bar{ display: none; }
  .nav{ transform: translate3d(0,0,0) !important; top: 0 !important; }
  .nav-inner{ padding: .9rem .9rem .9rem var(--container-x); }
  .brand-mark-img{ width: 34px; height: 34px; }
  .brand-word b{ font-size: 1rem; }

  .nav-hamburger{ width: 38px; height: 38px; }
  .float-call{ display: none; }
  .reviews-head{ flex-direction: column; align-items: flex-start; }
  .reviews .section-head{ text-align: left; }
  .reviews .section-eyebrow{ align-self: flex-start; }
  .reviews-rating{ flex-wrap: nowrap; font-size: .8rem; gap: .4rem; padding: .45rem .7rem; }
  .reviews-rating span{ white-space: nowrap; }
  .why-cta{ flex-direction: column; align-items: stretch; text-align: center; }
  .trust-stats{
    grid-template-columns: 1fr 1fr;
    display: grid;
    gap: .75rem;
    overflow: visible;
  }
  .trust-stats .stat{
    flex: unset;
    max-width: 280px;
    scroll-snap-align: start;
    padding: .85rem .9rem;
    gap: .6rem;
  }
  .trust-stats .stat-icn{
    width: 36px; height: 36px;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .trust-stats .stat-num b{ font-size: 1.25rem; }
  .trust-stats .stat-label{ font-size: .75rem; line-height: 1.3; }
  .trust-rating > b{ font-size: clamp(3.5rem, 9vw, 5rem); }
  .display{ font-size: clamp(2.5rem, 3rem + 4vw, 4rem); }
  .cta-row .btn{ width: 100%; }
  .hero-card-tag{ margin-bottom: .5rem; }
  .lead-form{ padding: 1.25rem; width: 100%; max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .lead-form input, .lead-form select, .lead-form textarea{ width: 100%; box-sizing: border-box; }
  .lead-inner{ overflow: hidden; }
  .logo-wall-label{ display: none; }
  .logo-wall-row{ gap: 1.5rem; }
  .logo-wall-row li{ font-size: .9rem; }
  .hero-card{ max-width: 100%; }
  .svc-card-wide{ flex-direction: column; align-items: flex-start; gap: 1rem; }
  .svc-card-wide h3{ flex: none; max-width: 100%; }
  .svc-card-wide p{ flex: none; max-width: 100%; }
  .svc-card-wide .svc-go{ width: 100%; }
  .hero-collage{ display: none !important; }
  .lead-consult{ flex-direction: column; align-items: flex-start; }
  /* Hero pills — 2×2 grid on mobile */
  .hero-pills{ display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
  .pill{ font-size: .72rem; padding: .45rem .65rem; overflow: hidden; }
  .pill span{ overflow: hidden; white-space: nowrap; text-overflow: ellipsis; min-width: 0; }
  /* Bento tile captions — drop uppercase, smaller text to prevent wrapping */
  .bento-tag{ font-size: .65rem; letter-spacing: .02em; text-transform: none; padding: .3rem .5rem; max-width: 100%; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; display: inline-flex; flex-wrap: nowrap; align-items: center; }
  .bento-tile figcaption{ padding: .65rem .75rem; overflow: hidden; }
  .bento-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    grid-template-areas:
      "a a"
      "b c"
      "d d"
      "e f"
      "g g";
  }

  /* Meet founder video — mobile */
  .meet-play{ width: 140px; height: 140px; }
  .meet-play-core{ width: 112px; height: 112px; }
  .meet-play-core svg{ width: 44px; height: 44px; }
  .meet-video-caption h3{ font-size: 1.15rem; }
  .meet-video-caption em{ font-size: .75rem; }
  .meet-video-caption{ gap: .35rem; left: .9rem; right: .9rem; bottom: .9rem; }
}

/* ───────────────────────── HAMBURGER + MOBILE NAV ───────────────────────── */
.nav-hamburger{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 0;
  flex-shrink: 0;
  transition: background .15s ease;
}
.nav-hamburger:hover{ background: transparent; }
.nav-hamburger[aria-expanded="true"]{ background: transparent; }
.nav-hamburger span{
  display: block;
  width: 20px;
  height: 2px;
  background: color-mix(in oklab, var(--brand-2) 78%, transparent);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
  transform-origin: center;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-hamburger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav-backdrop{
  position: fixed;
  inset: 0;
  z-index: 48;
  background: rgba(12,59,58,.55);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-nav-backdrop.is-open{ opacity: 1; pointer-events: auto; }

.mobile-nav{
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(340px, 88vw);
  z-index: 49;
  background: #ffffff;
  border-left: 1px solid #e8e8e8;
  box-shadow: -4px 0 24px rgba(0,0,0,.08);
  display: flex;
  flex-direction: column;
  padding: clamp(4.5rem, 7vw, 5.5rem) 1.75rem 2rem;
  gap: 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.22,.61,.36,1);
}
.mobile-nav.is-open{ transform: translateX(0); }
body.mobile-nav-open{ overflow: hidden; }

.mobile-nav-links{ display: flex; flex-direction: column; margin-top: 10px; }
.mobile-nav-links a{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--brand-2);
  border-bottom: 1px solid var(--hairline);
  transition: color .15s ease, padding-left .15s ease;
}
.mobile-nav-links a:first-child{ border-top: 1px solid var(--hairline); padding-top: 1rem; margin-top: 0; }
.mobile-nav-links a:hover{ color: var(--brand); padding-left: .4rem; }

.mobile-nav-footer{
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-top: auto;
  padding-bottom: 80px;
}
.mobile-nav-footer .btn{ border-radius: 100px !important; }

@media (max-width: 1100px){
  .nav-hamburger{ display: flex; }
  .nav-cta .btn-ghost{ display: none; }
  .nav-cta .btn-wa{ display: none; }
  .nav-cta .btn-calc-cta{ display: none; }
}
@media (max-width: 429px){
  .display{ font-size: clamp(3.75rem, 2rem + 5vw, 4.25rem); }
}
@media (max-width: 404px){
  .display{ font-size: clamp(3.4rem, 1.5rem + 5vw, 3.75rem); }
}

/* ── Floating Video Widget ── */
.float-video-widget{
  position: fixed;
  bottom: 9rem; /* sits above need-help widget */
  left: 1.5rem;
  z-index: 998;
  animation: nhSlideIn .5s cubic-bezier(.4,0,.2,1) .6s both;
}
.fvw-inner{
  display: flex; align-items: center; gap: .75rem;
  background: #fff;
  border-radius: 14px;
  padding: .6rem .9rem .6rem .6rem;
  box-shadow: 0 8px 28px rgba(0,0,0,.16), 0 2px 6px rgba(0,0,0,.07);
  border: 1px solid oklch(0.93 0.01 195);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
  min-width: 210px;
}
.fvw-inner:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(0,0,0,.2), 0 2px 8px rgba(0,0,0,.08);
}
.fvw-thumb{
  position: relative; width: 56px; height: 56px;
  border-radius: 10px; overflow: hidden; flex-shrink: 0;
  background: #0f3d46;
}
.fvw-thumb video{
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.fvw-play-ring,.fvw-play-ring-2{
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.12);
  margin: auto; width: 30px; height: 30px;
  animation: fvwPulse 2s ease-out infinite;
}
.fvw-play-ring-2{ animation-delay: 1s; }
@keyframes fvwPulse{
  0%{ transform:scale(.8); opacity:.7; }
  100%{ transform:scale(1.6); opacity:0; }
}
.fvw-play-core{
  position: absolute; inset: 0; margin: auto;
  width: 28px; height: 28px; border-radius: 50%;
  background: #fff;
  display: flex; align-items: center; justify-content: center;
  color: #0f3d46;
}
.fvw-label{ font-size: .82rem; font-weight: 700; color: #111; }
.fvw-sub{ font-size: .72rem; color: oklch(0.55 0.025 195); margin-top: .1rem; }
.fvw-close{
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #111; color: #fff; border: none; cursor: pointer;
  font-size: .65rem; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
  transition: background .15s;
}
.fvw-close:hover{ background: #333; }

/* Expanded video */
.fvw-expanded{
  display: none;
  position: fixed; bottom: 9rem; left: 1.5rem;
  width: 320px; border-radius: 16px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  background: #000;
  animation: nhSlideIn .25s ease;
  z-index: 999;
}
.fvw-expanded.open{ display: block; }
.fvw-expanded video{ width: 100%; display: block; max-height: 220px; object-fit: cover; }
.fvw-exp-close{
  position: absolute; top: .6rem; right: .6rem;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(0,0,0,.5); color: #fff; border: none; cursor: pointer;
  font-size: .75rem; display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.fvw-exp-close:hover{ background: rgba(0,0,0,.8); }
@media(max-width:640px){ .float-video-widget{ display:none; } }

/* ── Need Help Widget ── */
.need-help-widget{
  position: fixed;
  bottom: 2rem;
  left: 1.5rem;
  z-index: 999;
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 1.4rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.18), 0 2px 8px rgba(0,0,0,.08);
  min-width: 180px;
  text-align: center;
  border: 1px solid oklch(0.93 0.01 195);
  /* hidden by default — JS reveals when services section scrolls into view */
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .5s cubic-bezier(.4,0,.2,1);
}
.need-help-widget.visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  animation: nhWiggle 1.2s cubic-bezier(.4,0,.2,1) .6s both;
}
@keyframes nhWiggle{
  0%  { transform: translateY(0) rotate(0deg); }
  15% { transform: translateY(-4px) rotate(-8deg); }
  30% { transform: translateY(0) rotate(7deg); }
  45% { transform: translateY(-3px) rotate(-6deg); }
  60% { transform: translateY(0) rotate(5deg); }
  75% { transform: translateY(-2px) rotate(-3deg); }
  90% { transform: translateY(0) rotate(2deg); }
  100%{ transform: translateY(0) rotate(0deg); }
}
@keyframes nhSlideIn{
  from{ opacity:0; transform:translateY(16px); }
  to{ opacity:1; transform:translateY(0); }
}
.need-help-title{ font-size:1rem; font-weight:800; color:#111; margin:0 0 .15rem; }
.need-help-sub{ font-size:.82rem; font-weight:600; color:#c0392b; margin:0 0 .75rem; }
.need-help-btn{
  display:block; width:100%;
  padding:.6rem .75rem; border-radius:8px;
  background: var(--brand-2); color:#fff;
  font-size:.78rem; font-weight:700; letter-spacing:.08em; text-transform:uppercase;
  text-decoration:none; transition:background .15s, transform .1s;
}
.need-help-btn:hover{ background: var(--brand); transform:translateY(-1px); }
@media(max-width:640px){ .need-help-widget{ display:none; } }

/* ═══════════ WhatsApp chat widget ═══════════ */
.wa-notif-dot{
  position: absolute;
  top: 2px; right: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #f43f3f;
  border: 2.5px solid #fff;
  z-index: 3;
  display: none;
  transform: scale(0);
}
.wa-notif-dot.is-visible{
  display: block;
  animation: wa-dot-pop .35s cubic-bezier(.34,1.56,.64,1) forwards;
}
@keyframes wa-dot-pop{
  from{ transform: scale(0); }
  to{ transform: scale(1); }
}

.wa-chat{
  position: fixed;
  right: 38px;
  bottom: 122px;
  z-index: 1000;
  width: 360px;
  max-width: calc(100vw - 32px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,.28), 0 4px 12px rgba(0,0,0,.12);
  opacity: 0;
  transform: translateY(14px) scale(.97);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.34,1.3,.64,1);
  background: #efe7dd;
}
.wa-chat.open{
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Header — WhatsApp teal-green */
.wa-chat-header{
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  background: #008069;
  color: #fff;
}
.wa-chat-avatar{
  position: relative;
  width: 42px; height: 42px;
  flex: none;
}
.wa-chat-avatar img{
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: contain;
  object-position: center;
  background: #fff;
  padding: 4px;
  box-sizing: border-box;
  border: 1.5px solid rgba(255,255,255,0.12);
}
.wa-chat-online{
  position: absolute;
  bottom: 1px; right: 1px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #008069;
}
.wa-chat-id{
  display: flex;
  flex-direction: column;
  gap: .05rem;
  min-width: 0;
  flex: 1;
}
.wa-chat-id b{
  font-size: .95rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wa-chat-id span{
  font-size: .74rem;
  color: rgba(255,255,255,.85);
}
.wa-chat-close{
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: opacity .15s ease, transform .1s ease;
}
.wa-chat-close:hover{ opacity: .75; transform: scale(1.1); }
.wa-chat-close svg{ width: 26px; height: 26px; stroke-width: 3; }

/* Body — WhatsApp wallpaper */
.wa-chat-body{
  padding: 1rem .9rem 1.1rem;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cg fill='none' stroke='%23a89f93' stroke-width='1.1' opacity='.16'%3E%3Ccircle cx='24' cy='22' r='6'/%3E%3Cpath d='M120 18c4 0 7 3 7 7'/%3E%3Cpath d='M58 40l5 5m0-5l-5 5'/%3E%3Crect x='96' y='66' width='10' height='10' rx='2'/%3E%3Cpath d='M22 92c0-4 3-7 7-7s7 3 7 7-3 7-7 7'/%3E%3Cpath d='M132 108l6 6m-6 0l6-6'/%3E%3Ccircle cx='66' cy='128' r='5'/%3E%3Cpath d='M104 140q5-6 10 0'/%3E%3Cpath d='M40 64q4-5 8 0'/%3E%3C/g%3E%3C/svg%3E"),
    #efe7dd;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  min-height: 180px;
}
.wa-chat-day{
  align-self: center;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: #54656f;
  background: #fff;
  border-radius: 8px;
  padding: .25rem .7rem;
  box-shadow: 0 1px 1px rgba(0,0,0,.06);
  margin-bottom: .35rem;
}

/* Incoming bubble with tail */
.wa-msg{
  position: relative;
  align-self: flex-start;
  max-width: 84%;
  background: #fff;
  border-radius: 0 10px 10px 10px;
  padding: .5rem .65rem .35rem;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  animation: waMsgIn .3s ease both;
}
.wa-msg:nth-child(3){ animation-delay: .15s; }
.wa-msg:nth-child(4){ animation-delay: .3s; }
@keyframes waMsgIn{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}
/* tail */
.wa-msg::before{
  content: "";
  position: absolute;
  top: 0; left: -7px;
  border: 7px solid transparent;
  border-top-color: #fff;
  border-right-color: #fff;
  border-left: 0;
}
.wa-msg p{
  margin: 0;
  font-size: .865rem;
  line-height: 1.45;
  color: #111b21;
}
.wa-msg-time{
  display: block;
  text-align: right;
  font-size: .64rem;
  color: #8696a0;
  margin-top: .15rem;
}

/* Footer actions */
.wa-chat-footer{
  display: flex;
  gap: .6rem;
  padding: .75rem .9rem;
  background: #f0f2f5;
  border-top: 1px solid rgba(0,0,0,.06);
}
.wa-chat-start,
.wa-chat-call{
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  height: 52px;
  border-radius: 100px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: filter .15s ease, transform .1s ease;
}
.wa-chat-start{
  background: #25d366;
  color: #fff;
}
.wa-chat-call{
  background: #fff;
  color: #008069;
  border: 1.5px solid #008069;
}
.wa-chat-call svg{ width: 16px; height: 16px; }
.wa-chat-start:hover, .wa-chat-call:hover{ filter: brightness(1.05); transform: translateY(-1px); }

@media(max-width: 640px){
  .wa-chat{ right: 16px; bottom: 108px; }
}

/* ═══════════════════════════════════════════════════════════════
   LIQUID GLASS TAHOE — site-wide design language
   Translucent surfaces, specular edges, ambient color refraction
═══════════════════════════════════════════════════════════════ */

/* ── Ambient color orbs behind sections (gives glass something to refract) ── */
.services{
  background: #fff;
}
.process{
  overflow: clip;
  background:
    radial-gradient(720px 460px at 88% 6%, color-mix(in oklab, var(--brand) 12%, transparent), transparent 60%),
    radial-gradient(560px 420px at 6% 80%, color-mix(in oklab, #57c5bf 13%, transparent), transparent 62%),
    #fff;
}
/* ── Review platform badges ── */
.review-platforms {
  background: #fff;
  padding: 3.5rem 0;
}
.review-platforms .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
}
.rp-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #aaa;
  margin: 0;
}
.rp-badges {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.rp-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .65rem;
  padding: 1rem 4rem;
  text-decoration: none;
  color: inherit;
  transition: opacity .2s;
}
.rp-badge:hover { opacity: .7; }
.rp-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
}
.rp-logo svg:first-child { width: 40px; height: 40px; }
.rp-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #191919;
}
.rp-stars { display: flex; align-items: center; }
.rp-stars svg { width: 110px; height: 22px; }
.rp-score {
  font-size: .9rem;
  font-weight: 600;
  color: #666;
}
.rp-divider {
  width: 1px;
  height: 72px;
  background: #e8e8e8;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .rp-badges { flex-wrap: nowrap; gap: 0; width: 100%; justify-content: space-between; }
  .rp-badge { padding: .5rem .75rem; flex: 1; }
  .rp-logo svg:first-child { width: 24px; height: 24px; }
  .rp-logo svg[viewBox="200 360 1650 490"] { width: 52px !important; height: 16px !important; }
  .rp-name { font-size: .82rem; }
  .rp-stars svg { width: 70px; height: 14px; }
  .rp-score { font-size: .78rem; }
  .rp-divider { display: block; height: 56px; }
}

.reviews{
  background: #f8f8f8;
}
.blog-teaser{
  background: #fff;
}
.faq{
  background: #fff;
}

/* ── Light glass recipe (cards on light sections) ── */
.svc-card,
.stat,
.step,
.review,
.bt-card,
.faq-list details,
.feed-card{
  background: rgba(255,255,255,0.92) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.95) inset,
    0 -1px 0 rgba(255,255,255,.3) inset,
    0 12px 32px -12px rgba(15,61,70,.14),
    0 2px 8px -2px rgba(15,61,70,.06) !important;
}

/* Hover: glass brightens + lifts */
.svc-card:hover,
.stat:hover,
.bt-card:hover,
.feed-card:hover{
  background:
    linear-gradient(145deg,
      rgba(255,255,255,.78) 0%,
      rgba(255,255,255,.55) 45%,
      rgba(255,255,255,.7) 100%
    ) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow:
    0 1.5px 0 rgba(255,255,255,1) inset,
    0 -1px 0 rgba(255,255,255,.4) inset,
    0 24px 48px -16px rgba(15,61,70,.22),
    0 4px 12px -4px rgba(15,61,70,.08) !important;
}

/* FAQ open state */
.faq-list details[open]{
  background:
    linear-gradient(145deg,
      rgba(255,255,255,.8) 0%,
      rgba(255,255,255,.6) 50%,
      rgba(255,255,255,.72) 100%
    ) !important;
  border-color: rgba(255,255,255,0.12) !important;
  box-shadow:
    0 1.5px 0 rgba(255,255,255,1) inset,
    0 20px 44px -18px rgba(15,61,70,.2) !important;
}

/* Icon chips get glass treatment */
.svc-icn,
.stat-icn,
.why-icn{
  background: linear-gradient(145deg, rgba(255,255,255,.85), rgba(255,255,255,.45)) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 4px 12px -4px rgba(15,61,70,.18) !important;
}

/* Step final keeps brand color but glassy */
.step-final{
  background:
    linear-gradient(145deg,
      color-mix(in oklab, var(--brand-2) 88%, #fff) 0%,
      var(--brand-2) 55%,
      color-mix(in oklab, var(--brand-2) 92%, #000) 100%
    ) !important;
  border: 1px solid color-mix(in oklab, var(--brand-2) 60%, #fff) !important;
  box-shadow:
    0 1px 0 rgba(255,255,255,.35) inset,
    0 16px 36px -14px color-mix(in oklab, var(--brand-2) 65%, transparent) !important;
}

/* Need-help widget → glass */
.need-help-widget{
  background:
    linear-gradient(145deg,
      rgba(255,255,255,.75) 0%,
      rgba(255,255,255,.55) 50%,
      rgba(255,255,255,.68) 100%
    );
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 12px 36px rgba(0,0,0,.16),
    0 2px 8px rgba(0,0,0,.06);
}

/* Floating WhatsApp + icons get a glass ring */
.float-wa{
  box-shadow:
    0 0 0 1px rgba(255,255,255,.35) inset,
    0 1px 0 rgba(255,255,255,.5) inset,
    0 10px 30px -8px rgba(0,0,0,.35);
}

/* Mobile nav drawer */
.mobile-nav{
  background: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-left: 1px solid #e8e8e8 !important;
}

/* Footer ambient glow */
.footer{
  position: relative;
  overflow: hidden;
}
.footer-doodle{
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 80% 40% at 10% 110%, rgba(1,176,202,.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% -10%, rgba(1,176,202,.12) 0%, transparent 55%),
    radial-gradient(ellipse 100% 30% at 50% 120%, rgba(87,197,191,.1) 0%, transparent 60%);
}

/* Section eyebrow pills → glass */
.section-eyebrow{
  background: rgba(255,255,255,0.85) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.9) inset, 0 2px 8px -2px rgba(15,61,70,.08);
}
/* Final CTA eyebrow → no glass, sits on dark image */
.final .section-eyebrow{
  background: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border: none !important;
  box-shadow: none !important;
  padding-left: 0 !important;
}

/* Reviews rating pill → glass */
.reviews-rating{
  background:
    linear-gradient(145deg, rgba(255,255,255,.7), rgba(255,255,255,.45)) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid rgba(255,255,255,0.12) !important;
  box-shadow: 0 1px 0 rgba(255,255,255,.95) inset, 0 2px 10px -3px rgba(15,61,70,.1);
}

/* ── Page hero (about, services subpages) mobile alignment ── */
@media (max-width: 680px) {
  .pg-hero-inner {
    padding-top: calc(var(--nav-h,72px) + var(--bar-h,36px) + 1.25rem) !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
    padding-bottom: 2rem !important;
  }
  .pg-body {
    padding: 2rem 1.25rem 4rem;
  }
  .section {
    padding-block: 2rem;
  }
  .blog-teaser .section-head {
    margin-bottom: 1rem !important;
  }
  .blog-teaser-cta[style*="visibility:hidden"],
  .blog-teaser-cta[style*="visibility: hidden"] {
    display: none !important;
  }
}

/* ── Cookie Consent Banner ── */
#cookie-banner{
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  left: auto;
  transform: none;
  width: min(360px, calc(100vw - 2rem));
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  padding: 1.75rem 1.5rem 1.5rem;
  z-index: 9999;
  text-align: center;
  animation: cookie-in .3s ease;
}
@keyframes cookie-in{
  from{ opacity:0; transform:translateY(16px); }
  to{   opacity:1; transform:translateY(0); }
}
#cookie-banner.cookie-hide{
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
}
#cookie-banner p{
  font-size: .93rem;
  line-height: 1.6;
  color: #222;
  margin: 0 0 1.1rem;
}
#cookie-banner p a{
  color: inherit;
  text-decoration: underline;
  font-weight: 600;
}
.cookie-btns{
  display: flex;
  gap: .75rem;
}
.cookie-accept, .cookie-reject{
  flex: 1;
  padding: .85rem 1rem;
  border-radius: 100px;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .15s;
  border: none;
}
.cookie-accept{
  background: #000;
  color: #fff;
}
.cookie-reject{
  background: #f0f0f0;
  color: #222;
}
.cookie-accept:hover, .cookie-reject:hover{ opacity: .82; }
.cookie-close{
  position: absolute;
  top: .75rem;
  right: .9rem;
  background: none;
  border: none;
  font-size: 1.3rem;
  line-height: 1;
  color: #888;
  cursor: pointer;
  padding: .2rem .4rem;
}
.cookie-close:hover{ color: #222; }
@media(max-width:600px){
  #cookie-banner{
    bottom: 1.5rem;
    right: 50%;
    transform: translateX(50%);
    width: calc(100vw - 2rem);
  }
  #cookie-banner.cookie-hide{ transform: translateX(50%) translateY(12px); }
  .cookie-privacy-word{ display: none; }
}
