/* ══════════════════════════════════════════
   FONTS (self-hosted Inter variable font)
══════════════════════════════════════════ */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ══════════════════════════════════════════
   TOKENS
══════════════════════════════════════════ */
:root {
  --color-background: #f0ece3;
  --color-surface: #f7f3ec;
  --color-surface-raised: #fdfaf6;
  --color-foreground: #0b0f14;
  --color-muted: #525a64;
  --color-line: rgba(11,15,20,0.09);
  --color-line-strong: rgba(11,15,20,0.18);

  --color-accent: #0e1c2e;
  --color-accent-strong: #06101a;
  --color-accent-subtle: rgba(14,28,46,0.08);
  --color-tint: rgba(14,28,46,0.06);

  --color-dark-bg: #090f1c;
  --color-dark-surface: #0e1625;
  --color-blue-accent: #78b4e0;

  --shadow-card: 0 2px 12px rgba(11,15,20,0.07), 0 1px 3px rgba(11,15,20,0.04);
  --shadow-card-hover: 0 8px 32px rgba(11,15,20,0.13), 0 2px 8px rgba(11,15,20,0.07);
  --shadow-accent: 0 8px 28px rgba(14,28,46,0.45);

  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --t: 0.24s;
  --radius-card: 32px;
  --radius-card-sm: 26px;
  --max-width: 1180px;
}

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

html {
  background: var(--color-background);
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background:
    radial-gradient(ellipse at 0% 0%, rgba(14,28,46,0.04), transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(14,28,46,0.03), transparent 44%),
    var(--color-background);
  color: var(--color-foreground);
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img, svg { display: block; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  color: var(--color-foreground);
}

p { color: var(--color-muted); }

::selection { background: rgba(14,28,46,0.12); }

:focus-visible {
  outline: 2px solid rgba(14,28,46,0.45);
  outline-offset: 3px;
}

/* ══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow { max-width: 896px; }

.section-divider { border-top: 1px solid var(--color-line); }
.section-py { padding-top: 5rem; padding-bottom: 5rem; }
.section-py-sm { padding-top: 2.5rem; padding-bottom: 2.5rem; }

/* Two-column grids */
.grid-2 {
  display: grid;
  gap: 3rem;
}
.grid-2-wide-left  { display: grid; gap: 3rem; }
.grid-2-wide-right { display: grid; gap: 3rem; }
.grid-2-contact    { display: grid; gap: 2.5rem; }

@media (min-width: 1024px) {
  .grid-2            { grid-template-columns: 1fr 1fr; gap: 3.5rem; }
  .grid-2-wide-left  { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; }
  .grid-2-wide-right { grid-template-columns: 0.95fr 1.05fr; gap: 4rem; }
  .grid-2-contact    { grid-template-columns: 0.86fr 1.14fr; gap: 3.5rem; align-items: start; }
}

/* ══════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════ */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow-light {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}

.section-heading-title {
  margin-top: 1rem;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--color-foreground);
}

.section-heading-intro {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 540px;
}

.text-balance { text-wrap: balance; }

