/* ============================================================
   APEX COMMUNICATIONS — Design System
   Apple-grade minimalism · Blue #0055FF · White · Black
   ============================================================ */

:root {
  --blue: #0055FF;
  --blue-hover: #0044CC;
  --blue-soft: #6B9BFF;
  --blue-light: #E6F0FF;
  --ink: #0A0A0A;
  --ink-2: #555557;
  --ink-3: #8E8E93;
  --bg: #FFFFFF;
  --bg-subtle: #F5F5F7;
  --line: #E5E5EA;
  --dark: #0A0A0A;
  --dark-line: #2C2C2E;
  --dark-text: #A1A1A6;
  --font-head: 'Outfit', -apple-system, sans-serif;
  --font-body: 'Manrope', -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .21, 1);
  --container: 1200px;
  --radius: 22px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; letter-spacing: -0.03em; line-height: 1.08; }

::selection { background: var(--blue); color: #fff; }

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.content-narrow { max-width: 760px; }
.section { padding: 96px 0; }
.section-tight { padding: 0 0 96px; }
.section-dark { background: var(--dark); color: #fff; }

.overline {
  font-size: 12px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--blue); display: flex; align-items: center; gap: 10px; margin-bottom: 22px;
}
.overline-dark { color: var(--blue-soft); }

.section-head { margin-bottom: 52px; }
.section-title { font-size: clamp(2.4rem, 5vw, 4rem); }
.section-title-sm { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.page-hero { padding: 164px 0 64px; }
.page-title { font-size: clamp(2.9rem, 6vw, 5.2rem); }
.page-sub { margin-top: 26px; font-size: 18px; color: var(--ink-2); max-width: 640px; }

/* ---------------- Buttons & links ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px; line-height: 1;
  padding: 16px 32px; border-radius: 999px; border: 1px solid transparent; cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .35s var(--ease);
}
.btn:active { transform: scale(.96); }
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-hover); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { background: #E5E5EA; }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.btn-ghost-light:hover { border-color: #fff; }
.btn-sm { padding: 11px 22px; font-size: 14px; }
.btn-lg { padding: 19px 38px; font-size: 17px; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: 15px; color: var(--blue);
}
.link-arrow svg { transition: transform .35s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------------- Topbar ---------------- */
.topbar {
  background: var(--ink); color: rgba(255,255,255,.85);
  max-height: 44px; overflow: hidden;
  transition: max-height .45s var(--ease), opacity .45s var(--ease);
}
.topbar-inner {
  max-width: var(--container); margin: 0 auto; padding: 9px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.topbar-right { display: flex; align-items: center; gap: 26px; }
.tb-item {
  display: inline-flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.85); font-size: 12.5px; font-weight: 600; letter-spacing: .02em;
  transition: color .3s var(--ease); white-space: nowrap;
}
.tb-item:hover { color: #fff; }
.tb-item svg { flex-shrink: 0; opacity: .8; }
.tb-wa { color: #4AD97C; }
.tb-wa:hover { color: #6BEE97; }
.site-nav.scrolled .topbar { max-height: 0; opacity: 0; }

/* ---------------- Navigation ---------------- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 120;
  transition: background-color .45s var(--ease), border-color .45s var(--ease), backdrop-filter .45s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav-inner {
  max-width: var(--container); margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; gap: 32px;
  transition: padding .45s var(--ease);
}
.site-nav.scrolled {
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  backdrop-filter: blur(20px) saturate(1.6);
  border-bottom-color: var(--line);
}
.site-nav.scrolled .nav-inner { padding: 12px 24px; }

.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 48px; width: auto; display: block; }
.brand-footer .brand-logo { height: 42px; }
@media (max-width: 640px) { .brand-logo { height: 38px; } }

.nav-desktop { margin-left: auto; }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 6px; padding: 8px 0;
  position: relative; color: var(--ink-2); font-weight: 500; font-size: 15px;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 2px; height: 2px;
  background: var(--blue); border-radius: 2px; transition: right .35s var(--ease);
}
.nav-link:hover, .nav-link.is-active { color: var(--ink); }
.nav-link:hover::after, .nav-link.is-active::after { right: 0; }
.nav-link svg { transition: transform .3s var(--ease); color: var(--ink-3); }
.has-dropdown:hover .nav-link svg { transform: rotate(180deg); }

.has-dropdown { position: relative; }
.nav-dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translate(-50%, 10px);
  width: 330px; padding: 10px;
  background: rgba(255,255,255,.97);
  -webkit-backdrop-filter: blur(22px) saturate(1.5); backdrop-filter: blur(22px) saturate(1.5);
  border: 1px solid var(--line); border-radius: 20px;
  box-shadow: 0 30px 70px rgba(10,10,10,.14);
  opacity: 0; visibility: hidden;
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility 0s .3s;
}
.nav-dropdown::before { content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.has-dropdown:hover .nav-dropdown, .has-dropdown:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.nd-item { display: block; padding: 11px 16px; border-radius: 14px; transition: background-color .25s var(--ease); }
.nd-item:hover { background: var(--bg-subtle); }
.nd-item strong { display: block; font-family: var(--font-head); font-weight: 600; font-size: 15px; color: var(--ink); letter-spacing: -0.01em; }
.nd-item span { display: block; font-size: 12.5px; color: var(--ink-3); margin-top: 2px; }
.nd-all {
  display: flex; align-items: center; gap: 7px; margin-top: 8px; padding: 13px 16px 8px;
  border-top: 1px solid var(--line); font-size: 13.5px; font-weight: 700; color: var(--blue);
}
.nd-all svg { transition: transform .3s var(--ease); }
.nd-all:hover svg { transform: translateX(4px); }

.nav-actions { display: flex; align-items: center; gap: 20px; margin-left: 40px; }
.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink); font-weight: 600; font-size: 14px;
  transition: color .3s var(--ease);
}
.nav-phone:hover { color: var(--blue); }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; position: relative; z-index: 130;
}
.menu-toggle span {
  position: absolute; left: 11px; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .4s var(--ease), top .4s var(--ease);
}
.menu-toggle span:first-child { top: 18px; }
.menu-toggle span:last-child { top: 25px; }
body.menu-open .menu-toggle span:first-child { top: 21px; transform: rotate(45deg); }
body.menu-open .menu-toggle span:last-child { top: 21px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110; background: rgba(255,255,255,.94);
  -webkit-backdrop-filter: blur(28px) saturate(1.6); backdrop-filter: blur(28px) saturate(1.6);
  display: flex; flex-direction: column;
  padding: 96px 28px 26px;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s .5s;
}
body.menu-open .topbar { max-height: 0; opacity: 0; }
body.menu-open .site-nav { background: rgba(255,255,255,.94); }
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); transition: opacity .5s var(--ease), transform .5s var(--ease); }
.mobile-menu-links { display: flex; flex-direction: column; flex: 1 1 auto; min-height: 0; overflow-y: auto; }
.mobile-menu-links > a {
  display: flex; align-items: baseline; gap: 16px; flex-shrink: 0;
  font-family: var(--font-head); font-weight: 500; font-size: clamp(1.5rem, 5.5vw, 2.1rem);
  letter-spacing: -0.03em; color: var(--ink); padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu-links > a:hover { color: var(--blue); }
.mm-sub {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; flex-shrink: 0;
  padding: 12px 0 14px; border-bottom: 1px solid var(--line);
}
.mm-sub a { font-size: 14px; font-weight: 600; color: var(--ink-2); padding: 6px 0; }
.mm-sub a:hover { color: var(--blue); }
.mobile-menu-links > * {
  opacity: 0; transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease), color .3s;
}
.mobile-menu.open .mobile-menu-links > * { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-menu-links > *:nth-child(1) { transition-delay: .08s; }
.mobile-menu.open .mobile-menu-links > *:nth-child(2) { transition-delay: .14s; }
.mobile-menu.open .mobile-menu-links > *:nth-child(3) { transition-delay: .20s; }
.mobile-menu.open .mobile-menu-links > *:nth-child(4) { transition-delay: .26s; }
.mobile-menu.open .mobile-menu-links > *:nth-child(5) { transition-delay: .32s; }
.mm-index { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .1em; }
.mobile-menu-foot { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; padding-top: 16px; font-weight: 600; font-size: 14px; }
.mobile-menu-foot a { color: var(--ink-2); }
.mobile-menu-foot a:hover { color: var(--blue); }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 150px 0 72px; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-overline { margin-bottom: 28px; }
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
.pulse-dot::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--blue); opacity: .5; animation: apex-pulse 2.2s var(--ease) infinite;
}
@keyframes apex-pulse { 0% { transform: scale(.6); opacity: .7; } 100% { transform: scale(1.6); opacity: 0; } }

.hero-title { font-size: clamp(3.1rem, 7vw, 6.4rem); line-height: .99; letter-spacing: -0.038em; }
.hero-title .accent { color: var(--blue); }
.line-mask { display: block; overflow: hidden; padding-bottom: .06em; margin-bottom: -.06em; }
.line-inner { display: block; will-change: transform; }
html.js:not(.no-anim) .line-inner { transform: translateY(112%); }
html.js:not(.no-anim) [data-hero-fade] { opacity: 0; transform: translateY(22px); }
html.js:not(.no-anim) [data-reveal] { opacity: 0; }
html.no-anim [data-reveal], html.no-anim [data-hero-fade] { opacity: 1 !important; transform: none !important; }
html.no-anim .line-inner { transform: none !important; }

.hero-sub { margin-top: 30px; font-size: 18px; color: var(--ink-2); max-width: 520px; }
.hero-cta { margin-top: 38px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

/* ---------------- Featured services (Taxi & Limo) ---------------- */
.featured-services { padding-top: 8px; }
.feat-overline { justify-content: center; margin-bottom: 34px; }
.feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feat-card {
  background: var(--bg-subtle); border-radius: var(--radius); overflow: hidden;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.feat-card:hover { transform: translateY(-8px); box-shadow: 0 30px 70px rgba(10,10,10,.12); }
.feat-media { position: relative; overflow: hidden; }
.feat-media img { width: 100%; aspect-ratio: 16 / 9.5; object-fit: cover; transition: transform .8s var(--ease); }
.feat-card:hover .feat-media img { transform: scale(1.05); }
.feat-badge {
  position: absolute; top: 18px; left: 18px;
  background: var(--blue); color: #fff; border-radius: 999px; padding: 7px 16px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,85,255,.35);
}
.feat-body { padding: 30px 34px 36px; }
.feat-body h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); letter-spacing: -0.02em; }
.feat-body p { margin-top: 12px; color: var(--ink-2); font-size: 15.5px; max-width: 480px; }
.feat-actions { margin-top: 24px; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .feat-grid { grid-template-columns: 1fr; }
}

.hero-stats {
  margin-top: 48px; padding-top: 30px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, auto); gap: 20px; justify-content: space-between; max-width: 560px;
}
.hero-stats dt { font-family: var(--font-head); font-weight: 500; font-size: 30px; letter-spacing: -0.03em; }
.hero-stats dd { font-size: 12.5px; color: var(--ink-3); font-weight: 500; margin-top: 2px; }

.hero-visual { position: relative; }
.hero-frame {
  border-radius: 32px; overflow: hidden; position: relative;
  box-shadow: 0 30px 80px rgba(10,10,10,.10), 0 4px 18px rgba(10,10,10,.06);
  border: 1px solid rgba(10,10,10,.05);
}
.hero-frame img { width: 100%; aspect-ratio: 1 / 1.02; object-fit: cover; }

.hero-card {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(18px) saturate(1.5); backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255,255,255,.7); border-radius: 18px;
  box-shadow: 0 16px 44px rgba(10,10,10,.12);
  padding: 14px 20px;
}
.hero-card strong { font-family: var(--font-head); font-size: 15px; font-weight: 600; display: block; line-height: 1.2; }
.hero-card span { font-size: 12.5px; color: var(--ink-3); display: block; }
.hero-card-a { left: -34px; bottom: 56px; }
.hero-card-a .hc-dot { width: 10px; height: 10px; border-radius: 50%; background: #30D158; flex-shrink: 0; }
.hero-card-b { right: -22px; top: 52px; flex-direction: column; align-items: flex-start; gap: 2px; }
.hero-card-b strong { font-size: 26px; color: var(--blue); letter-spacing: -0.03em; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid rgba(10,10,10,.28); border-radius: 14px;
  display: flex; justify-content: center; padding-top: 8px;
}
.scroll-hint span { width: 3.5px; height: 8px; border-radius: 3px; background: var(--blue); animation: apex-scroll-dot 1.8s var(--ease) infinite; }
@keyframes apex-scroll-dot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ---------------- Marquee ---------------- */
.marquee { padding: 28px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }
.marquee-track { display: flex; width: max-content; animation: apex-marquee 46s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center;
  font-family: var(--font-head); font-weight: 300; letter-spacing: -0.02em;
  font-size: clamp(2.1rem, 4.6vw, 3.8rem); color: var(--ink); white-space: nowrap;
}
.marquee-item i { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); margin: 0 44px; flex-shrink: 0; }
@keyframes apex-marquee { to { transform: translateX(-50%); } }

/* ---------------- Bento ---------------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.bento-card {
  grid-column: span 2; background: var(--bg-subtle); border-radius: var(--radius);
  padding: 38px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(10,10,10,.08); }
.bento-card h3 { font-size: 23px; letter-spacing: -0.02em; }
.bento-card p { color: var(--ink-2); font-size: 15.5px; }
.bento-card .link-arrow { margin-top: auto; padding-top: 12px; }

.bento-badge {
  display: inline-flex; align-self: flex-start; align-items: center;
  background: var(--blue); color: #fff; border-radius: 999px; padding: 5px 13px;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
}
.bento-icon {
  width: 50px; height: 50px; border-radius: 15px; background: #fff; color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(10,10,10,.06); margin-bottom: 6px;
}

.bento-nemt { grid-column: span 4; display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: center; }
.bento-nemt .bento-text { display: flex; flex-direction: column; gap: 14px; }
.bento-nemt .link-arrow { padding-top: 8px; }
.bento-media { border-radius: 16px; overflow: hidden; }
.bento-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.bento-card:hover .bento-media img { transform: scale(1.04); }

.bento-img { display: grid; grid-template-rows: 1fr auto; padding: 0; overflow: hidden; }
.bento-img .bento-media { border-radius: 0; }
.bento-img .bento-text { padding: 30px 34px 34px; display: flex; flex-direction: column; gap: 10px; }

.bento-wide { grid-column: span 6; display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.bento-wide .bento-text { display: flex; flex-direction: column; gap: 14px; }
.bento-wide .bento-media img { aspect-ratio: 16/8.5; }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  font-size: 13px; font-weight: 600; color: var(--ink-2); padding: 7px 15px;
}

/* ---------------- Locations ---------------- */
.locations-section { background: var(--bg-subtle); overflow: hidden; }
.loc-head { text-align: center; }
.loc-head .overline { justify-content: center; }
.loc-grid {
  display: flex; justify-content: center; align-items: flex-start;
  gap: clamp(28px, 5vw, 80px); flex-wrap: wrap; padding-top: 16px;
}
.loc-item { display: flex; flex-direction: column; align-items: center; text-align: center; }
.loc-item:nth-child(even) { margin-top: 58px; }
.pin {
  position: relative; width: 200px; height: 200px; border-radius: 50%;
  border: 11px solid var(--ink); background: var(--ink);
  box-shadow: 0 26px 55px rgba(10,10,10,.18);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.loc-item:nth-child(even) .pin { width: 246px; height: 246px; border-width: 13px; }
.pin img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; display: block; }
.pin::after {
  content: ''; position: absolute; left: 50%; top: calc(100% - 3px); transform: translateX(-50%);
  width: 30px; height: 70px; background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.loc-item:hover .pin { transform: translateY(-10px); box-shadow: 0 36px 70px rgba(10,10,10,.22); }
.loc-name {
  margin-top: 94px; font-family: var(--font-head); font-weight: 600; font-size: 18px;
  letter-spacing: .16em; text-transform: uppercase;
}

/* ---------------- Manifesto chapters ---------------- */
.chapter {
  display: grid; grid-template-columns: 150px 1fr 1fr; gap: 40px; align-items: start;
  padding: 56px 0; border-top: 1px solid var(--dark-line);
}
.chapter:last-child { border-bottom: 1px solid var(--dark-line); }
.chapter-num { font-family: var(--font-head); font-weight: 300; font-size: 54px; color: var(--blue-soft); letter-spacing: -0.03em; line-height: 1; }
.chapter-title { font-size: clamp(1.9rem, 3.4vw, 2.8rem); color: #fff; }
.chapter-text { color: var(--dark-text); font-size: 17px; max-width: 480px; }

/* ---------------- Testimonials ---------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.quote-card {
  background: var(--bg-subtle); border-radius: var(--radius); padding: 42px 38px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 36px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.quote-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(10,10,10,.08); }
.quote-card p { font-family: var(--font-head); font-weight: 300; font-size: 21px; line-height: 1.45; letter-spacing: -0.015em; }
.quote-card footer strong { display: block; font-size: 14.5px; font-weight: 700; }
.quote-card footer span { font-size: 13px; color: var(--ink-3); }

/* ---------------- CTA ---------------- */
.cta-section { position: relative; overflow: hidden; }
.cta-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.cta-title { font-size: clamp(2.9rem, 6vw, 5rem); color: #fff; }
.cta-sub { margin-top: 24px; color: var(--dark-text); font-size: 17.5px; max-width: 460px; }
.cta-actions { margin-top: 40px; display: flex; gap: 16px; flex-wrap: wrap; }
.cta-visual img { border-radius: 28px; border: 1px solid var(--dark-line); }

/* ---------------- Service blocks ---------------- */
.service-block { padding: 92px 0; }
.svc-cta-row { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.svc-cta-row .btn { margin-top: 0; }
.service-alt { background: var(--bg-subtle); }
.service-dark { background: var(--dark); color: #fff; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.service-grid-flip .service-copy { order: 2; }
.service-grid-flip .service-media { order: 1; }
.service-index { font-size: 13px; font-weight: 700; letter-spacing: .2em; color: var(--blue); display: block; margin-bottom: 18px; }
.service-dark .service-index { color: var(--blue-soft); }
.service-copy h2 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.service-lede { font-family: var(--font-head); font-size: 21px; font-weight: 500; letter-spacing: -0.015em; margin: 18px 0 14px; }
.service-dark .service-lede { color: #fff; }
.service-copy > p:not(.service-lede) { color: var(--ink-2); font-size: 16.5px; max-width: 480px; }
.service-dark .service-copy > p:not(.service-lede) { color: var(--dark-text); }
.service-dark .link-arrow { color: var(--blue-soft); }
.service-dark .service-media img { box-shadow: 0 30px 70px rgba(0,0,0,.45); }
.service-copy .btn { margin-top: 34px; }

.ticks { margin-top: 26px; }
.ticks li {
  position: relative; padding-left: 32px; margin: 13px 0; color: var(--ink-2); font-size: 15.5px; font-weight: 500;
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 3px; width: 17px; height: 17px; border-radius: 50%;
  background: var(--blue-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230055FF' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.ticks-dark li { color: #C7C7CC; }
.ticks-dark li::before { background-color: rgba(107,155,255,.14); }

.service-media img { border-radius: 26px; box-shadow: 0 30px 70px rgba(10,10,10,.10); width: 100%; }
.service-alt .service-media img { box-shadow: 0 30px 70px rgba(10,10,10,.07); }
.service-visual-dark {
  border: 1px solid var(--dark-line); border-radius: 26px; aspect-ratio: 4/3.2;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 22px; text-align: center;
}
.service-visual-dark .svd-line { width: 42px; height: 1.5px; background: var(--blue); }
.service-visual-dark p { font-family: var(--font-head); font-size: 24px; font-weight: 300; letter-spacing: -0.02em; color: rgba(255,255,255,.65); }

.nemt-list { margin-top: 60px; border-bottom: 1px solid var(--line); }
.nemt-list-flat { margin-top: 0; }
.nemt-list li {
  display: grid; grid-template-columns: 100px 1fr; gap: 24px; align-items: baseline;
  padding: 30px 8px; border-top: 1px solid var(--line);
  transition: background-color .35s var(--ease);
}
.nemt-list li:hover { background: var(--bg-subtle); }
.nemt-list li > span { font-family: var(--font-head); font-weight: 300; font-size: 30px; color: var(--blue); }
.nemt-list h3 { font-size: 20px; letter-spacing: -0.015em; }
.nemt-list p { color: var(--ink-2); font-size: 15px; margin-top: 5px; }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 88px; align-items: start; }
.about-story h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 30px; }
.about-story p { color: var(--ink-2); font-size: 17px; margin-bottom: 22px; max-width: 560px; }
.about-facts { display: grid; grid-template-columns: 1fr 1fr; gap: 44px 32px; position: sticky; top: 120px; }
.fact strong { display: block; font-family: var(--font-head); font-weight: 500; font-size: 52px; letter-spacing: -0.04em; line-height: 1; }
.fact strong span { font: inherit; color: inherit; margin: 0; display: inline; }
.fact > span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--ink-3); font-weight: 500; }

.about-mission { text-align: left; }
.mission-line { font-size: clamp(2.6rem, 6vw, 4.8rem); color: #fff; }
.mission-line .accent { color: var(--blue-soft); }
.mission-sub { margin-top: 26px; color: var(--dark-text); font-size: 18px; max-width: 560px; }

.values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card {
  border: 1px solid var(--line); border-radius: var(--radius); padding: 40px 36px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(10,10,10,.07); border-color: transparent; }
.value-num { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--blue); }
.value-card h3 { font-size: 22px; margin: 16px 0 12px; letter-spacing: -0.02em; }
.value-card p { color: var(--ink-2); font-size: 15.5px; }

.coverage-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.coverage-list { margin-top: 44px; }
.coverage-list li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 20px 4px; border-bottom: 1px solid var(--line);
}
.coverage-list li:first-child { border-top: 1px solid var(--line); }
.coverage-list strong { font-family: var(--font-head); font-size: 19px; font-weight: 500; }
.coverage-list span { color: var(--ink-3); font-size: 14.5px; font-weight: 600; }
.coverage-note { margin-top: 26px; font-size: 14px; color: var(--ink-3); }
.coverage-visual img { border-radius: 28px; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 44px; align-items: start; }
.contact-methods { display: flex; flex-direction: column; gap: 14px; }
.method-card {
  display: block; border: 1px solid var(--line); border-radius: 18px; padding: 24px 28px;
  color: var(--ink); transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease);
}
a.method-card:hover { transform: translateY(-3px); border-color: var(--blue); box-shadow: 0 14px 40px rgba(0,85,255,.08); }
.method-label { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 8px; }
.method-card strong { display: block; font-family: var(--font-head); font-size: 21px; font-weight: 500; letter-spacing: -0.02em; }
.method-email { font-size: 17px; word-break: break-all; }
.method-action { display: inline-flex; align-items: center; gap: 7px; margin-top: 10px; font-size: 14px; font-weight: 700; color: var(--blue); }
.method-note { display: block; margin-top: 8px; font-size: 13.5px; color: var(--ink-3); }
.method-wa { background: #F2FBF6; border-color: #D5F0E0; }
.method-wa .method-action { color: #128C4B; }
.method-wa:hover { border-color: #25D366 !important; box-shadow: 0 14px 40px rgba(18,140,75,.10) !important; }
.method-static { background: var(--bg-subtle); border-color: transparent; }

.contact-form-wrap { background: var(--bg-subtle); border-radius: 28px; padding: 48px; }
.form-title { font-size: 27px; letter-spacing: -0.02em; }
.form-sub { color: var(--ink-2); font-size: 15px; margin: 10px 0 30px; }

.form-notice { border-radius: 14px; padding: 16px 20px; font-size: 14.5px; font-weight: 600; margin-bottom: 26px; }
.form-success { background: #E8F9EF; color: #0E7A3C; border: 1px solid #C4ECD4; }
.form-error { background: #FDECEA; color: #C1272D; border: 1px solid #F5C6C4; }

.field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.field .opt { font-weight: 500; color: var(--ink-3); }
.hp-field { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.apex-form input[type="text"], .apex-form input[type="email"], .apex-form input[type="tel"],
.apex-form select, .apex-form textarea,
.wpcf7 input[type="text"], .wpcf7 input[type="email"], .wpcf7 input[type="tel"],
.wpcf7 select, .wpcf7 textarea {
  width: 100%; padding: 14px 16px; border-radius: 12px; border: 1px solid var(--line);
  background: #fff; font: 400 15px var(--font-body); color: var(--ink);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
  -webkit-appearance: none; appearance: none;
}
.apex-form select, .wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23555557' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; background-size: 15px; padding-right: 44px;
}
.apex-form textarea, .wpcf7 textarea { resize: vertical; min-height: 130px; }
.apex-form input:focus, .apex-form select:focus, .apex-form textarea:focus,
.wpcf7 input:focus, .wpcf7 select:focus, .wpcf7 textarea:focus {
  outline: none; border-color: var(--blue); box-shadow: 0 0 0 3.5px rgba(0,85,255,.12);
}

/* CF7 native markup alignment */
.wpcf7 label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 20px; }
.wpcf7 label .wpcf7-form-control-wrap { display: block; margin-top: 8px; }
.wpcf7 .wpcf7-submit {
  width: 100%; border: 0; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  font: 600 17px var(--font-body); padding: 19px 38px; border-radius: 999px;
  background: var(--blue); color: #fff;
  transition: background-color .35s var(--ease), transform .35s var(--ease);
}
.wpcf7 .wpcf7-submit:hover { background: var(--blue-hover); }
.wpcf7 .wpcf7-submit:active { transform: scale(.97); }
.wpcf7 .wpcf7-spinner { margin: 12px auto 0; display: block; }
.wpcf7 .wpcf7-not-valid-tip { font-size: 13px; margin-top: 6px; }
.wpcf7 .wpcf7-response-output { border-radius: 14px; padding: 16px 20px !important; font-size: 14.5px; font-weight: 600; margin: 22px 0 0 !important; }
.wpcf7 form.sent .wpcf7-response-output { background: #E8F9EF; color: #0E7A3C; border-color: #C4ECD4; }
.wpcf7 form.failed .wpcf7-response-output, .wpcf7 form.invalid .wpcf7-response-output { background: #FDECEA; color: #C1272D; border-color: #F5C6C4; }

.map-frame { border-radius: 26px; overflow: hidden; border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; filter: grayscale(.35); }

/* ---------------- Home contact & WhatsApp float ---------------- */
.home-contact { background: var(--bg-subtle); }
.home-contact .contact-form-wrap { background: #fff; border: 1px solid var(--line); }
.home-contact .method-card { background: #fff; }
.home-contact .method-static { background: #fff; border-color: var(--line); }
.home-contact .method-wa { background: #F2FBF6; }

.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 150;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(18,140,75,.35);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .35s var(--ease);
}
.wa-float::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25D366; opacity: .6;
  animation: apex-wa-pulse 2.4s var(--ease) infinite;
}
@keyframes apex-wa-pulse {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.55); opacity: 0; }
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); background: #1EBE5A; box-shadow: 0 16px 40px rgba(18,140,75,.45); }
body.menu-open .wa-float { opacity: 0; pointer-events: none; }
.wa-float:active { transform: scale(.95); }
@media (max-width: 640px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}

/* ---------------- Footer ---------------- */
.site-footer { background: var(--bg-subtle); border-top: 1px solid var(--line); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .8fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
.footer-tagline { margin-top: 20px; color: var(--ink-2); font-size: 14.5px; max-width: 300px; }
.footer-socials { display: flex; gap: 10px; margin-top: 26px; }
.footer-socials a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--ink-2);
  transition: color .3s, border-color .3s, background-color .3s, transform .3s var(--ease);
}
.footer-socials a:hover { color: #fff; background: var(--blue); border-color: var(--blue); transform: translateY(-3px); }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 20px; }
.footer-col li { margin: 11px 0; }
.footer-col a { color: var(--ink-2); font-size: 14.5px; font-weight: 500; transition: color .3s; }
.footer-col a:hover { color: var(--blue); }
.footer-contact .fc-label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 2px; }
.footer-contact li { margin: 16px 0; }
.footer-contact li > span:not(.fc-label) { color: var(--ink-2); font-size: 14.5px; font-weight: 500; }
.footer-bottom {
  border-top: 1px solid var(--line); padding: 26px 0;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-3);
}

/* ---------------- Service detail pages ---------------- */
.breadcrumb { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink-3); margin-bottom: 28px; }
.breadcrumb a { color: var(--ink-3); transition: color .3s var(--ease); }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb strong { color: var(--ink); font-weight: 600; }
.breadcrumb span { color: var(--line); }

.svc-hero { padding-bottom: 52px; }
.svc-hero .hero-cta { margin-top: 34px; }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--ink); }

.svc-media { border-radius: 28px; overflow: hidden; box-shadow: 0 30px 70px rgba(10,10,10,.10); border: 1px solid rgba(10,10,10,.05); }
.svc-media img { width: 100%; aspect-ratio: 21 / 9; object-fit: cover; }

.svc-grid { align-items: start; gap: 64px; }
.svc-copy .section-title-sm { margin-top: 4px; }
.svc-copy p { color: var(--ink-2); font-size: 16.5px; margin-top: 18px; max-width: 540px; }
.svc-included { background: var(--bg-subtle); border-radius: var(--radius); padding: 34px 38px 38px; }
.svc-included h3 { font-size: 19px; letter-spacing: -0.015em; }
.svc-included .ticks { margin-top: 14px; }

.svc-features-section { background: var(--bg-subtle); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 32px;
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: 0 20px 55px rgba(10,10,10,.07); border-color: transparent; }
.feature-num { font-size: 13px; font-weight: 700; letter-spacing: .18em; color: var(--blue); }
.feature-card h3 { font-size: 21px; margin: 14px 0 10px; letter-spacing: -0.02em; }
.feature-card p { color: var(--ink-2); font-size: 15px; }

.svc-steps { padding-top: 96px; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { border-top: 2px solid var(--ink); padding-top: 22px; }
.step span { font-family: var(--font-head); font-weight: 300; font-size: 36px; color: var(--blue); letter-spacing: -0.03em; line-height: 1; display: block; }
.step h3 { font-size: 20px; margin: 14px 0 8px; letter-spacing: -0.015em; }
.step p { color: var(--ink-2); font-size: 15px; }

/* ---------------- Responsive ---------------- */
@media (max-width: 1080px) {
  .hero-grid, .cta-grid, .service-grid, .about-grid, .coverage-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 150px; }
  .hero-visual { max-width: 620px; }
  .hero-card-a { left: 12px; }
  .hero-card-b { right: 12px; }
  .service-grid { gap: 48px; }
  .service-grid-flip .service-copy { order: 1; }
  .service-grid-flip .service-media { order: 2; }
  .about-facts { position: static; }
  .bento-card, .bento-nemt, .bento-wide { grid-column: span 6; }
  .bento-nemt { grid-template-columns: 1fr; }
  .bento-wide { grid-template-columns: 1fr; }
  .chapter { grid-template-columns: 90px 1fr; }
  .chapter-text { grid-column: 2; }
  .quotes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1080px) {
  .svc-grid { gap: 40px; }
  .features-grid, .steps-grid { grid-template-columns: 1fr; }
  .svc-media img { aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  .nav-desktop, .nav-phone { display: none; }
  .menu-toggle { display: block; }
  .nav-actions { margin-left: auto; }
  .service-block { padding: 64px 0; }
  .service-grid { gap: 36px; }
  .svc-grid { gap: 32px; }
  .page-hero { padding-bottom: 44px; }
  .svc-cta-row { gap: 18px; }
  .tb-au { display: none; }
  .topbar-inner { padding: 8px 16px; gap: 12px; }
  .tb-item { font-size: 11.5px; }
  .tb-item span { overflow: hidden; text-overflow: ellipsis; max-width: 46vw; }
  .section { padding: 76px 0; }
  .section-tight { padding-bottom: 76px; }
  .svc-steps { padding-top: 76px; }
  .page-hero { padding: 140px 0 52px; }
}

@media (max-width: 640px) {
  .section-head { margin-bottom: 48px; }
  .loc-grid { gap: 36px 20px; }
  .loc-item, .loc-item:nth-child(even) { margin-top: 0; }
  .pin, .loc-item:nth-child(even) .pin { width: 150px; height: 150px; border-width: 9px; }
  .pin::after { width: 24px; height: 52px; }
  .loc-name { margin-top: 72px; font-size: 14px; }
  .hero { padding: 130px 0 70px; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .hero-card-a { bottom: 24px; padding: 11px 15px; }
  .hero-card-b { top: 20px; padding: 11px 15px; }
  .scroll-hint { display: none; }
  .values { grid-template-columns: 1fr; }
  .value-card { padding: 32px 28px; }
  .nemt-list li { grid-template-columns: 1fr; gap: 6px; }
  .contact-form-wrap { padding: 30px 22px; }
  .field-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .chapter { grid-template-columns: 1fr; gap: 14px; padding: 52px 0; }
  .chapter-text { grid-column: auto; }
  .cta-actions .btn { width: 100%; }
  .map-frame iframe { height: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .marquee-track { animation: none; }
  html.js [data-reveal], html.js [data-hero-fade] { opacity: 1 !important; transform: none !important; }
  html.js .line-inner { transform: none !important; }
}
