:root {
  --sky-50: #f0f9ff;
  --sky-100: #e0f2fe;
  --sky-200: #bae6fd;
  --sky-300: #7dd3fc;
  --sky-500: #0ea5e9;
  --sky-600: #0284c7;
  --sky-700: #0369a1;
  --sky-800: #075985;
  --sky-950: #082f49;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --brand: #0EA5E9;
  --brand-dark: #0284C7;
  --brand-deeper: #0369A1;
  --brand-deepest: #075985;
  --brand-soft: #E0F2FE;
  --brand-mist: #F0F9FF;
  --surface: #ffffff;
  --surface-muted: #f8fafc;
  --border: #e2e8f0;
  --border-brand: #bae6fd;
  --radius-sm: .7rem;
  --radius: 1.1rem;
  --radius-lg: 1.35rem;
  --shadow-sm: 0 6px 18px rgba(15, 23, 42, .05);
  --shadow-md: 0 14px 34px rgba(2, 132, 199, .1);
  --shadow-lg: 0 22px 48px rgba(2, 132, 199, .14);
  --focus: 0 0 0 3px rgba(14, 165, 233, .22);
  --container: 1120px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --text-xs: .78rem;
  --text-sm: .875rem;
  --text-md: 1rem;
  --text-lg: 1.05rem;
  --heading-sm: clamp(1.35rem, 2.2vw, 1.65rem);
  --heading-md: clamp(1.75rem, 3.2vw, 2.45rem);
  --heading-lg: clamp(2.2rem, 5vw, 3.75rem);
  --space-section: clamp(3.5rem, 6vw, 5.5rem);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--surface-muted);
  overflow-x: clip;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: none; box-shadow: var(--focus); }

/* Lucide icons — prevent oversized SVG from breaking layout */
i[data-lucide],
svg.lucide {
  width: 1.1rem;
  height: 1.1rem;
  flex: none;
  display: inline-block;
  vertical-align: middle;
  stroke-width: 2;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
  min-width: 0;
}

.container-narrow {
  width: 100%;
  max-width: 44rem;
  margin-inline: auto;
  padding-inline: 1rem;
  box-sizing: border-box;
  min-width: 0;
}

main {
  position: relative;
  z-index: 1;
  min-width: 0;
  max-width: 100%;
  overflow-x: clip;
}

.section,
.section-pad,
.hero-sky,
.page-hero,
.services-surface {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

.stack { display: grid; gap: 1.25rem; }
.stack-lg { display: grid; gap: 1.75rem; }

/* Header */
#header,
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(226, 232, 240, .9);
  backdrop-filter: blur(16px) saturate(1.2);
  transition: box-shadow .25s ease, background .25s ease, border-color .25s ease;
}

.header-scrolled {
  background: rgba(255, 255, 255, .94);
  border-color: var(--sky-100);
  box-shadow: 0 12px 32px rgba(2, 132, 199, .08);
}

.nav-bar {
  height: auto;
  min-height: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  padding: .35rem 0;
  min-width: 0;
}

.nav-bar > a:first-child {
  flex: none;
  min-width: 0;
  max-width: min(150px, 48vw);
}

.logo-img,
.footer-logo {
  width: auto;
  height: 2.5rem;
  max-width: 150px;
  object-fit: contain;
  flex: none;
}

@media (min-width: 768px) {
  .logo-img { height: 2.75rem; max-width: 170px; }
}

.nav-desktop,
.nav-actions { display: none; align-items: center; gap: .75rem; }

@media (min-width: 1024px) {
  .nav-desktop,
  .nav-actions { display: flex; }
  .nav-desktop {
    flex-wrap: wrap;
    justify-content: center;
    gap: .2rem;
    max-width: min(36rem, 48vw);
  }
  .nav-toggle { display: none !important; }
}

.nav-link {
  padding: .55rem .85rem;
  border-radius: .8rem;
  color: var(--slate-600);
  font-size: var(--text-sm);
  font-weight: 600;
  transition: background .2s ease, color .2s ease;
}

.nav-link:hover,
.nav-active {
  background: var(--sky-50);
  color: var(--sky-700);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  padding: .22rem;
  background: var(--slate-100);
  border-radius: .75rem;
  font-size: .78rem;
  font-weight: 700;
}

.lang-switch span,
.lang-switch a {
  padding: .35rem .55rem;
  border-radius: .55rem;
}