/* ══════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 160ms ease, border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.28);
}
.btn-primary:hover {
  background: var(--color-accent-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent);
}

.btn-secondary {
  border: 1px solid var(--color-line-strong);
  background: rgba(255,255,255,0.42);
  color: var(--color-foreground);
  font-weight: 500;
}
.btn-secondary:hover {
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.btn-ghost {
  border: 1px solid var(--color-line-strong);
  background: transparent;
  color: var(--color-foreground);
  font-weight: 500;
}
.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.btn-ghost-dark {
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.78);
  font-weight: 500;
}
.btn-ghost-dark:hover {
  border-color: rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.07);
  color: #fff;
  transform: translateY(-2px);
}

.btn-arrow {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 2.5rem; }
.faq-item {
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  border-radius: var(--radius-card);
  padding: 1.5rem 2rem;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-question { font-size: 1rem; font-weight: 600; color: var(--color-foreground); line-height: 1.4; }
.faq-icon { flex-shrink: 0; font-size: 1.2rem; font-weight: 300; color: var(--color-muted); line-height: 1; transition: transform 200ms ease; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { margin-top: 0.875rem; font-size: 0.9rem; line-height: 1.75; color: var(--color-muted); }

/* ══════════════════════════════════════════
   LANGUAGE SWITCHER
══════════════════════════════════════════ */
.lang-switcher {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.18);
  border: 1px solid var(--color-line-strong);
  border-radius: 999px;
  padding: 0.22rem 0.45rem;
  flex-shrink: 0;
}
.lang-option {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.38rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
  white-space: nowrap;
  line-height: 1;
}
.lang-option:hover { color: var(--color-foreground); }
.lang-option.lang-active {
  color: var(--color-foreground);
  background: var(--color-tint);
}
.lang-divider {
  width: 1px;
  height: 0.7rem;
  background: var(--color-line-strong);
  margin: 0 0.12rem;
  flex-shrink: 0;
}
#site-header.is-dark .lang-switcher {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.13);
}
#site-header.is-dark .lang-option { color: rgba(255,255,255,0.4); }
#site-header.is-dark .lang-option:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
#site-header.is-dark .lang-option.lang-active {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.1);
}
#site-header.is-dark .lang-divider { background: rgba(255,255,255,0.15); }

/* ══════════════════════════════════════════
   CARDS
══════════════════════════════════════════ */
.surface-card {
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: box-shadow var(--t) ease;
}

.surface-card:hover { box-shadow: var(--shadow-card-hover); }

@media (min-width: 768px) {
  .surface-card { padding: 2.5rem; }
}

.surface-card-sm {
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card-sm);
  padding: 1.5rem;
  transition: box-shadow var(--t) ease;
}

.inline-card {
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.42);
  border-radius: 20px;
  padding: 1rem 1.25rem;
}

/* ══════════════════════════════════════════
   DARK SECTIONS
══════════════════════════════════════════ */
.section-dark {
  background: var(--color-dark-bg);
}

.section-dark p { color: rgba(255,255,255,0.56); }
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: #fff; }

/* ══════════════════════════════════════════
   HEADER
══════════════════════════════════════════ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--color-line);
  background: rgba(242,237,228,0.97);
  transition: background 300ms ease, border-color 300ms ease, box-shadow 300ms ease;
}

#site-header.is-dark {
  border-bottom-color: rgba(255,255,255,0.07);
  background: rgba(9,15,28,0.94);
  box-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 2.5rem;
  width: auto;
}

#site-header.is-dark .nav-logo img {
  filter: brightness(0) invert(1);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

@media (min-width: 1024px) {
  .nav-desktop { display: flex; }
}

.nav-link {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-muted);
  transition: color 160ms ease, background 160ms ease;
}

.nav-link:hover {
  color: var(--color-foreground);
}

.nav-link.active {
  background: var(--color-tint);
  color: var(--color-foreground);
}

#site-header.is-dark .nav-link {
  color: rgba(255,255,255,0.62);
}
#site-header.is-dark .nav-link:hover {
  background: rgba(255,255,255,0.07);
  color: #fff;
}
#site-header.is-dark .nav-link.active {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: block; } }

/* Hamburger */
.hamburger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.5);
  color: var(--color-foreground);
  cursor: pointer;
  flex-shrink: 0;
}

@media (min-width: 1024px) { .hamburger { display: none; } }

#site-header.is-dark .hamburger {
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.hamburger-bars {
  position: relative;
  display: block;
  width: 1.25rem;
  height: 1rem;
}

.hamburger-bar {
  position: absolute;
  left: 0;
  display: block;
  width: 1.25rem;
  height: 1.5px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 200ms ease, opacity 200ms ease;
}

.hamburger-bar:nth-child(1) { top: 0; }
.hamburger-bar:nth-child(2) { top: 7px; }
.hamburger-bar:nth-child(3) { top: 14px; }

.hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-nav {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  border-top: 1px solid var(--color-line);
  background: rgba(248,244,237,0.97);
  transition: max-height 280ms ease, opacity 200ms ease;
}

.mobile-nav.is-open {
  max-height: 480px;
  opacity: 1;
}

