/* ============================================================
   Sigmaris Global — AI & Software Studio
   Quiet precision · white / silver / navy / teal
   ============================================================ */

:root {
  color-scheme: light;
  --bg: #f7f8fa;
  --bg-soft: #eef1f5;
  --surface: #ffffff;
  --ink: #0b1524;
  --ink-2: #1c2d45;
  --muted: #5c6b7f;
  --muted-2: #8490a1;
  --line: #e4e9f0;
  --line-2: #cfd7e3;
  --navy: #0c2544;
  --navy-2: #163a62;
  --teal: #0f9eab;
  --teal-2: #0d8793;
  --metal: #9aadc2;
  --good: #0f9f6e;
  --bad: #c2414d;
  --container: 1120px;
  --narrow: 720px;
  --pad-x: clamp(20px, 4.5vw, 40px);
  --section-y: clamp(72px, 10vw, 120px);
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 20px 50px -28px rgba(12, 37, 68, 0.22);
  --shadow-soft: 0 10px 28px -18px rgba(12, 37, 68, 0.12);
  --font-display: "Syne", "Avenir Next", sans-serif;
  --font-body: "Instrument Sans", "Avenir Next", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --fs-hero: clamp(2.6rem, 5.8vw, 4.25rem);
  --fs-h2: clamp(1.78rem, 3.3vw, 2.55rem);
  --fs-h3: clamp(1.12rem, 1.7vw, 1.38rem);
  --fs-body: 1.03rem;
  --fs-lead: 1.06rem;
  --fs-small: 0.84rem;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 88% -10%, rgba(15, 158, 171, 0.08), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(12, 37, 68, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(12, 37, 68, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 37, 68, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-weight: 700;
}

p { margin: 0; }
::selection {
  background: rgba(15, 158, 171, 0.22);
  color: var(--navy);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
img[loading="lazy"] {
  content-visibility: auto;
}
[hidden] { display: none !important; }
ul, ol, dl { margin: 0; padding: 0; }
li { list-style: none; }

a {
  color: var(--teal-2);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover { color: var(--navy); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}
.narrow { max-width: var(--narrow); }

[id] { scroll-margin-top: 88px; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 14px;
  z-index: 100;
  border-radius: 8px;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    color 0.2s var(--ease);
  white-space: nowrap;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, #0f6f7a 140%);
  background-size: 140% 140%;
  box-shadow: 0 12px 28px -16px rgba(12, 37, 68, 0.55);
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.22) 48%, transparent 62%);
  transform: translateX(-120%);
  transition: transform 0.55s var(--ease);
}
.btn-primary:hover {
  background-position: 100% 50%;
  color: #fff;
}
.btn-primary:hover::after { transform: translateX(120%); }

.btn-ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: #fff;
  border-color: var(--metal);
  color: var(--navy);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 248, 250, 0.82);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px -20px rgba(12, 37, 68, 0.28);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  min-width: 0;
}
.brand:hover { color: inherit; }
.brand-mark {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brand:hover .brand-mark {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 8px 18px -12px rgba(15, 158, 171, 0.55);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--navy);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
}
.nav a {
  position: relative;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 550;
  padding: 8px 11px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), rgba(15, 158, 171, 0.2));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s var(--ease);
}
.nav a:hover,
.nav a.is-active {
  background: rgba(12, 37, 68, 0.05);
  color: var(--navy);
}
.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header-end {
  display: flex;
  align-items: center;
  gap: 10px;
}
.lang-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(12, 37, 68, 0.04);
  border: 1px solid var(--line);
}
.lang-btn {
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease, color 0.2s ease;
}
.lang-btn.is-active,
.lang-btn[aria-pressed="true"] {
  background: #fff;
  color: var(--navy);
  box-shadow: var(--shadow-soft);
}
.nav-cta { margin-left: 2px; }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
  border-radius: 2px;
}
body.nav-open { overflow: hidden; }