.lang-switch .current {
  background: white;
  color: var(--sky-700);
  box-shadow: 0 1px 2px rgba(15, 23, 42, .06);
}

.lang-switch a { color: var(--slate-500); }

.nav-toggle {
  border: 0;
  background: transparent;
  padding: .5rem;
  border-radius: .7rem;
  color: var(--slate-700);
  cursor: pointer;
  flex: none;
  line-height: 0;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.nav-burger {
  width: 1.2rem;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  box-shadow: 0 -.35rem 0 currentColor, 0 .35rem 0 currentColor;
  display: block;
}

.nav-toggle:has(svg.lucide) .nav-burger { display: none; }

.nav-toggle svg {
  width: 1.45rem;
  height: 1.45rem;
}

.nav-toggle::before { display: none; }

#mobile-menu {
  display: none;
  border-top: 1px solid var(--slate-100);
  padding: 1rem 0 1.25rem;
}

#mobile-menu.open { display: grid; gap: .35rem; }

#mobile-menu a {
  padding: .85rem 1rem;
  border-radius: .85rem;
  font-weight: 600;
  color: var(--slate-700);
}

#mobile-menu a.active,
#mobile-menu a:hover {
  background: var(--sky-50);
  color: var(--sky-700);
}

.mobile-menu-meta {
  display: flex;
  gap: .75rem;
  align-items: center;
  padding: .75rem 1rem 0;
}

.mobile-menu-meta .current {
  font-weight: 800;
  color: var(--sky-700);
}

.mobile-menu-meta .button-primary {
  margin-left: auto;
}

/* Buttons */
.button-primary,
.button-light,
.button-outline,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: .9rem;
  padding: .85rem 1.2rem;
  font-size: var(--text-sm);
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  cursor: pointer;
}

.button-primary svg,
.button-light svg,
.button-outline svg,
.button-secondary svg,
.text-link svg {
  width: 1rem;
  height: 1rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--sky-500), var(--sky-600));
  color: white;
  box-shadow: 0 12px 26px rgba(2, 132, 199, .22);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--sky-600), var(--sky-700));
  transform: translateY(-1px);
}

.button-light { background: white; color: var(--sky-700); }
.button-light:hover { background: var(--sky-100); }
.button-outline {
  border-color: rgba(255, 255, 255, .55);
  color: white;
  background: transparent;
}
.button-outline:hover { background: rgba(255, 255, 255, .12); }
.button-secondary {
  border-color: var(--sky-200);
  color: var(--sky-700);
  background: white;
}
.button-secondary:hover { background: var(--sky-50); }

/* Typography helpers */
.eyebrow {
  margin: 0 0 .75rem;
  color: var(--sky-700);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead {
  margin: .9rem 0 0;
  color: var(--slate-500);
  font-size: var(--text-lg);
  line-height: 1.7;
}

.lead-center {
  max-width: 42rem;
  margin-inline: auto;
}

/* Hero */
.hero-sky,
.cta-sky {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(56, 189, 248, .35), transparent 55%),
    linear-gradient(145deg, #0c4a6e 0%, #0284c7 52%, #38bdf8 100%);
  color: white;
}

.hero-sky .container {
  padding: clamp(3.25rem, 8vw, 5rem) 0 clamp(3.75rem, 9vw, 5.5rem);
  display: grid;
  gap: 1.75rem;
  align-items: center;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}

.hero-sky .container > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 1024px) {
  .hero-sky .container {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 2.25rem;
    padding: 6.75rem 0 6.25rem;
  }
}

.hero-sky .eyebrow,
.cta-sky .eyebrow {
  color: rgba(224, 242, 254, .92);
}