#site-header.is-dark .mobile-nav {
  border-top-color: rgba(255,255,255,0.07);
  background: rgba(9,15,28,0.97);
}

@media (min-width: 1024px) { .mobile-nav { display: none; } }

.mobile-nav-inner {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: background 160ms ease, color 160ms ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--color-tint);
  color: var(--color-foreground);
}

#site-header.is-dark .mobile-nav-link {
  color: rgba(255,255,255,0.62);
}
#site-header.is-dark .mobile-nav-link:hover,
#site-header.is-dark .mobile-nav-link.active {
  background: rgba(255,255,255,0.06);
  color: #fff;
}

.mobile-nav-btn { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════
   PAGE HERO (light sections)
══════════════════════════════════════════ */
.page-hero {
  padding-top: 5rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--color-line);
}

.page-hero-eyebrow { margin-bottom: 1.25rem; }

.page-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--color-foreground);
  max-width: 780px;
}

.page-hero-intro {
  margin-top: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 600px;
}

.page-hero-detail {
  margin-top: 1rem;
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(11,15,20,0.35);
  max-width: 560px;
}

/* ══════════════════════════════════════════
   HERO SECTION (dark full-screen)
══════════════════════════════════════════ */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--color-dark-bg);
  color: #fff;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(100,160,220,0.13) 0%, transparent 70%);
  top: -300px; left: 50%;
  transform: translateX(-50%);
}

.hero-glow-2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(100,160,220,0.08) 0%, transparent 70%);
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem var(--container-pad) 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(100,160,220,0.1);
  border: 1px solid rgba(100,160,220,0.22);
  color: rgba(255,255,255,0.85);
  padding: 0.45rem 1rem 0.45rem 0.65rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 2rem;
  width: fit-content;
  animation: heroIn 0.7s var(--ease-out) 0.05s both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--color-blue-accent);
  border-radius: 50%;
  flex-shrink: 0;
  animation: badgePulse 2.4s ease infinite;
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.45; }
}

.hero-rule {
  width: 2.75rem;
  height: 3px;
  background: var(--color-blue-accent);
  border-radius: 2px;
  margin-bottom: 1.75rem;
  animation: heroIn 0.6s var(--ease-out) 0.14s both;
}

.hero-section h1 {
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.05em;
  color: #fff;
  text-align: center;
  margin-bottom: 1.75rem;
  animation: heroIn 0.8s var(--ease-out) 0.22s both;
}

.hero-h1-accent { color: rgba(255,255,255,0.38); }

.hero-subtitle {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 520px;
  text-align: center;
  margin-bottom: 2.5rem;
  animation: heroIn 0.7s var(--ease-out) 0.34s both;
}

.hero-ctas {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: heroIn 0.7s var(--ease-out) 0.46s both;
}

/* Stats bar — pinned to the bottom of the hero section */
.hero-stats-bar {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 2rem;
  animation: heroIn 0.8s var(--ease-out) 0.62s both;
}

.hero-stats-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 2.5rem;
}

.hero-stats-value {
  font-size: 1.65rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-stats-label {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  white-space: nowrap;
}

.hero-stats-div {
  width: 1px;
  height: 2rem;
  background: rgba(255,255,255,0.09);
  flex-shrink: 0;
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}


@keyframes scrollBall {
  0%, 100% { transform: translateY(0); opacity: 1; }
  75%       { transform: translateY(10px); opacity: 0; }
}

/* ══════════════════════════════════════════
   TRUST STRIP
══════════════════════════════════════════ */
.trust-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 768px)  { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1280px) { .trust-grid { grid-template-columns: repeat(4,1fr); } }

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 1.25rem;
}

.trust-dot {
  margin-top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.trust-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-foreground);
}

.trust-desc {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--color-muted);
}

/* ══════════════════════════════════════════
   SERVICE CARDS (with CSS subgrid)
══════════════════════════════════════════ */
.services-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-rows: auto auto 1fr auto;
}

.services-grid-2 {
  display: grid;
  gap: 1.25rem;
  grid-template-rows: auto auto 1fr auto;
}