.mobile-nav {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  padding-block: 12px 18px;
}
.mobile-nav-inner {
  display: grid;
  gap: 4px;
}
.mobile-nav a {
  color: var(--ink-2);
  font-weight: 600;
  padding: 12px 14px;
  border-radius: 12px;
}
.mobile-nav a:hover,
.mobile-nav a.is-active {
  background: var(--bg-soft);
  color: var(--navy);
}
.mobile-nav-cta { margin-top: 8px; justify-self: start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-bg,
.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  display: block;
  margin: 0;
  overflow: hidden;
}
.hero-bg-media {
  object-fit: cover;
  object-position: center right;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease);
  will-change: transform;
}
.hero.is-ready .hero-bg-media { transform: scale(1.01); }
.hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 248, 250, 0.96) 0%, rgba(247, 248, 250, 0.88) 42%, rgba(247, 248, 250, 0.35) 72%, rgba(247, 248, 250, 0.12) 100%),
    linear-gradient(180deg, rgba(247, 248, 250, 0.2) 0%, rgba(247, 248, 250, 0.55) 100%);
}
.hero-fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero-grid {
  position: absolute;
  inset: -10%;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(15, 158, 171, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 158, 171, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 35%, #000 78%, transparent 100%);
  animation: grid-drift 28s linear infinite;
  transform: translate3d(var(--fx-x, 0), var(--fx-y, 0), 0);
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  transform: translate3d(calc(var(--fx-x, 0) * -0.6), calc(var(--fx-y, 0) * -0.6), 0);
  will-change: transform;
}
.hero-orb-a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  right: 8%;
  top: 12%;
  background: radial-gradient(circle, rgba(15, 158, 171, 0.28) 0%, rgba(15, 158, 171, 0.08) 42%, transparent 70%);
  animation: orb-float 9s ease-in-out infinite;
}
.hero-orb-b {
  width: min(28vw, 280px);
  height: min(28vw, 280px);
  right: 28%;
  bottom: 18%;
  background: radial-gradient(circle, rgba(22, 58, 98, 0.22) 0%, rgba(22, 58, 98, 0.06) 45%, transparent 72%);
  animation: orb-float 12s ease-in-out infinite reverse;
}
.hero-beam {
  position: absolute;
  top: -20%;
  right: 18%;
  width: 2px;
  height: 140%;
  background: linear-gradient(180deg, transparent, rgba(15, 158, 171, 0.45), transparent);
  opacity: 0.55;
  animation: beam-sweep 7.5s ease-in-out infinite;
  transform: rotate(18deg);
}
.hero-scan {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 158, 171, 0.07) 48%,
    transparent 52%
  );
  background-size: 100% 220%;
  animation: scan-move 6.5s ease-in-out infinite;
  mix-blend-mode: multiply;
  opacity: 0.7;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(88px, 14vw, 140px) clamp(56px, 8vw, 88px);
  max-width: 760px;
  margin-left: max(0px, calc((100% - var(--container)) / 2));
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 7px 12px 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 158, 171, 0.28);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  color: var(--navy-2);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(15, 158, 171, 0.55);
  animation: pulse-dot 2.2s ease-out infinite;
}
.hero-brand {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.2vw, 0.88rem);
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--navy);
}
.hero h1 {
  font-size: var(--fs-hero);
  font-weight: 750;
  max-width: 12ch;
  letter-spacing: -0.038em;
}
.hero h1 .h1-line {
  display: block;
  color: var(--teal-2);
  background: linear-gradient(105deg, var(--teal-2) 0%, #1bb8c6 45%, var(--navy-2) 100%);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: text-shimmer 8s ease-in-out infinite;
}
.hero-lead {
  margin-top: 22px;
  max-width: 38ch;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.68;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero-meta {
  margin-top: 28px;
  color: var(--muted-2);
  font-size: 0.84rem;
  letter-spacing: 0.02em;
}
.hero-inner > * {
  opacity: 0;
  transform: translateY(18px);
}
.hero.is-ready .hero-inner > * {
  animation: hero-rise 0.75s var(--ease) forwards;
}
.hero.is-ready .hero-status { animation-delay: 0.05s; }
.hero.is-ready .hero-brand { animation-delay: 0.12s; }
.hero.is-ready .hero-inner > h1 { animation-delay: 0.2s; }
.hero.is-ready .hero-lead { animation-delay: 0.3s; }
.hero.is-ready .hero-actions { animation-delay: 0.4s; }
.hero.is-ready .hero-meta { animation-delay: 0.5s; }

@keyframes grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}
@keyframes orb-float {
  0%, 100% { transform: translate3d(calc(var(--fx-x, 0) * -0.6), calc(var(--fx-y, 0) * -0.6), 0) scale(1); }
  50% { transform: translate3d(calc(var(--fx-x, 0) * -0.6), calc(var(--fx-y, 0) * -0.6 - 14px), 0) scale(1.04); }
}
@keyframes beam-sweep {
  0%, 100% { opacity: 0.2; transform: translateX(0) rotate(18deg); }
  50% { opacity: 0.7; transform: translateX(28px) rotate(18deg); }
}
@keyframes scan-move {
  0% { background-position: 0 -40%; }
  100% { background-position: 0 140%; }
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(15, 158, 171, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(15, 158, 171, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 158, 171, 0); }
}
@keyframes text-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
@keyframes hero-rise {
  to { opacity: 1; transform: none; }
}

/* ---------- Sections ---------- */
.section { padding-block: var(--section-y); }
.section-head { margin-bottom: clamp(36px, 5vw, 52px); max-width: 640px; }
.section-head-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: end;
  max-width: none;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-2);
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--teal), transparent);
  box-shadow: 0 0 12px rgba(15, 158, 171, 0.45);
}
.section-head h2 {
  font-size: var(--fs-h2);
  max-width: 16ch;
  letter-spacing: -0.032em;
}
.section-lead {
  margin-top: 14px;
  color: var(--muted);
  font-size: var(--fs-lead);
  line-height: 1.68;
  max-width: 46ch;
}
.section-head-split .section-lead { margin-top: 0; }
.section-head-actions {
  display: grid;
  gap: 16px;
  justify-items: start;
}
.section-head-actions .section-lead { margin-top: 0; }

