/* ==========================================================================
   DG CONSULTANCY — DESIGN SYSTEM v9
   Chartered Accountants · Providence, East Bank Demerara, Guyana
   Brand: Navy #0B1F35 · Blue #078FC8 · Orange #F79432
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  --navy: #0B1F35;
  --navy-800: #122A45;
  --navy-900: #071526;
  --blue: #078FC8;
  --blue-600: #0677A6;
  --blue-100: #E3F3FA;
  --blue-50: #F0F8FC;
  --orange: #F79432;
  --orange-600: #DD7A17;
  --orange-100: #FEF0E1;
  --green: #15A66E;

  --bg: #F6F9FC;
  --surface: #FFFFFF;
  --surface-2: #F1F5F9;
  --ink: #0B1F35;
  --text: #3B4A5C;
  --muted: #6B7A8C;
  --line: #E3E9F0;
  --line-strong: #CBD5E1;

  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-xs: 0 1px 2px rgba(11, 31, 53, 0.05);
  --shadow-sm: 0 2px 8px rgba(11, 31, 53, 0.06);
  --shadow-md: 0 10px 30px -8px rgba(11, 31, 53, 0.14);
  --shadow-lg: 0 24px 60px -16px rgba(11, 31, 53, 0.22);
  --shadow-blue: 0 12px 32px -8px rgba(7, 143, 200, 0.45);

  --container: 1240px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --header-h: 76px;
  --section-y: clamp(4.5rem, 8vw, 7.5rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 0.2s var(--ease);
  --t-med: 0.4s var(--ease);
  --t-slow: 0.8s var(--ease);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--bg);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

body.nav-open { overflow: hidden; }

img, picture, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a svg, button svg, summary svg { width: 1em; height: 1em; flex-shrink: 0; }
button, input, textarea, select { font: inherit; color: inherit; background: none; border: none; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
strong, b { font-weight: 700; color: var(--ink); }
::selection { background: rgba(7, 143, 200, 0.22); color: var(--ink); }

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

.skip-link {
  position: absolute; top: -100px; left: 1rem; z-index: 2000;
  background: var(--navy); color: #fff; padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm); font-weight: 700;
}
.skip-link:focus { top: 1rem; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; padding: 0; margin: -1px;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 { color: var(--ink); font-weight: 700; line-height: 1.1; letter-spacing: -0.025em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.4rem); letter-spacing: -0.035em; line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.1rem); letter-spacing: -0.03em; line-height: 1.06; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: -0.015em; line-height: 1.25; }
h4 { font-size: 1.1rem; letter-spacing: -0.01em; }
p { text-wrap: pretty; }

.serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; letter-spacing: -0.01em; }
.serif.blue { color: var(--blue); }
.serif.orange { color: var(--orange); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 1.1rem;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.eyebrow.orange { color: var(--orange); }
.eyebrow.light { color: #8FD3F2; }

.lead { font-size: clamp(1.05rem, 1.3vw, 1.2rem); line-height: 1.65; color: var(--text); max-width: 62ch; }
.muted { color: var(--muted); }
.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .lead { margin-top: 1.1rem; }
.section-head.split {
  max-width: none; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
}
.section-head.split > div { max-width: 700px; }

/* --------------------------------------------------------------------------
   4. LAYOUT
   -------------------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.container.narrow { max-width: 860px; }
.section { padding-block: var(--section-y); position: relative; }
.section.tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section.white { background: var(--surface); }
.section.dark { background: var(--navy); color: #C7D2DF; }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4, .section.dark strong { color: #fff; }
.section.dark .lead { color: #B7C4D3; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.split-2.a-start { align-items: start; }

/* --------------------------------------------------------------------------
   5. BUTTONS & LINKS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  min-height: 52px; padding: 0 1.6rem; border-radius: 999px;
  font-size: 0.95rem; font-weight: 700; letter-spacing: -0.005em; white-space: nowrap;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform var(--t-fast); }
.btn:hover svg.arrow { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary { background: var(--navy); color: #fff; border-color: var(--navy); box-shadow: 0 6px 18px -6px rgba(11, 31, 53, 0.45); }
.btn-primary:hover { background: var(--blue); border-color: var(--blue); box-shadow: var(--shadow-blue); transform: translateY(-2px); }

.btn-accent { background: var(--orange); color: var(--navy); border-color: var(--orange); box-shadow: 0 8px 22px -8px rgba(247, 148, 50, 0.7); }
.btn-accent:hover { background: #FFA44D; border-color: #FFA44D; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); background: rgba(11, 31, 53, 0.04); transform: translateY(-2px); }
.section.dark .btn-outline, .btn-outline.light { color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.section.dark .btn-outline:hover, .btn-outline.light:hover { border-color: #fff; background: rgba(255, 255, 255, 0.08); }

.btn-white { background: #fff; color: var(--navy); border-color: #fff; }
.btn-white:hover { background: var(--blue-100); transform: translateY(-2px); }

.btn-sm { min-height: 42px; padding: 0 1.15rem; font-size: 0.875rem; }
.btn-lg { min-height: 58px; padding: 0 2rem; font-size: 1rem; }
.btn-block { width: 100%; }

.btn-whatsapp { background: #25D366; color: #fff; border-color: #25D366; }
.btn-whatsapp:hover { background: #1EBE5A; border-color: #1EBE5A; transform: translateY(-2px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; color: var(--blue);
  transition: gap var(--t-fast), color var(--t-fast);
}
.link-arrow svg { width: 16px; height: 16px; }
.link-arrow:hover { gap: 0.7rem; color: var(--blue-600); }

.cta-row { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }

/* --------------------------------------------------------------------------
   6. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 1000; height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(18px); backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med), background-color var(--t-med);
}
body.nav-open .site-header { background: #fff; border-bottom-color: var(--line); box-shadow: none; }
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -14px rgba(11, 31, 53, 0.18); background: rgba(255, 255, 255, 0.92); }

.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav-desktop { display: flex; align-items: center; gap: 0.25rem; }
.nav-item { position: relative; }
.nav-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  padding: 0.55rem 0.85rem; border-radius: 999px;
  font-size: 0.9rem; font-weight: 600; color: var(--ink);
  transition: background-color var(--t-fast), color var(--t-fast);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--t-fast); opacity: 0.7; }
.nav-link:hover, .nav-item.open > .nav-link, .nav-link.active { background: var(--blue-50); color: var(--blue-600); }
.nav-item.open > .nav-link svg { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px);
  width: 640px; padding: 0.75rem; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); display: grid; grid-template-columns: 1fr 1fr; gap: 0.25rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-fast), transform var(--t-fast), visibility 0s linear 0.2s;
}
.nav-item.open .dropdown { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); transition-delay: 0s; }
.dropdown-item {
  display: grid; grid-template-columns: 40px 1fr; gap: 0.85rem; align-items: start;
  padding: 0.85rem; border-radius: 14px; transition: background-color var(--t-fast);
}
.dropdown-item:hover { background: var(--blue-50); }
.dropdown-item .ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-600); }
.dropdown-item .ico svg { width: 20px; height: 20px; }
.dropdown-item strong { display: block; font-size: 0.95rem; color: var(--ink); margin-bottom: 0.1rem; }
.dropdown-item span { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }
.dropdown-footer {
  grid-column: 1 / -1; margin-top: 0.35rem; padding: 0.9rem 1rem; border-radius: 14px;
  background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: 0.88rem;
}
.dropdown-footer a { color: #8FD3F2; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; white-space: nowrap; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.header-phone { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.55rem 0.85rem; border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: var(--ink); transition: background-color var(--t-fast), color var(--t-fast); }
.header-phone svg { width: 16px; height: 16px; color: var(--blue); }
.header-phone:hover { background: var(--blue-50); color: var(--blue-600); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--ink); place-items: center; position: relative;
  transition: background-color var(--t-fast), border-color var(--t-fast);
}
.nav-toggle:hover { border-color: var(--blue); color: var(--blue); }
.nav-toggle .bars { width: 20px; height: 14px; position: relative; }
.nav-toggle .bars span { position: absolute; left: 0; width: 100%; height: 2px; background: currentColor; border-radius: 2px; transition: transform var(--t-med), opacity var(--t-fast), top var(--t-med); }
.nav-toggle .bars span:nth-child(1) { top: 0; }
.nav-toggle .bars span:nth-child(2) { top: 6px; }
.nav-toggle .bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1) { top: 6px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3) { top: 6px; transform: rotate(-45deg); }

/* Mobile drawer */
.nav-mobile {
  position: fixed; inset: 0; z-index: 990; background: var(--navy); color: #fff;
  padding: calc(var(--header-h) + 0.5rem) var(--gutter) 2rem;
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--t-med), transform var(--t-med), visibility 0s linear 0.4s;
}
.nav-mobile.open { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); transition-delay: 0s; }
.nav-mobile::before {
  content: ''; position: absolute; top: -20%; right: -30%; width: 70vw; height: 70vw; border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 143, 200, 0.35), transparent 65%); pointer-events: none;
}
.nav-mobile-links { display: flex; flex-direction: column; position: relative; }
.nav-mobile-links > a, .nav-mobile-links > details > summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.05rem 0; font-size: 1.35rem; font-weight: 700; color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); cursor: pointer; list-style: none;
}
.nav-mobile-links summary::-webkit-details-marker { display: none; }
.nav-mobile-links summary svg { width: 20px; height: 20px; transition: transform var(--t-med); opacity: 0.7; }
.nav-mobile-links details[open] summary svg { transform: rotate(180deg); }
.nav-mobile-links .sub { padding: 0.4rem 0 0.9rem; display: grid; gap: 0.15rem; }
.nav-mobile-links .sub a { display: flex; align-items: center; gap: 0.75rem; padding: 0.65rem 0.75rem; border-radius: 12px; color: #C7D2DF; font-weight: 600; font-size: 1rem; }
.nav-mobile-links .sub a:hover { background: rgba(255, 255, 255, 0.06); color: #fff; }
.nav-mobile-links .sub a .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.nav-mobile-links .num { font-size: 0.8rem; color: var(--orange); font-weight: 700; letter-spacing: 0.1em; }
.nav-mobile-cta { margin-top: auto; padding-top: 2rem; display: grid; gap: 0.75rem; position: relative; }
.nav-mobile-cta .row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.nav-mobile-meta { margin-top: 1.5rem; font-size: 0.85rem; color: #8B9AAD; line-height: 1.6; }
.nav-mobile-meta a { color: #C7D2DF; }

.scroll-progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg, var(--blue), var(--orange)); transition: width 0.08s linear; }

/* --------------------------------------------------------------------------
   7. HERO (HOME)
   -------------------------------------------------------------------------- */
.hero {
  --strip-h: 54px;
  position: relative; overflow: hidden; display: flex; align-items: center;
  min-height: calc(100svh - var(--header-h) - var(--strip-h));
  padding-block: clamp(1.5rem, 3vh, 3.5rem);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(7, 143, 200, 0.16), transparent 60%),
    radial-gradient(800px 500px at -10% 90%, rgba(247, 148, 50, 0.14), transparent 60%),
    var(--bg);
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.55;
  background-image: linear-gradient(rgba(11, 31, 53, 0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(11, 31, 53, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000 30%, transparent 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; width: 100%; }

.hero h1 { margin: 0 0 1.25rem; max-width: 12ch; font-size: clamp(2.5rem, 4.9vw, 4.1rem); }
.hero .lead { max-width: 52ch; margin-bottom: 1.75rem; }
.hero-trust { margin-top: 2rem; display: grid; grid-template-columns: repeat(2, max-content); gap: 0.55rem 2rem; font-size: 0.85rem; font-weight: 600; color: var(--muted); }
.hero-trust li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero-trust svg { width: 16px; height: 16px; color: var(--blue); }

.hero-visual { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--radius-xl); overflow: hidden;
  height: clamp(380px, calc(100svh - var(--header-h) - var(--strip-h) - 9rem), 620px);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(11, 31, 53, 0.06);
  transform: rotate(-1.2deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; transform: rotate(1.2deg) scale(1.06); }
.hero-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(11, 31, 53, 0.35)); pointer-events: none; }

.float-card {
  position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  box-shadow: var(--shadow-lg); padding: 1rem 1.15rem; z-index: 2; animation: floaty 6s ease-in-out infinite;
}
.float-card.a { left: -6%; bottom: 12%; width: 250px; }
.float-card.b { right: -5%; top: 8%; width: 230px; animation-delay: -3s; }
.float-card .fc-head { display: flex; align-items: center; justify-content: space-between; gap: 0.75rem; margin-bottom: 0.6rem; }
.float-card .fc-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.float-card .fc-badge { font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.5rem; border-radius: 999px; background: #E6F7EF; color: #0F8A5A; }
.float-card .fc-title { font-size: 0.95rem; font-weight: 700; color: var(--ink); line-height: 1.25; }
.bars { display: flex; align-items: flex-end; gap: 5px; height: 48px; margin-top: 0.75rem; }
.bars i { flex: 1; border-radius: 4px 4px 2px 2px; background: var(--blue-100); transform-origin: bottom; animation: grow 1.2s var(--ease) both; }
.bars i:nth-child(odd) { background: var(--blue); }
.bars i:last-child { background: var(--orange); }
.bars i:nth-child(1) { height: 35%; animation-delay: .1s } .bars i:nth-child(2) { height: 55%; animation-delay: .2s } .bars i:nth-child(3) { height: 45%; animation-delay: .3s }
.bars i:nth-child(4) { height: 70%; animation-delay: .4s } .bars i:nth-child(5) { height: 62%; animation-delay: .5s } .bars i:nth-child(6) { height: 85%; animation-delay: .6s } .bars i:nth-child(7) { height: 100%; animation-delay: .7s }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }
.checks { display: grid; gap: 0.45rem; margin-top: 0.6rem; }
.checks li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--text); }
.checks li i { width: 18px; height: 18px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; flex-shrink: 0; }
.checks li i svg { width: 11px; height: 11px; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --------------------------------------------------------------------------
   8. MARQUEE STRIP
   -------------------------------------------------------------------------- */
.strip { background: var(--navy); color: #fff; padding: 1rem 0; overflow: hidden; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.marquee { display: flex; gap: 3rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee span { display: inline-flex; align-items: center; gap: 3rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #C7D2DF; white-space: nowrap; }
.marquee span::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   9. CARDS (GENERIC)
   -------------------------------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 2.5vw, 2.25rem);
  transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med); position: relative; overflow: hidden;
}
.card.hover:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(7, 143, 200, 0.35); }
.card .ico {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 1.25rem;
  background: var(--blue-100); color: var(--blue-600); transition: background-color var(--t-fast), color var(--t-fast);
}
.card .ico svg { width: 24px; height: 24px; }
.card.hover:hover .ico { background: var(--navy); color: #fff; }
.card .ico.orange { background: var(--orange-100); color: var(--orange-600); }
.card h3 { margin-bottom: 0.6rem; }
.card p { font-size: 0.97rem; }
.card .num { position: absolute; top: 1.25rem; right: 1.5rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--line-strong); }
.card-list { margin-top: 1.1rem; display: grid; gap: 0.5rem; }
.card-list li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; font-weight: 600; color: var(--ink); line-height: 1.45; }
.card-list li::before { content: ''; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; border-radius: 50%; background: var(--blue-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230677A6' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 10px no-repeat; }
.card .link-arrow { margin-top: 1.4rem; }

/* Services bento */
.services-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.25rem; }
.services-grid .card { grid-column: span 2; display: flex; flex-direction: column; }
.services-grid .card.wide { grid-column: span 3; }
.services-grid .card.feature { background: var(--navy); border-color: var(--navy); color: #C7D2DF; }
.services-grid .card.feature h3 { color: #fff; }
.services-grid .card.feature .ico { background: rgba(255, 255, 255, 0.1); color: #fff; }
.services-grid .card.feature.hover:hover .ico { background: var(--orange); color: var(--navy); }
.services-grid .card.feature .card-list li { color: #E6EDF5; }
.services-grid .card.feature .card-list li::before { background-color: rgba(255, 255, 255, 0.12); }
.services-grid .card.feature .link-arrow { color: #8FD3F2; }
.services-grid .card.feature .num { color: rgba(255, 255, 255, 0.25); }
.services-grid .card .link-arrow { margin-top: auto; padding-top: 1.4rem; }

/* --------------------------------------------------------------------------
   10. "EVERYTHING CONNECTS" FLOW (DARK)
   -------------------------------------------------------------------------- */
.section.dark { position: relative; overflow: hidden; }
.section.dark .glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; pointer-events: none; filter: blur(60px); opacity: 0.35; }
.section.dark .glow.blue { background: radial-gradient(circle, rgba(7, 143, 200, 0.6), transparent 65%); top: -300px; right: -150px; }
.section.dark .glow.orange { background: radial-gradient(circle, rgba(247, 148, 50, 0.5), transparent 65%); bottom: -350px; left: -200px; }
.flow { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 0.75rem; margin-top: 1rem; }
.flow::before { content: ''; position: absolute; top: 28px; left: 4%; right: 4%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--orange)); opacity: 0.55; }
.flow-step { position: relative; padding-top: 3.25rem; text-align: center; }
.flow-step .node {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 30px; height: 30px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--blue); display: grid; place-items: center; font-size: 0.68rem; font-weight: 800; color: #8FD3F2;
  box-shadow: 0 0 0 6px rgba(7, 143, 200, 0.12);
}
.flow-step:last-child .node { border-color: var(--orange); color: var(--orange); box-shadow: 0 0 0 6px rgba(247, 148, 50, 0.16); }
.flow-step strong { display: block; color: #fff; font-size: 0.95rem; margin-bottom: 0.2rem; }
.flow-step span { font-size: 0.78rem; color: #8B9AAD; line-height: 1.4; display: block; }
.flow-step:last-child strong { color: var(--orange); }

.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.stat-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-tile { padding: 1.35rem; border-radius: 18px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); }
.stat-tile strong { display: block; font-size: 1.05rem; color: #fff; margin-bottom: 0.3rem; }
.stat-tile span { font-size: 0.85rem; color: #A9B6C6; line-height: 1.5; }
.stat-tile .ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(7, 143, 200, 0.2); color: #8FD3F2; margin-bottom: 0.9rem; }
.stat-tile .ico svg { width: 20px; height: 20px; }

/* --------------------------------------------------------------------------
   11. WHY DG / VALUE LIST
   -------------------------------------------------------------------------- */
.sticky-col { position: sticky; top: calc(var(--header-h) + 2rem); }
.value-list { display: grid; gap: 0.75rem; }
.value-item {
  display: grid; grid-template-columns: 56px 1fr; gap: 1.25rem; align-items: start; padding: 1.5rem;
  background: var(--surface); border: 1px solid var(--line); border-radius: 20px; transition: transform var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
}
.value-item:hover { transform: translateX(6px); border-color: rgba(7, 143, 200, 0.4); box-shadow: var(--shadow-md); }
.value-item .ico { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-600); }
.value-item .ico svg { width: 24px; height: 24px; }
.value-item:nth-child(even) .ico { background: var(--orange-100); color: var(--orange-600); }
.value-item h3 { font-size: 1.15rem; margin-bottom: 0.3rem; }
.value-item p { font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   12. STAGES / WHO WE HELP
   -------------------------------------------------------------------------- */
.stage-card { display: flex; flex-direction: column; }
.stage-card .stage-tag { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-600); margin-bottom: 0.75rem; }
.stage-card h3 { font-size: 1.25rem; text-wrap: pretty; min-height: 2.5em; display: flex; align-items: flex-end; }
.stage-card p { flex: 1; }
.stage-card .card-list li { white-space: nowrap; }

/* --------------------------------------------------------------------------
   13. APPROACH STEPS
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; position: relative; counter-reset: step; }
.step { position: relative; padding: 2rem 1.75rem 1.75rem; background: var(--surface); border: 1px solid var(--line); border-radius: 20px; transition: transform var(--t-med), box-shadow var(--t-med); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .step-num { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; background: var(--navy); color: #fff; font-weight: 800; font-size: 0.9rem; margin-bottom: 1.25rem; }
.step:last-child .step-num { background: var(--orange); color: var(--navy); }
.step h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.93rem; }
.step::after { content: ''; position: absolute; top: 52px; right: -1.25rem; width: 1.25rem; height: 2px; background: var(--line-strong); }
.step:last-child::after { display: none; }

/* --------------------------------------------------------------------------
   14. INSIGHTS
   -------------------------------------------------------------------------- */
.post-card { display: flex; flex-direction: column; padding: 0; overflow: hidden; }
.post-card .thumb { aspect-ratio: 16 / 10; overflow: hidden; position: relative; }
.post-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.post-card:hover .thumb img { transform: scale(1.05); }
.post-card .tag { position: absolute; top: 1rem; left: 1rem; padding: 0.35rem 0.7rem; border-radius: 999px; background: rgba(255, 255, 255, 0.92); color: var(--ink); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.post-card .body { padding: 1.5rem 1.6rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.post-card .meta { font-size: 0.78rem; color: var(--muted); font-weight: 600; margin-bottom: 0.65rem; display: flex; gap: 0.75rem; }
.post-card h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.post-card p { font-size: 0.93rem; }
.post-card .link-arrow { margin-top: auto; padding-top: 1.25rem; }
.post-card.featured { grid-row: span 2; }

/* --------------------------------------------------------------------------
   15. LOCATION / MAP
   -------------------------------------------------------------------------- */
.location-grid { align-items: stretch; }
.location-grid .section-head { margin-bottom: 1.75rem; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: var(--surface-2); position: relative; min-height: 420px; height: 100%; }
.map-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-chip { position: absolute; left: 1rem; bottom: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.6rem 0.9rem; border-radius: 999px; background: rgba(255,255,255,0.95); border: 1px solid var(--line); box-shadow: var(--shadow-md); font-size: 0.82rem; font-weight: 700; color: var(--ink); max-width: calc(100% - 2rem); }
.map-chip svg { color: var(--orange); }
.map-chip:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.address-card { display: grid; gap: 1rem; }
.addr-row { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; padding: 1.1rem 1.2rem; background: var(--surface); border: 1px solid var(--line); border-radius: 16px; transition: border-color var(--t-fast), transform var(--t-fast); }
a.addr-row:hover { border-color: var(--blue); transform: translateX(4px); }
.addr-row .ico { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--blue-100); color: var(--blue-600); }
.addr-row .ico svg { width: 20px; height: 20px; }
.addr-row small { display: block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.15rem; }
.addr-row strong { font-size: 1rem; }
.addr-row span { display: block; font-size: 0.88rem; color: var(--muted); }

/* --------------------------------------------------------------------------
   16. FAQ ACCORDION
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 0.75rem; }
.faq details { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; transition: border-color var(--t-fast), box-shadow var(--t-fast); }
.faq details[open] { border-color: rgba(7, 143, 200, 0.4); box-shadow: var(--shadow-sm); }
.faq summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.25rem; padding: 1.25rem 1.5rem; font-weight: 700; color: var(--ink); font-size: 1.02rem; line-height: 1.35; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--blue); transition: transform var(--t-med), background-color var(--t-fast), color var(--t-fast); }
.faq summary .plus svg { width: 14px; height: 14px; }
.faq details[open] summary .plus { transform: rotate(45deg); background: var(--navy); border-color: var(--navy); color: #fff; }
.faq .answer { padding: 0 1.5rem 1.4rem; font-size: 0.97rem; color: var(--text); max-width: 72ch; }
.faq .answer p + p { margin-top: 0.75rem; }

/* --------------------------------------------------------------------------
   17. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: clamp(2.5rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--navy) 0%, #0F2E50 55%, #0B3D5C 100%); color: #C7D2DF; text-align: center;
}
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 80% 20%, rgba(7, 143, 200, 0.45), transparent 60%), radial-gradient(500px 300px at 15% 90%, rgba(247, 148, 50, 0.35), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; max-width: 16ch; margin: 0 auto 1rem; }
.cta-band .lead { color: #B7C4D3; margin: 0 auto 2rem; }
.cta-band .cta-row { justify-content: center; }
.cta-band .fine { margin-top: 1.5rem; font-size: 0.85rem; color: #8B9AAD; }

/* --------------------------------------------------------------------------
   18. FORMS
   -------------------------------------------------------------------------- */
.form-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.5rem, 3vw, 2.5rem); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field { display: grid; gap: 0.4rem; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.field label .req { color: var(--orange-600); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.9rem 1rem; font-size: 0.97rem; border-radius: 12px; background: var(--bg);
  border: 1.5px solid var(--line); color: var(--ink); transition: border-color var(--t-fast), box-shadow var(--t-fast), background-color var(--t-fast);
  -webkit-appearance: none; appearance: none;
}
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A8C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 16px; padding-right: 2.75rem; }
.field input::placeholder, .field textarea::placeholder { color: #9AA7B6; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(7, 143, 200, 0.15); }
.field input:user-invalid, .field textarea:user-invalid { border-color: #E0532F; }
.field textarea { min-height: 140px; resize: vertical; }
.field .hint { font-size: 0.78rem; color: var(--muted); }
.form-foot { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-top: 1.25rem; }
.form-foot .fine { font-size: 0.8rem; color: var(--muted); max-width: 40ch; }
.form-msg { display: none; margin-top: 1rem; padding: 1rem 1.15rem; border-radius: 12px; font-size: 0.93rem; font-weight: 600; }
.form-msg.show { display: block; }
.form-msg.ok { background: #E6F7EF; color: #0F6E47; border: 1px solid #B8E8D0; }
.form-msg.err { background: #FDECE8; color: #9A2E16; border: 1px solid #F5C6BB; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.btn.loading { pointer-events: none; opacity: 0.75; }
.btn.loading::after { content: ''; width: 16px; height: 16px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.35); border-top-color: #fff; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.contact-aside { display: grid; gap: 1rem; align-content: start; }
.next-steps { display: grid; gap: 0.6rem; margin-top: 1.25rem; }
.next-steps li { display: grid; grid-template-columns: 28px 1fr; gap: 0.75rem; font-size: 0.93rem; align-items: start; }
.next-steps li b { width: 28px; height: 28px; border-radius: 50%; background: var(--blue-100); color: var(--blue-600); display: grid; place-items: center; font-size: 0.78rem; font-weight: 800; }

/* --------------------------------------------------------------------------
   19. FOOTER
   -------------------------------------------------------------------------- */
.site-footer { background: var(--navy-900); color: #A9B6C6; padding-top: clamp(3.5rem, 6vw, 5.5rem); padding-bottom: 2rem; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--blue), var(--orange)); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p { font-size: 0.92rem; max-width: 34ch; line-height: 1.6; }
.footer-col h4 { color: #fff; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul { display: grid; gap: 0.6rem; }
.footer-col a { font-size: 0.93rem; color: #A9B6C6; transition: color var(--t-fast), padding-left var(--t-fast); }
.footer-col a:hover { color: #fff; padding-left: 4px; }
.footer-col address { font-style: normal; font-size: 0.93rem; line-height: 1.7; }
.footer-col address a { display: inline; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.08); color: #C7D2DF; transition: background-color var(--t-fast), color var(--t-fast), transform var(--t-fast); }
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding-top: 1.75rem; font-size: 0.82rem; color: #6F7F92; }
.footer-bottom .tag { color: #8FD3F2; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.72rem; }

/* --------------------------------------------------------------------------
   20. FLOATING UTILITIES (WhatsApp, back-to-top, mobile action bar)
   -------------------------------------------------------------------------- */
.wa-float {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 900; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 12px 28px -8px rgba(37, 211, 102, 0.7);
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.wa-float svg { width: 28px; height: 28px; }
.wa-float:hover { transform: translateY(-3px) scale(1.04); }
.wa-float .tip { position: absolute; right: calc(100% + 12px); top: 50%; transform: translateY(-50%); white-space: nowrap; background: var(--navy); color: #fff; font-size: 0.78rem; font-weight: 700; padding: 0.45rem 0.75rem; border-radius: 10px; opacity: 0; pointer-events: none; transition: opacity var(--t-fast); }
.wa-float:hover .tip { opacity: 1; }

.to-top {
  position: fixed; right: 1.25rem; bottom: 5.5rem; z-index: 900; width: 44px; height: 44px; border-radius: 50%;
  background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-md); display: grid; place-items: center;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity var(--t-fast), transform var(--t-fast), visibility 0s linear 0.2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); transition-delay: 0s; }
.to-top svg { width: 18px; height: 18px; }

.action-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: rgba(255, 255, 255, 0.94); -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-top: 1px solid var(--line); padding: 0.6rem var(--gutter) calc(0.6rem + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1.25fr 1.25fr; gap: 0.5rem;
  transform: translateY(100%); transition: transform var(--t-med);
}
.action-bar.show { transform: translateY(0); }
.action-bar .btn { min-height: 46px; font-size: 0.85rem; padding: 0 0.75rem; }
.action-bar .btn svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------------------
   21. INNER PAGES
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative; overflow: hidden; padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem);
  background: radial-gradient(900px 400px at 90% -20%, rgba(7, 143, 200, 0.16), transparent 60%), radial-gradient(600px 300px at 0% 100%, rgba(247, 148, 50, 0.12), transparent 60%), var(--bg);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { margin: 0.75rem 0 1rem; }
.page-hero .lead { max-width: 58ch; }
.page-hero-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.page-hero .visual { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 3; box-shadow: var(--shadow-lg); }
.page-hero .visual img { width: 100%; height: 100%; object-fit: cover; }

.crumbs { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; color: var(--muted); flex-wrap: wrap; }
.crumbs a:hover { color: var(--blue); }
.crumbs svg { width: 14px; height: 14px; opacity: 0.6; }
.crumbs [aria-current] { color: var(--ink); }

.service-nav { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.service-nav a { padding: 0.5rem 0.95rem; border-radius: 999px; border: 1px solid var(--line); background: #fff; font-size: 0.85rem; font-weight: 700; color: var(--text); transition: all var(--t-fast); }
.service-nav a:hover { border-color: var(--blue); color: var(--blue-600); }
.service-nav a.active { background: var(--navy); border-color: var(--navy); color: #fff; }

.included { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.included li { display: flex; gap: 0.85rem; align-items: flex-start; padding: 1rem 1.1rem; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; font-weight: 600; color: var(--ink); font-size: 0.95rem; line-height: 1.4; }
.included li svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--blue); margin-top: 1px; }

.prose { max-width: 70ch; font-size: 1.05rem; line-height: 1.75; }
.prose p + p, .prose ul + p, .prose p + ul, .prose h2 + p, .prose h3 + p { margin-top: 1.1rem; }
.prose h2 { font-size: 1.7rem; margin-top: 2.5rem; margin-bottom: 0.6rem; }
.prose h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: 0.4rem; }
.prose ul { margin-top: 1rem; display: grid; gap: 0.5rem; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ''; position: absolute; left: 0; top: 0.65rem; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }
.prose blockquote { margin: 1.75rem 0; padding: 1.25rem 1.5rem; border-left: 4px solid var(--blue); background: var(--blue-50); border-radius: 0 16px 16px 0; font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; line-height: 1.4; color: var(--ink); }
.prose .callout { margin: 1.75rem 0; padding: 1.25rem 1.5rem; border-radius: 16px; background: var(--orange-100); border: 1px solid #F9D9B8; font-size: 0.97rem; }
.prose .callout strong { display: block; margin-bottom: 0.25rem; }

.article { scroll-margin-top: calc(var(--header-h) + 2rem); padding: clamp(2rem, 4vw, 3rem) 0; border-top: 1px solid var(--line); }
.article:first-of-type { border-top: 0; padding-top: 0; }
.article-head { margin-bottom: 1.75rem; }
.article-head .meta { display: flex; gap: 0.75rem; flex-wrap: wrap; font-size: 0.8rem; font-weight: 700; color: var(--muted); margin-bottom: 0.75rem; }
.article-head .meta .cat { color: var(--blue); letter-spacing: 0.1em; text-transform: uppercase; }
.article-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.article-hero { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 21 / 9; margin-bottom: 2rem; box-shadow: var(--shadow-md); }
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-share { margin-top: 2rem; padding-top: 1.25rem; border-top: 1px dashed var(--line-strong); display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; font-size: 0.88rem; color: var(--muted); }

.toc { position: sticky; top: calc(var(--header-h) + 1.5rem); display: grid; gap: 0.35rem; }
.toc h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.toc > a { display: block; padding: 0.55rem 0.85rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; color: var(--text); border-left: 2px solid transparent; transition: all var(--t-fast); }
.toc > a:hover, .toc > a.active { background: var(--blue-50); color: var(--blue-600); border-left-color: var(--blue); }

.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.stat { padding: 1.5rem; border-radius: 18px; background: var(--surface); border: 1px solid var(--line); }
.stat strong { display: block; font-size: 1.6rem; letter-spacing: -0.03em; color: var(--ink); line-height: 1.1; margin-bottom: 0.3rem; }
.stat span { font-size: 0.88rem; color: var(--muted); }

.photo-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.photo-frame .caption { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; background: rgba(255, 255, 255, 0.92); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border-radius: 14px; padding: 0.85rem 1rem; font-size: 0.85rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 0.6rem; }
.photo-frame .caption svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }

/* --------------------------------------------------------------------------
   22. MOTION
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-delay="1"] { transition-delay: 0.08s; } [data-reveal-delay="2"] { transition-delay: 0.16s; } [data-reveal-delay="3"] { transition-delay: 0.24s; } [data-reveal-delay="4"] { transition-delay: 0.32s; } [data-reveal-delay="5"] { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .marquee { animation: none; }
}

/* --------------------------------------------------------------------------
   23. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid .card, .services-grid .card.wide { grid-column: span 1; }
  .flow { grid-template-columns: repeat(4, 1fr); row-gap: 1.5rem; }
  .flow::before { display: none; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step::after { display: none; }
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 68px; }
  .nav-desktop, .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .nav-toggle { display: grid; }
  .brand img { height: 38px; }
  .hero-grid, .split-2, .connect-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding-block: 1.75rem 2.25rem; display: block; }
  .hero h1 { max-width: none; }
  .hero-visual { margin-top: 0.5rem; }
  .hero-photo { transform: none; height: auto; aspect-ratio: 16 / 10; }
  .hero-photo img { transform: none; }
  .float-card { animation: none; }
  .float-card.a { left: 0.75rem; bottom: 0.75rem; width: 210px; }
  .float-card.b { display: none; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: 0.5rem 1rem; }
  .stage-card h3 { min-height: 0; display: block; }
  .stage-card .card-list li { white-space: normal; }
  .sticky-col { position: static; }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr; }
  .action-bar { display: grid; }
  body { padding-bottom: 72px; }
  .wa-float { display: none; }
  .to-top { bottom: 5.5rem; right: 1rem; width: 40px; height: 40px; }
  .toc { position: static; display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
  .toc h4 { width: 100%; }
  .page-hero .visual { aspect-ratio: 16 / 9; }
}

@media (max-width: 640px) {
  h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.75rem, 7vw, 2.4rem); }
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .services-grid, .steps, .included, .form-grid, .stat-tiles, .footer-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow-step { display: grid; grid-template-columns: 30px 1fr; gap: 1rem; text-align: left; padding: 0.85rem 0; align-items: center; }
  .flow-step .node { position: static; transform: none; }
  .flow-step:not(:last-child)::after { content: ''; grid-column: 1; width: 2px; height: 1.1rem; background: rgba(7, 143, 200, 0.4); margin: 0.25rem auto 0; }
  .float-card { padding: 0.8rem 0.9rem; }
  .float-card.a { width: 190px; }
  .bars { height: 34px; }
  .cta-row .btn { width: 100%; }
  .hero-trust { display: none; }
  .form-foot .btn { width: 100%; }
  .section-head.split { flex-direction: column; align-items: flex-start; }
  .cta-band { border-radius: var(--radius-lg); }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .dropdown { width: auto; }
  .action-bar .btn span.t { display: inline; }
}