@media (min-width: 768px) {
  .services-grid   { grid-template-columns: 1fr 1fr; }
  .services-grid-2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1280px) {
  .services-grid { grid-template-columns: 1fr 1fr 1fr; }
}

.service-card {
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card);
  padding: 1.75rem 2rem;
  transition: box-shadow var(--t) ease, opacity 600ms ease, transform 720ms cubic-bezier(0.2,0.7,0.2,1);
}

.service-card:hover { box-shadow: var(--shadow-card-hover); }

.service-kicker {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.service-title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--color-foreground);
}

.service-desc {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.service-bullets {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-bullet {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.service-bullet-dot {
  margin-top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.service-bullet-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-foreground);
}

/* ══════════════════════════════════════════
   VALUE / PRINCIPLE CARDS
══════════════════════════════════════════ */
.value-cards { display: flex; flex-direction: column; gap: 1rem; }
.value-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card-sm);
  padding: 1.25rem 1.5rem;
}
.value-card-dot {
  margin-top: 6px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.value-card-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-foreground);
}
.value-card-desc {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  line-height: 1.75;
}

/* Small 2-col grid for about page values */
.values-grid-2 {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) {
  .values-grid-2 { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   CONTACT CTA (dark section)
══════════════════════════════════════════ */
.contact-cta { padding: 6rem 0; }
.contact-cta-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .contact-cta-grid { grid-template-columns: 1.1fr 0.9fr; align-items: end; }
}
.contact-cta-title {
  max-width: 40rem;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.04em;
  color: #fff;
}
.contact-cta-desc {
  max-width: 32rem;
  font-size: 1rem;
  line-height: 2;
  color: rgba(255,255,255,0.56);
}
.contact-cta-btns {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ══════════════════════════════════════════
   CONTACT FORM
══════════════════════════════════════════ */
.form-grid { display: grid; gap: 1.25rem; }
.form-row {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-label {
  display: grid;
  gap: 0.375rem;
}

.form-label-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-foreground);
}

.form-required { color: var(--color-accent); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.54);
  border-radius: 16px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--color-foreground);
  transition: border-color 160ms ease, outline 160ms ease;
  -webkit-appearance: none;
}

.form-textarea { resize: none; line-height: 1.75; }

.form-input::placeholder,
.form-textarea::placeholder { color: var(--color-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(14,28,46,0.08);
}

.form-error {
  font-size: 0.75rem;
  color: #7a3f33;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.36);
  border-radius: 18px;
  padding: 1rem;
}

.form-consent input[type="checkbox"] {
  margin-top: 4px;
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  accent-color: var(--color-accent);
}

.form-consent-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-muted);
}

.form-consent-text a {
  color: var(--color-foreground);
  text-decoration: underline;
  text-decoration-color: var(--color-line-strong);
  text-underline-offset: 3px;
}

.form-submit-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-submit-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: none;
  border-radius: 999px;
  background: var(--color-foreground);
  color: var(--color-surface-raised);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: transform 200ms ease, background 160ms ease;
}

.btn-submit:hover {
  background: var(--color-accent-strong);
  transform: translateY(-2px);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--color-muted);
}

.form-status {
  border-radius: 18px;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success {
  border: 1px solid rgba(14,28,46,0.18);
  background: rgba(14,28,46,0.06);
  color: var(--color-foreground);
}
.form-status.is-error {
  border: 1px solid rgba(122,63,51,0.2);
  background: rgba(122,63,51,0.06);
  color: #6e4138;
}
.form-status.is-submitting {
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.36);
  color: var(--color-muted);
}

/* Honeypot */
.honeypot { display: none; }

/* ══════════════════════════════════════════
   CONTACT DETAILS
══════════════════════════════════════════ */
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail-item {
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card-sm);
  padding: 1.5rem;
}
.contact-detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.contact-detail-value {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--color-foreground);
  font-weight: 500;
}
.contact-detail-value a {
  color: var(--color-foreground);
  transition: color 160ms ease;
}
.contact-detail-value a:hover { color: var(--color-accent-strong); }

/* ══════════════════════════════════════════
   TAGS (industry pills)
══════════════════════════════════════════ */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.tag {
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.42);
  border-radius: 999px;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-foreground);
}