/* ---------- Portfolio ---------- */
.pf-hero {
  padding: clamp(56px, 9vw, 96px) 0 clamp(28px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(700px 280px at 88% 0%, rgba(15, 158, 171, 0.08), transparent 60%),
    #fff;
}
.pf-hero h1 {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  max-width: 14ch;
}
.pf-section { padding-top: clamp(36px, 5vw, 56px); }
.pf-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}
.pf-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pf-filter {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  border-radius: 999px;
  padding: 8px 14px;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pf-filter:hover { border-color: var(--metal); color: var(--navy); }
.pf-filter.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.pf-count {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.86rem;
  font-weight: 600;
}
.pf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pf-grid-home { margin-top: 8px; }
.pf-card {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.pf-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-soft);
}
.pf-card.is-flash {
  box-shadow: 0 0 0 3px rgba(15, 158, 171, 0.35);
}
.pf-card-link {
  display: grid;
  color: inherit;
  height: 100%;
  text-decoration: none;
}
a.pf-card-link:hover { color: inherit; }
.pf-card-static {
  display: grid;
  height: 100%;
}
.pf-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.pf-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.pf-card:hover .pf-media img { transform: scale(1.04); }
.pf-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(12, 37, 68, 0.72);
  color: #f4f8fb;
  font-size: 0.66rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pf-body {
  display: grid;
  gap: 8px;
  padding: 16px 16px 18px;
  align-content: start;
}
.pf-tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-2);
}
.pf-body h3 { font-size: 1.12rem; }
.pf-body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.pf-meta {
  margin-top: 4px !important;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted-2) !important;
  font-size: 0.82rem !important;
  font-weight: 600;
}
.pf-footnote {
  margin: 28px 0 0;
  color: var(--muted-2);
  font-size: 0.86rem;
  max-width: 70ch;
  line-height: 1.55;
}
.pf-empty {
  margin: 12px 0 0;
  padding: 28px;
  border: 1px dashed var(--line-2);
  border-radius: var(--radius);
  color: var(--muted);
  text-align: center;
  background: var(--bg);
}
.pf-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

/* ---------- Visual band ---------- */
.visual-band {
  padding: clamp(28px, 5vw, 48px) 0 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.visual-band-frame {
  margin: 0;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.visual-band-frame picture,
.service-media picture,
.trust-media picture,
.packages-hero picture,
.process-visual picture,
.contact-visual picture,
.pf-media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.visual-band-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(15, 158, 171, 0.12), transparent 35%),
    linear-gradient(0deg, rgba(12, 37, 68, 0.18), transparent 40%);
  opacity: 0.85;
}
.visual-band-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.1s var(--ease);
}
.visual-band-frame.is-visible img,
.visual-band-frame:hover img {
  transform: scale(1);
}