.hero-sky h1 {
  margin: 0;
  font-size: clamp(1.85rem, 7.2vw, 3.75rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 800;
  max-width: 18ch;
  overflow-wrap: normal;
  word-break: normal;
}

.hero-copy {
  margin: 1.15rem 0 0;
  font-size: clamp(.95rem, 2.8vw, 1.08rem);
  line-height: 1.7;
  color: #e0f2fe;
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.75rem;
}

.hero-actions > * {
  max-width: 100%;
}

@media (max-width: 639px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button-primary,
  .hero-actions .button-light,
  .hero-actions .button-outline {
    width: 100%;
  }
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(8, 47, 73, .3);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: clamp(1.15rem, 3.5vw, 1.65rem);
  box-shadow: 0 20px 50px rgba(8, 47, 73, .2);
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-panel-icon {
  width: 2.5rem;
  height: 2.5rem;
  color: #7dd3fc;
}

.hero-panel > p {
  margin: 1rem 0 0;
  font-size: clamp(1rem, 3.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  color: #f0f9ff;
}

.hero-panel .chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .5rem;
  margin-top: 1.15rem;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 640px) {
  .hero-panel .chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.hero-panel .chips span {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: .7rem;
  padding: .55rem .35rem;
  text-align: center;
  font-size: clamp(.68rem, 2.4vw, .75rem);
  font-weight: 700;
  color: #e0f2fe;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Sections */
.section,
.section-pad {
  padding: var(--space-section) 0;
}

.section-intro {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-intro h1,
.section-intro h2,
.page-hero h1,
.content-card h2,
.cta-sky h2,
.statement-block h2 {
  margin: 0;
  font-size: var(--heading-md);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 800;
  color: var(--slate-900);
}

.section-intro > p,
.page-hero > .container > p,
.cta-sky p,
.statement-block > p {
  margin: .9rem 0 0;
  color: var(--slate-500);
  font-size: 1.02rem;
  line-height: 1.7;
}

.statement-block {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 4.25rem 0 3.25rem;
  background:
    radial-gradient(ellipse 55% 70% at 100% 0%, rgba(14, 165, 233, .16), transparent 60%),
    linear-gradient(180deg, #e0f2fe 0%, #f0f9ff 48%, #ffffff 100%);
}

.page-hero.compact { padding: 3.25rem 0 2.5rem; }

.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 48rem;
}

.page-hero.centered .container { text-align: center; margin-inline: auto; }

.bg-soft,
.section-pad.bg-soft,
.section-pad.bg-muted { background: var(--slate-50); }
.bg-white,
.section-pad.bg-white { background: white; }

/* Grids */
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
}

.grid-2 > *,
.grid-3 > *,
.grid-4 > * {
  min-width: 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .grid-2,
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.split-panel {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

@media (min-width: 768px) {
  .split-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .split-panel { grid-template-columns: 1.05fr .95fr; }
}

/* Cards */
.service-card,
.value-card,
.package-card,
.process-card,
.content-card,
.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #e0f2fe 58%, #bae6fd 140%);
  border-color: #7dd3fc;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 0;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0EA5E9, #0284C7, #0369A1);
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: var(--shadow-lg);
}

.service-index {
  margin: 0;
  color: #0284C7;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.service-card h3 {
  margin: .85rem 0 0;
  color: #0c4a6e;
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-card > p,
.value-card p,
.package-card p,
.process-card p,
.content-card > p:not(.eyebrow) {
  margin: .55rem 0 0;
  color: var(--slate-500);
  font-size: .92rem;
  line-height: 1.6;
}

.service-card > p:not(.service-index) { flex: 1; }

.card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(2, 132, 199, .14);
}

.card-actions .button-primary { margin-left: 0; }

.value-card {
  position: relative;
  overflow: hidden;
  padding: 1.55rem 1.45rem;
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
  border-color: #e0f2fe;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
}

.value-card h3,
.process-card h3,
.content-card h2 {
  margin: .7rem 0 0;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--slate-900);
}

.content-card h2 { font-size: var(--heading-sm); }

.icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .9rem;
  background: var(--sky-100);
  color: var(--sky-700);
}

.icon-wrap svg { width: 1.3rem; height: 1.3rem; }

.value-card .icon-wrap {
  width: 2.6rem;
  height: 2.6rem;
  margin-bottom: .25rem;
}

.process-track,
.process-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .process-track { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .process-track { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.process-card {
  position: relative;
  padding: 1.55rem 1.45rem;
  background: white;
  border-color: #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.process-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.process-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 2.15rem;
  padding: 0 .55rem;
  border-radius: 999px;
  background: #e0f2fe;
  color: var(--sky-700);
  font-weight: 900;
  font-size: .85rem;
}

.content-card.sky {
  background: var(--sky-50);
  border-color: var(--sky-200);
}

.split-panel .content-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1.5rem;
}

.tag,
.metric-chip {
  display: inline-flex;
  padding: .55rem .85rem;
  border-radius: 999px;
  background: var(--sky-100);
  color: var(--sky-800);
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
}

/* Services page */
.services-surface {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 75% 60% at 0% 0%, rgba(14, 165, 233, .28), transparent 55%),
    radial-gradient(ellipse 60% 55% at 100% 100%, rgba(3, 105, 161, .18), transparent 52%),
    linear-gradient(160deg, #bae6fd 0%, #e0f2fe 38%, #f0f9ff 100%);
}

.services-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 35%, #000 15%, transparent 78%);
  pointer-events: none;
  opacity: .45;
}

.services-surface > .container {
  position: relative;
  z-index: 1;
}

.services-hero-block {
  position: relative;
  max-width: 44rem;
  margin-bottom: 2.5rem;
  padding: 1.65rem 1.65rem 1.65rem 1.85rem;
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, .78) 0%, rgba(224, 242, 254, .92) 100%);
  border: 1px solid rgba(186, 230, 253, .95);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.services-hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #0EA5E9, #0284C7, #0369A1);
}

.services-badge {
  display: inline-flex;
  align-items: center;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #0EA5E9, #0284C7);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(2, 132, 199, .28);
}

.services-hero-block h1 {
  margin: 1rem 0 0;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 800;
  color: #0c4a6e;
}

.services-hero-block > p {
  margin: .9rem 0 0;
  color: #475569;
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 38rem;
}

/* Lists */
.service-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: .55rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .service-list:not(.compact) { grid-template-columns: repeat(2, 1fr); }
}