/* ══════════════════════════════════════════
   DIFFERENTIATOR ITEMS
══════════════════════════════════════════ */
.diff-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.25rem; }
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--color-line);
  background: rgba(255,255,255,0.28);
  border-radius: 22px;
  padding: 1rem 1.25rem;
}
.diff-dot {
  margin-top: 8px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}
.diff-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-foreground);
}

/* Career numbered list */
.career-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.career-item { display: flex; align-items: flex-start; gap: 1rem; }
.career-num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.5rem; height: 1.5rem;
  border: 1px solid var(--color-line);
  background: var(--color-accent-subtle);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-top: 2px;
}
.career-text {
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-foreground);
}

/* Brand meaning inline cards */
.brand-cards { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.brand-card { border: 1px solid var(--color-line); background: rgba(255,255,255,0.42); border-radius: 20px; padding: 1rem 1.25rem; }
.brand-card-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-accent);
}
.brand-card-text { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.75; color: var(--color-foreground); }

/* Working style numbered items */
.working-items { display: flex; flex-direction: column; gap: 1rem; }
.working-item {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
  border: 1px solid var(--color-line-strong);
  background: var(--color-surface-raised);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-card-sm);
  padding: 1.25rem 1.5rem;
}
.working-item-title {
  font-size: 1rem; font-weight: 500; color: var(--color-foreground);
}
.working-item-desc {
  margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.75;
}
.working-item-num {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--color-accent); flex-shrink: 0;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#site-footer {
  background: var(--color-dark-bg);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-main {
  display: grid;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

@media (min-width: 768px) {
  .footer-main { grid-template-columns: 1.1fr 0.9fr; }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo img {
  height: 2rem;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-logo-name {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
}

.footer-tagline {
  margin-top: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}

.footer-summary {
  margin-top: 1.25rem;
  max-width: 22rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.44);
}

.footer-cols {
  display: grid;
  gap: 2rem;
}
@media (min-width: 640px) {
  .footer-cols { grid-template-columns: 1fr 1fr; }
}

.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  margin-bottom: 1rem;
}

.footer-links { display: flex; flex-direction: column; gap: 0.75rem; }

.footer-link {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  transition: color 160ms ease;
}
.footer-link:hover { color: #fff; }

.footer-link-muted {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.32);
  transition: color 160ms ease;
}
.footer-link-muted:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.footer-copy {
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.22);
}

/* ══════════════════════════════════════════
   LEGAL PAGES
══════════════════════════════════════════ */
.legal-notice {
  border: 1px solid var(--color-line-strong);
  background: rgba(255,255,255,0.46);
  border-radius: 24px;
  padding: 1rem 1.25rem;
}
.legal-notice p { font-size: 0.875rem; line-height: 1.75; }

.legal-section { padding-top: 2rem; border-top: 1px solid var(--color-line); margin-top: 2rem; }
.legal-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.legal-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-foreground);
}

.legal-section p {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 2;
}

.legal-dl {
  margin-top: 1.25rem;
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .legal-dl { grid-template-columns: 1fr 1fr; } }

.legal-dt {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
}

.legal-dd {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: var(--color-foreground);
}

/* ══════════════════════════════════════════
   BLOCKQUOTE
══════════════════════════════════════════ */
.blockquote {
  border-left: 2px solid var(--color-accent);
  padding-left: 1.25rem;
  font-size: 1rem;
  line-height: 2;
  color: var(--color-foreground);
  font-style: italic;
}

/* ══════════════════════════════════════════
   LINK ACCENT
══════════════════════════════════════════ */
.link-accent {
  color: var(--color-foreground);
  text-decoration: underline;
  text-decoration-color: var(--color-line-strong);
  text-underline-offset: 4px;
  transition: color 160ms ease;
}
.link-accent:hover { color: var(--color-accent-strong); }

/* ══════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 720ms cubic-bezier(0.2,0.7,0.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-badge, .hero-rule, .hero-section h1, .hero-subtitle,
  .hero-ctas, .hero-stats-bar {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