/* ---------- Services ---------- */
.services { background: #fff; }
.service-list { display: grid; }
.service-row {
  display: grid;
  grid-template-columns: 56px 220px minmax(0, 1fr) 140px;
  gap: 22px;
  align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: background 0.25s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, var(--teal), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}
.service-row:hover {
  background: linear-gradient(90deg, rgba(15, 158, 171, 0.05), transparent 62%);
}
.service-row:hover::before { opacity: 1; }
.service-no {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--metal);
  transition: color 0.25s var(--ease);
}
.service-row:hover .service-no { color: var(--teal-2); }
.service-media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  aspect-ratio: 4 / 3;
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.service-row:hover .service-media img { transform: scale(1.03); }
.service-copy h3 {
  font-size: var(--fs-h3);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.service-copy p {
  color: var(--muted);
  max-width: 48ch;
  font-size: 0.98rem;
}
.service-aside {
  text-align: right;
  font-weight: 650;
  color: var(--navy);
  font-size: 0.92rem;
}

/* ---------- Work ---------- */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.work-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.work-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-2);
  box-shadow: var(--shadow-soft);
}
.work-media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.work-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.work-card:hover .work-media img { transform: scale(1.04); }
.work-body {
  display: grid;
  gap: 8px;
  padding: 18px 18px 20px;
  align-content: start;
}
.work-tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-2);
  margin: 0;
}
.work-body h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.28rem);
}
.work-body > p { color: var(--muted); font-size: 0.92rem; }
.work-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted-2);
}
.work-meta-row strong { color: var(--navy); font-weight: 700; }