.service-list li {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .65rem .75rem;
  background: white;
  border: 1px solid var(--slate-200);
  border-radius: .7rem;
  color: var(--slate-600);
  font-size: .9rem;
}

.service-list.compact {
  gap: .2rem;
}

.service-list.compact li {
  padding: .28rem 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.service-list li svg {
  width: .95rem;
  height: .95rem;
  color: var(--sky-600);
  flex: none;
}

/* Contact / forms */
.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: white;
  border: 1px solid var(--border-brand);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.contact-item > svg {
  color: var(--sky-600);
  flex: none;
  margin-top: .15rem;
  width: 1.25rem;
}

.contact-item h2 {
  margin: 0 0 .25rem;
  font-size: .9rem;
  font-weight: 800;
}

.contact-item a,
.contact-item p {
  color: var(--slate-600);
  line-height: 1.7;
  margin: 0;
}

label {
  display: grid;
  gap: .45rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--slate-700);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: .85rem;
  padding: .85rem 1rem;
  background: white;
  color: var(--slate-800);
  transition: border-color .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--sky-300);
  box-shadow: var(--focus);
  outline: none;
}

.form-note {
  margin: 1rem 0 0;
  color: var(--slate-400);
  font-size: .82rem;
}

.form-status {
  min-height: 1.25rem;
  margin: 1rem 0 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--slate-600);
}

.form-status.is-ok { color: #0369a1; }
.form-status.is-error { color: #b91c1c; }

.hp-field {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-shell {
  max-width: 44rem;
  margin-inline: auto;
}

.quote-meta {
  display: flex;
  justify-content: space-between;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: .75rem;
  color: var(--slate-600);
}

.quote-progress-track {
  height: .5rem;
  background: #f1f5f9;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  overflow: hidden;
}

.progress-bar-fill {
  transition: width .3s ease;
  height: 100%;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-600));
  border-radius: 999px;
}

.quote-step { display: none; }
.quote-step.active { display: block; }

.quote-step h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--slate-900);
}

.option-grid {
  display: grid;
  gap: .85rem;
  margin-top: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .option-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.option-card {
  display: flex;
  align-items: center;
  gap: .7rem;
  text-align: left;
  width: 100%;
  padding: 1rem 1.05rem;
  border-radius: .95rem;
  border: 1px solid var(--slate-200);
  background: white;
  color: var(--slate-700);
  font-weight: 700;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.option-card:hover {
  border-color: var(--sky-300);
  background: var(--sky-50);
}

.option-card.selected {
  border-color: var(--sky-500);
  background: var(--sky-50);
  box-shadow: 0 0 0 1px var(--sky-500);
}

.option-card svg {
  color: var(--sky-600);
  width: 1.15rem;
  flex: none;
}

.quote-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.75rem;
}

.quote-nav .button-primary { margin-left: auto; }

.work-step {
  display: flex;
  gap: 1rem;
}

.work-step > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  font-weight: 900;
  font-size: .85rem;
  color: var(--sky-700);
  background: var(--sky-100);
}