/* ---------- Trust strip ---------- */
.trust-strip {
  padding: clamp(36px, 6vw, 64px) 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.trust-tile {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 10px;
  margin: -10px;
  border-radius: calc(var(--radius) + 4px);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.trust-tile:hover {
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}
.trust-media {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 1;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.trust-tile:hover .trust-media {
  border-color: rgba(15, 158, 171, 0.35);
  box-shadow: 0 16px 32px -24px rgba(12, 37, 68, 0.35);
}
.trust-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}
.trust-tile:hover .trust-media img { transform: scale(1.06); }
.trust-tile h3 {
  font-size: 1.05rem;
  margin: 2px 2px 0;
}
.trust-tile p {
  margin: 0 2px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ---------- Pricing ---------- */
.packages {
  position: relative;
  background: #fff;
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.packages-hero {
  margin: 0 auto;
  max-width: var(--container);
  padding: clamp(24px, 4vw, 40px) var(--pad-x) 0;
}
.packages-hero img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 8;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  display: block;
  box-shadow: var(--shadow-soft);
}
.packages .container { position: relative; }
.group-label {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.group-label + .price-grid { margin-bottom: 40px; }
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.price-card {
  position: relative;
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.price-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  border-radius: 0 0 2px 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0;
  transform: scaleX(0.6);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.price-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.price-card:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.price-card-featured,
.price-card-vip,
.price-card-ultimate {
  background: #fff;
  border-color: rgba(15, 158, 171, 0.35);
  box-shadow: var(--shadow-soft);
}
.price-card-ultimate {
  margin-bottom: 20px;
  padding: 36px 32px;
  grid-template-columns: 1fr;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(15, 158, 171, 0.65), rgba(12, 37, 68, 0.28), rgba(15, 158, 171, 0.4)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 22px 48px -26px rgba(15, 158, 171, 0.5);
}
.price-card-ultimate h3 {
  font-size: clamp(1.45rem, 2.4vw, 1.75rem);
  padding-right: 110px;
}
.price-card-ultimate .price-amount {
  font-size: clamp(1.55rem, 2.6vw, 1.85rem);
  letter-spacing: -0.03em;
}
.price-card-ultimate .price-desc {
  font-size: 1rem;
  min-height: 0;
  max-width: 62ch;
}
.price-card-quiet {
  background: var(--bg-soft);
  border-color: var(--line);
  box-shadow: none;
}
.price-card-quiet h3 {
  font-size: 1.15rem;
  color: var(--ink-2);
}
.price-card-quiet .price-amount {
  font-size: 1.18rem;
  color: var(--navy-2);
}
.price-card-quiet .price-desc,
.price-card-quiet .price-list li {
  color: var(--muted);
  font-size: 0.86rem;
}
.price-card-quiet:hover {
  border-color: var(--line-2);
  box-shadow: none;
  transform: none;
}
.price-grid-monthly .price-card-vip {
  transform: translateY(-4px);
}
.price-list-ultimate {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 20px;
}
@media (max-width: 720px) {
  .price-list-ultimate {
    grid-template-columns: 1fr;
  }
  .price-grid-monthly .price-card-vip {
    transform: none;
  }
}
.price-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-2);
  background: rgba(15, 158, 171, 0.1);
  border: 1px solid rgba(15, 158, 171, 0.2);
  border-radius: 999px;
  padding: 5px 10px;
}
.price-card h3 { font-size: 1.28rem; padding-right: 88px; letter-spacing: -0.02em; }
.price-amount {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 750;
  color: var(--navy);
  letter-spacing: -0.025em;
}
.price-usd { color: var(--muted-2); font-size: var(--fs-small); }
.price-desc { color: var(--muted); font-size: 0.92rem; margin: 4px 0 6px; min-height: 3.2em; }
.price-list {
  display: grid;
  gap: 8px;
  margin: 4px 0 12px;
}
.price-list li {
  position: relative;
  padding-left: 16px;
  color: var(--ink-2);
  font-size: 0.9rem;
}
.price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}
.price-cta { justify-self: start; margin-top: 6px; }
.price-note {
  margin-top: 8px;
  color: var(--muted-2);
  font-size: 0.86rem;
  max-width: 70ch;
  line-height: 1.55;
}

/* ---------- Process ---------- */
.process-visual {
  margin: 0 0 28px;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: var(--bg-soft);
  box-shadow: var(--shadow-soft);
}
.process-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 21 / 9;
  object-fit: cover;
  display: block;
}
.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  counter-reset: none;
  position: relative;
}
@media (min-width: 1001px) {
  .process-list::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 4%;
    right: 4%;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(15, 158, 171, 0.35),
      rgba(12, 37, 68, 0.18),
      rgba(15, 158, 171, 0.35),
      transparent
    );
    pointer-events: none;
  }
}
.process-item {
  padding: 8px 0 0;
  border-top: 2px solid var(--navy);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
  position: relative;
  background: transparent;
}
.process-item:hover {
  border-top-color: var(--teal);
  transform: translateY(-2px);
}
.process-no {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--metal);
  transition: color 0.25s var(--ease);
}
.process-item:hover .process-no { color: var(--teal-2); }
.process-item h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.process-item p {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ---------- Section rules ---------- */
.section-rule {
  position: relative;
  height: 1px;
  margin: 0 auto;
  max-width: var(--container);
  padding-inline: var(--pad-x);
  overflow: visible;
}
.section-rule-track,
.section-rule-glow {
  display: block;
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  top: 0;
  height: 1px;
}
.section-rule-track {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(15, 158, 171, 0.18) 12%,
    rgba(12, 37, 68, 0.22) 50%,
    rgba(15, 158, 171, 0.18) 88%,
    transparent 100%
  );
}
.section-rule-glow {
  right: auto;
  width: min(28%, 220px);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(15, 158, 171, 0.95),
    rgba(255, 255, 255, 0.75),
    rgba(15, 158, 171, 0.95),
    transparent
  );
  box-shadow: 0 0 12px rgba(15, 158, 171, 0.45);
  animation: rule-travel 4.8s linear infinite;
}
@keyframes rule-travel {
  0% { left: var(--pad-x); opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { left: calc(100% - var(--pad-x) - min(28%, 220px)); opacity: 0; }
}

/* ---------- Band ---------- */
.band {
  background:
    linear-gradient(120deg, #0c2544 0%, #163a62 48%, #0d7a86 100%);
  color: #e8f1f5;
  padding-block: clamp(48px, 7vw, 72px);
}
.band-photo {
  position: relative;
  overflow: hidden;
  background: #0c2544;
}
.band-photo-bg,
.band-photo-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.band-photo-bg {
  display: block;
  margin: 0;
  overflow: hidden;
}
.band-photo-media {
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
}
.band-photo-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 37, 68, 0.88) 0%, rgba(12, 37, 68, 0.72) 48%, rgba(13, 122, 134, 0.55) 100%);
}
.band-fx {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}
.band-streams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.band-streams span {
  position: absolute;
  top: -20%;
  width: 1px;
  height: 140%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(15, 158, 171, 0.15) 20%,
    rgba(180, 240, 255, 0.55) 50%,
    rgba(15, 158, 171, 0.15) 80%,
    transparent 100%
  );
  animation: stream-fall 5.5s linear infinite;
  opacity: 0.55;
}
.band-streams span:nth-child(1) { left: 12%; animation-duration: 6.2s; animation-delay: -1.2s; }
.band-streams span:nth-child(2) { left: 28%; animation-duration: 4.8s; animation-delay: -0.4s; width: 2px; }
.band-streams span:nth-child(3) { left: 47%; animation-duration: 7.1s; animation-delay: -2.1s; }
.band-streams span:nth-child(4) { left: 68%; animation-duration: 5.4s; animation-delay: -3.3s; width: 2px; }
.band-streams span:nth-child(5) { left: 84%; animation-duration: 6.6s; animation-delay: -0.8s; }
@keyframes stream-fall {
  0% { transform: translateY(-18%) scaleY(0.85); opacity: 0; }
  15% { opacity: 0.6; }
  100% { transform: translateY(28%) scaleY(1.05); opacity: 0; }
}
.band-photo .band-inner { position: relative; z-index: 2; }
.band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.band-copy { max-width: 34rem; }
.band h2 {
  color: #fff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  max-width: 18ch;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}
.band-eyebrow {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(180, 240, 255, 0.9);
}
.band .btn-primary {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 14px 30px -18px rgba(0, 0, 0, 0.55);
}
.band .btn-primary:hover {
  background: #f2f7fa;
  color: var(--navy);
  transform: translateY(-2px);
}

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 0; }
.faq-item {
  border-top: 1px solid var(--line);
  background: transparent;
  transition: background 0.25s var(--ease);
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item:hover,
.faq-item[open] {
  background: linear-gradient(90deg, rgba(15, 158, 171, 0.04), transparent 70%);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-weight: 650;
  color: var(--navy);
  font-size: 1rem;
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--metal);
  flex: none;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
  border-color: rgba(15, 158, 171, 0.35);
  color: var(--teal-2);
}
.faq-item p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 58ch;
}

/* ---------- Contact ---------- */
.contact { background: #fff; border-top: 1px solid var(--line); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: start;
}
.contact-visual {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}
.contact-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.contact-visual:hover img { transform: scale(1.03); }
.assurance-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 28px 0;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius-sm) + 4px);
  background: linear-gradient(180deg, #fff, var(--bg));
  overflow: hidden;
}
.assurance-row li {
  display: grid;
  gap: 4px;
  padding: 14px 14px;
  border: 0;
  border-radius: 0;
  background: transparent;
  position: relative;
  transition: background 0.25s var(--ease);
}
.assurance-row li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: var(--line);
}
.assurance-row li:hover {
  border-color: transparent;
  transform: none;
  box-shadow: none;
  background: rgba(15, 158, 171, 0.05);
}
.assurance-row strong {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.assurance-row span {
  color: var(--muted-2);
  font-size: 0.76rem;
}
.contact-meta {
  display: grid;
  gap: 12px;
}
.contact-meta > div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.contact-meta dt { color: var(--muted-2); }
.contact-meta dd { margin: 0; color: var(--navy); font-weight: 600; }
.contact-meta a { color: var(--navy); font-weight: 700; }
.contact-addr {
  white-space: pre-line;
  line-height: 1.45;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 248, 250, 0.96));
  box-shadow: var(--shadow-soft);
}
.lead-form-head { display: grid; gap: 4px; }
.lead-form-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--navy);
}
.lead-form-sub {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.86rem;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.lead-grid label {
  display: grid;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--muted);
}
.lead-full { grid-column: 1 / -1; }
.lead-grid input,
.lead-grid select,
.lead-grid textarea {
  width: 100%;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.lead-grid input:focus,
.lead-grid select:focus,
.lead-grid textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 158, 171, 0.14);
}
.lead-grid textarea { resize: vertical; min-height: 110px; }
.lead-actions { display: grid; gap: 10px; justify-items: start; }
.lead-submit {
  position: relative;
  min-width: 220px;
}
.lead-submit.is-loading {
  pointer-events: none;
  opacity: 0.88;
}
.lead-submit-spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.lead-submit.is-loading .lead-submit-spinner { display: inline-block; }
.lead-submit.is-loading .lead-submit-label { opacity: 0.92; }
.lead-form.is-success {
  border-color: rgba(15, 159, 110, 0.35);
  box-shadow: 0 14px 34px -24px rgba(15, 159, 110, 0.45);
}
.lead-feedback {
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted-2);
  min-height: 1.3em;
  transition: color 0.2s ease;
}
.lead-feedback.is-error { color: var(--bad); }
.lead-feedback.is-success { color: var(--good); font-weight: 650; }
.lead-feedback.is-info { color: var(--navy-2); }
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 28px;
  padding-block: 48px 32px;
}
.footer-about {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 34ch;
  line-height: 1.58;
}
.footer-col { display: grid; gap: 8px; align-content: start; }
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--navy);
}
.footer-col a {
  color: var(--ink-2);
  font-size: 0.9rem;
  font-weight: 550;
  transition: color 0.2s var(--ease), transform 0.2s var(--ease);
  width: fit-content;
}
.footer-col a:hover {
  color: var(--teal-2);
  transform: translateX(2px);
}
.footer-col a:hover { color: var(--teal-2); }
.footer-contact { color: var(--muted); font-size: 0.9rem; margin: 4px 0 0; }
.footer-contact a { color: var(--navy); font-weight: 700; }
.footer-addr {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 6px 0 0;
  max-width: 28ch;
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  font-size: 0.86rem;
}
.footer-social a {
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
}
.footer-social a:hover { color: var(--teal-2); }
.footer-social-sep { color: var(--muted-2); opacity: 0.7; }
.footer-bottom {
  display: grid;
  gap: 8px;
  padding-block: 18px 28px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 0.82rem;
}
.footer-disc { max-width: 70ch; line-height: 1.55; }