.work-step h3 { margin: 0; font-weight: 800; }
.work-step p { margin: .2rem 0 0; color: var(--slate-500); font-size: .9rem; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  color: #0369A1;
  font-size: .875rem;
  font-weight: 700;
}

.text-link:hover { color: #075985; }

/* Footer */
footer,
.site-footer {
  background: linear-gradient(180deg, #0369A1 0%, #075985 55%, #0c4a6e 100%);
  color: #E0F2FE;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding: 3.25rem 0 2rem;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.footer-title {
  margin: 0 0 1rem;
  font-size: .92rem;
  font-weight: 800;
  color: white;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}

.footer-links a,
.footer-links li {
  color: rgba(224, 242, 254, .82);
  font-size: .9rem;
}

.footer-links a:hover { color: #ffffff; }

.footer-copy {
  margin: 1rem 0 0;
  color: rgba(224, 242, 254, .7);
  font-size: .9rem;
  line-height: 1.7;
  max-width: 28ch;
}

.footer-bottom {
  border-top: 1px solid rgba(224, 242, 254, .16);
  padding: 1.15rem 0 1.6rem;
  color: rgba(224, 242, 254, .7);
  font-size: .82rem;
}

/* Utilities */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }
.hidden { display: none !important; }
.invisible { visibility: hidden; pointer-events: none; }
.flex-wrap { display: flex; flex-wrap: wrap; gap: .65rem; }

/* ——— Home page polish ——— */
.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(8px);
  letter-spacing: .1em;
}

.eyebrow-pill::before {
  content: "";
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(125, 211, 252, .25);
  animation: pulse-dot 2.4s ease-in-out infinite;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}

.eyebrow-line::before {
  content: "";
  width: 1.6rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
}

.hero-sky .eyebrow-line::before {
  background: linear-gradient(90deg, #7dd3fc, #e0f2fe);
}

.text-shine {
  background: linear-gradient(120deg, #ffffff 10%, #bae6fd 45%, #ffffff 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine-shift 7s ease-in-out infinite;
}

.hero-orbit,
.hero-mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orbit {
  background:
    radial-gradient(circle at 18% 78%, rgba(125, 211, 252, .22), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .16), transparent 26%);
  animation: float-glow 10s ease-in-out infinite alternate;
}

.hero-mesh {
  opacity: .35;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 70% 40%, #000 10%, transparent 72%);
}

.hero-sky .container { position: relative; z-index: 1; }

.hero-copy-block { position: relative; }

.hero-panel {
  background:
    linear-gradient(160deg, rgba(8, 47, 73, .42), rgba(2, 132, 199, .28)),
    rgba(8, 47, 73, .25);
}

.hero-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hero-panel-badge {
  display: inline-flex;
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #082f49;
  background: linear-gradient(135deg, #e0f2fe, #7dd3fc);
}

.hero-panel-icon {
  animation: spin-slow 18s linear infinite;
}

.hero-panel .chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  background: rgba(255, 255, 255, .06);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.hero-panel .chips span:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-1px);
}

.hero-panel .chips span svg {
  width: .85rem;
  height: .85rem;
  color: #7dd3fc;
  flex: none;
}

.statement-surface {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 50% 80% at 50% 0%, rgba(14, 165, 233, .1), transparent 60%),
    linear-gradient(180deg, #f0f9ff 0%, #ffffff 55%, #f8fafc 100%);
}

.statement-block {
  position: relative;
  max-width: 46rem;
  padding: 1.5rem 1rem 0;
}

.statement-mark {
  position: absolute;
  top: -.35rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: clamp(4.5rem, 12vw, 7rem);
  line-height: 1;
  font-weight: 800;
  color: rgba(14, 165, 233, .12);
  pointer-events: none;
  user-select: none;
}

.statement-block h2 em {
  font-style: normal;
  color: var(--sky-700);
  background: linear-gradient(180deg, transparent 62%, rgba(125, 211, 252, .45) 62%);
}

.statement-lead {
  margin: 1.1rem auto 0;
  max-width: 36rem;
  color: var(--slate-500);
  font-size: 1.05rem;
  line-height: 1.75;
}

.statement-rule {
  width: 4.5rem;
  height: 3px;
  margin: 1.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--sky-500), var(--sky-300));
}

.section-kicker {
  margin: .85rem 0 0;
  color: var(--slate-500);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 34rem;
}

.values-surface {
  background:
    radial-gradient(ellipse 40% 50% at 100% 0%, rgba(14, 165, 233, .08), transparent 55%),
    #ffffff;
}