/* ---------- Utilities ---------- */
.back-top {
  position: fixed;
  right: 18px;
  bottom: calc(22px + env(safe-area-inset-bottom));
  z-index: 45;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.back-top:hover { transform: translateY(-2px); }
body.has-mobile-dock .back-top {
  bottom: calc(88px + env(safe-area-inset-bottom));
}

.mobile-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.94);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.mobile-dock-cta { width: 100%; }

/* ---------- Legal ---------- */
.legal-page { max-width: 820px; }
.legal-page h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-hero {
  margin-bottom: 28px;
  padding-bottom: 8px;
}
.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.legal-toc a {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-2);
  font-size: 0.86rem;
  font-weight: 650;
  padding: 8px 14px;
  border-radius: 999px;
}
.legal-toc a:hover { color: var(--navy); border-color: var(--metal); }
.legal-block {
  padding: clamp(22px, 3vw, 30px);
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  scroll-margin-top: 92px;
}
.legal-block h2 { font-size: clamp(1.25rem, 2.4vw, 1.55rem); margin-bottom: 12px; }
.legal-block h3 { font-size: 1rem; margin: 18px 0 8px; color: var(--navy-2); }
.legal-block p { color: var(--muted); font-size: 0.95rem; margin-bottom: 12px; line-height: 1.6; }
.legal-block ul { margin: 0 0 12px; padding-left: 20px; color: var(--muted); font-size: 0.95rem; }
.legal-block li { list-style: disc; }
.legal-block li + li { margin-top: 8px; }
.legal-block strong { color: var(--navy); }
.legal-block a {
  color: var(--teal-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-updated { margin-top: 8px; font-size: 0.8rem; color: var(--muted-2); }
.legal-footer-mini {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.legal-footer-mini .footer-bottom { padding-block: 22px 28px; }

:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  filter: blur(4px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    filter 0.65s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .section-head-split { grid-template-columns: 1fr; gap: 12px; }
  .service-row {
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }
  .service-media {
    grid-column: 2;
    max-width: 280px;
  }
  .service-copy { grid-column: 2; }
  .service-aside {
    grid-column: 2;
    text-align: left;
  }
  .work-grid { grid-template-columns: 1fr; }
  .pf-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; }
  .packages-hero img { aspect-ratio: 16 / 9; }
  .process-visual img { aspect-ratio: 16 / 9; }
  .band-inner { flex-direction: column; align-items: flex-start; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-inner { max-width: none; }
  .hero h1 { max-width: none; }
}

@media (max-width: 640px) {
  :root {
    --section-y: clamp(48px, 14vw, 72px);
    --pad-x: 18px;
  }
  .header-inner { min-height: 58px; gap: 12px; }
  .brand-mark { width: 34px; height: 34px; border-radius: 9px; }
  .brand-name { font-size: 0.86rem; letter-spacing: 0.1em; }
  .lang-btn { padding: 5px 8px; font-size: 0.68rem; }
  .hero {
    min-height: min(86vh, 700px);
    align-items: end;
  }
  .hero-inner {
    padding-block: 84px 40px;
  }
  .hero-status {
    font-size: 0.7rem;
    padding: 6px 10px 6px 8px;
    max-width: 100%;
  }
  .hero-brand { margin-bottom: 12px; letter-spacing: 0.22em; }
  .hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 2.7rem);
    max-width: none;
  }
  .hero-lead {
    margin-top: 16px;
    font-size: 0.96rem;
    max-width: none;
    line-height: 1.55;
  }
  .hero-actions {
    margin-top: 22px;
    gap: 10px;
  }
  .hero-actions .btn {
    flex: 1 1 calc(50% - 10px);
    padding: 12px 16px;
    font-size: 0.88rem;
  }
  .hero-meta { margin-top: 18px; font-size: 0.78rem; }
  .hero-orb-b,
  .hero-beam { display: none; }
  .hero-scan { opacity: 0.35; }
  .visual-band { padding-top: 18px; }
  .section-head { margin-bottom: 26px; }
  .section-head h2 {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
    max-width: none;
  }
  .section-lead { font-size: 0.94rem; }
  .service-row {
    padding: 20px 0;
    gap: 12px 14px;
  }
  .service-media { max-width: none; }
  .service-copy h3 { font-size: 1.18rem; }
  .service-aside { font-size: 0.86rem; }
  .trust-strip { padding: 28px 0; }
  .trust-tile {
    margin: 0;
    padding: 0;
    gap: 8px;
  }
  .trust-tile h3 { font-size: 0.98rem; }
  .trust-tile p { font-size: 0.84rem; }
  .packages-hero { padding-top: 14px; }
  .group-label { margin-bottom: 12px; font-size: 0.72rem; }
  .group-label + .price-grid { margin-bottom: 28px; }
  .price-card,
  .price-card-ultimate { padding: 22px 18px; }
  .price-amount { font-size: 1.2rem; }
  .price-desc { min-height: 0; margin-bottom: 2px; }
  .price-list-ultimate { grid-template-columns: 1fr; }
  .process-visual { margin-bottom: 20px; }
  .process-item { padding-top: 6px; }
  .process-item h3 { font-size: 1.05rem; margin-bottom: 8px; }
  .band { padding-block: 36px; }
  .band h2 {
    max-width: none;
    font-size: clamp(1.3rem, 6.4vw, 1.75rem);
  }
  .band-eyebrow { margin-bottom: 8px; }
  .faq-item summary { padding: 16px 0; font-size: 0.95rem; }
  .lead-form { padding: 16px; gap: 14px; }
  .lead-grid { gap: 10px; }
  .lead-grid input,
  .lead-grid select,
  .lead-grid textarea { padding: 11px 12px; font-size: 0.92rem; }
  .assurance-row { margin: 20px 0; gap: 8px; }
  .footer-top { padding-block: 32px 20px; gap: 20px; }
  .footer-about { margin-top: 10px; font-size: 0.86rem; }
  .section-rule { margin-block: 2px; }
  .btn { padding: 12px 18px; }
  .assurance-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .assurance-row li + li::before {
    left: 14px;
    right: 14px;
    top: 0;
    bottom: auto;
    width: auto;
    height: 1px;
  }
  .pf-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .lead-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-meta > div { grid-template-columns: 1fr; gap: 4px; }
  .mobile-dock { display: block; }
  body.has-mobile-dock { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .hero-veil {
    background:
      linear-gradient(180deg, rgba(247, 248, 250, 0.78) 0%, rgba(247, 248, 250, 0.92) 55%, rgba(247, 248, 250, 0.98) 100%),
      linear-gradient(90deg, rgba(247, 248, 250, 0.7), rgba(247, 248, 250, 0.35));
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn,
  .price-card,
  .service-row,
  .work-card,
  .back-top { transition: none; }
  .btn:hover,
  .price-card:hover,
  .work-card:hover,
  .trust-tile:hover,
  .process-item:hover,
  .assurance-row li:hover,
  .footer-col a:hover { transform: none; }
  .service-row:hover .service-media img,
  .work-card:hover .work-media img,
  .trust-tile:hover .trust-media img,
  .contact-visual:hover img { transform: none; }
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  .hero-grid,
  .hero-orb-a,
  .hero-orb-b,
  .hero-beam,
  .hero-scan,
  .hero-status-dot,
  .hero h1 .h1-line,
  .btn-primary::after,
  .section-rule-glow,
  .band-streams span {
    animation: none !important;
  }
  .band-fx,
  .band-streams { display: none; }
  .section-rule-glow { opacity: 0; }
  .hero-inner > * {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
  .hero-bg-media { transform: none; transition: none; }
  .hero-bg { transform: none; transition: none; }
}
}