.values-surface .value-card {
  border-radius: 1.2rem;
  padding: 1.7rem 1.5rem;
  background:
    linear-gradient(165deg, #ffffff 0%, #f0f9ff 100%);
  border: 1px solid #dbeafe;
  box-shadow: 0 10px 28px rgba(2, 132, 199, .06);
}

.values-surface .value-card .icon-wrap {
  background: linear-gradient(145deg, #e0f2fe, #bae6fd);
  color: var(--sky-700);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.values-surface .value-card:hover .icon-wrap {
  transform: scale(1.06);
  transition: transform .2s ease;
}

html.js-ready .values-surface .value-card[data-reveal],
html.js-ready .process-surface .process-card[data-reveal] {
  transition-delay: calc(var(--i, 0) * .07s);
}

.process-surface {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 60% at 0% 100%, rgba(3, 105, 161, .08), transparent 50%),
    linear-gradient(180deg, #f8fafc 0%, #e0f2fe 48%, #f0f9ff 100%);
}

.process-track {
  position: relative;
}

@media (min-width: 1024px) {
  .process-track::before {
    content: "";
    position: absolute;
    top: 2.15rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #7dd3fc 15%, #38bdf8 50%, #7dd3fc 85%, transparent);
    z-index: 0;
  }
}

.process-surface .process-card {
  position: relative;
  z-index: 1;
  border-radius: 1.2rem;
  border: 1px solid rgba(186, 230, 253, .9);
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px rgba(2, 132, 199, .08);
}

.process-surface .process-card span {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  color: white;
  box-shadow: 0 8px 18px rgba(2, 132, 199, .28);
}

.tech-surface {
  background:
    radial-gradient(ellipse 45% 55% at 100% 50%, rgba(14, 165, 233, .1), transparent 55%),
    #ffffff;
}

.tech-nodes {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: grid;
  gap: .7rem;
}

.tech-nodes li {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .85rem 1rem;
  border-radius: .95rem;
  background: linear-gradient(90deg, #f0f9ff, #ffffff);
  border: 1px solid #e0f2fe;
  color: var(--slate-700);
  font-weight: 700;
  font-size: .92rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.tech-nodes li:hover {
  border-color: #7dd3fc;
  transform: translateX(4px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, .08);
}

.tech-dot {
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  flex: none;
  background: linear-gradient(135deg, #0ea5e9, #0369a1);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, .15);
}

.about-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.35rem;
  padding: 1.85rem 1.65rem;
  background:
    radial-gradient(ellipse 80% 60% at 100% 0%, rgba(56, 189, 248, .35), transparent 55%),
    linear-gradient(155deg, #0369a1 0%, #0284c7 48%, #0ea5e9 100%);
  color: #f0f9ff;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(125, 211, 252, .35);
}

.about-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 80% 20%, #000, transparent 75%);
  pointer-events: none;
}

.about-panel > * { position: relative; z-index: 1; }

.about-panel .eyebrow {
  color: #e0f2fe;
}

.about-panel h2 {
  margin: .7rem 0 0;
  color: white;
  font-size: var(--heading-sm);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.about-panel > p:not(.eyebrow) {
  margin: .85rem 0 0;
  color: rgba(224, 242, 254, .9);
  font-size: .95rem;
  line-height: 1.65;
}

.about-panel .button-primary {
  background: white;
  color: var(--sky-700);
  box-shadow: 0 10px 24px rgba(8, 47, 73, .18);
}

.about-panel .button-primary:hover {
  background: var(--sky-50);
  transform: translateY(-1px);
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .75; }
}

@keyframes shine-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

@keyframes float-glow {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-12px, 10px, 0); }
}

@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .eyebrow-pill::before,
  .text-shine,
  .hero-orbit,
  .hero-panel-icon {
    animation: none !important;
  }
  .tech-nodes li:hover { transform: none; }
}

/* Reveal motion — never hide content; only lift slightly when JS is ready */
[data-reveal] {
  opacity: 1;
  transform: none;
}

html.js-ready [data-reveal] {
  opacity: 1;
  transform: translateY(10px);
  transition: opacity .45s ease, transform .45s ease;
}

html.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js-ready [data-reveal],
  html.js-ready [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .service-card:hover,
  .value-card:hover,
  .process-card:hover,
  .button-primary:hover {
    transform: none;
  }
}
