@import url("https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@24,500,0,0");

:root {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --text-1: #0f1720;
  --text-2: #344252;
  --text-3: #5d6c7d;
  --line: #d7dee8;
  --brand: #0071e3;
  --brand-strong: #0077ed;
  --max: 1140px;
  --radius: 20px;
  --radius-sm: 12px;
  --btn-h: 2.75rem;
  --btn-px: 1.25rem;
  --btn-radius: 62.4375rem;
  --btn-font-size: 1rem;
  --btn-line: 1.2;
  --fs-h1: clamp(2.75rem, 6.5vw, 5rem);
  --fs-h2: clamp(2rem, 4.2vw, 3.4rem);
  --fs-h3: clamp(1.25rem, 1.6vw, 1.6rem);
  --fs-body: clamp(1.0625rem, 0.25vw + 1rem, 1.2rem);
  --lh-h1: 1.06;
  --lh-h2: 1.12;
  --lh-h3: 1.15;
  --lh-body: 1.5;
  --ls-h1: -0.045em;
  --ls-h2: -0.032em;
  --ls-h3: -0.02em;
  --ls-body: -0.01em;
  --card-p: clamp(1.15rem, 0.82rem + 1.15vw, 2.2rem);
  --btn-focus-ring: 0 0 0 0.1875rem rgba(0, 113, 227, 0.32);
  --tile-gap: 0.5rem;
  --tile-pad: 1.5rem;
  --tile-section-pad: 1.375rem;
  --tile-copy-max: 32rem;
  --tile-edge-inset: clamp(3.5rem, 6.8vh, 5rem);
  --tile-edge-inset-mobile: clamp(2.2rem, 8vw, 2.8rem);
  --tile-head-max: clamp(9ch, 34vw, 13ch);
  --tile-sub-max: clamp(26ch, 50vw, 36ch);
  --tile-cta-gap: 0.75rem;
  --tile-heading-gap: 0.75rem;
  --tile-subcta-gap: 1.25rem;
  --tile-copy-gap: 0;
  --tile-title-size: clamp(2.25rem, 2.7vw, 2.9rem);
  --tile-title-weight: 600;
  --tile-title-line: 1.07;
  --tile-title-track: -0.026em;
  --tile-body-size: clamp(1.0625rem, 0.24vw + 1rem, 1.2rem);
  --tile-body-weight: 400;
  --tile-body-line: 1.34;
  --tile-body-track: -0.004em;
  --tile-cta-size: 0.9375rem;
  --tile-cta-line: 1.2;
  --tile-cta-weight: 500;
  --tile-cta-track: -0.014em;
  --hero-h2-size: clamp(1.875rem, 1.15rem + 2.8vw, 3.25rem);
  --hero-h2-max: clamp(12ch, 54vw, 17ch);
  --hero-sub-size: clamp(1.0625rem, 0.98rem + 0.45vw, 1.25rem);
  --hero-sub-max: clamp(30ch, 50vw, 40ch);
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --mobile-section-gap: clamp(2.2rem, 8vw, 3.25rem);
  --shadow-soft: 0 1px 2px rgba(16, 24, 40, 0.04), 0 10px 28px rgba(16, 24, 40, 0.06);
  --shadow-card: 0 3px 8px rgba(16, 24, 40, 0.08), 0 18px 34px rgba(16, 24, 40, 0.1);
}

* { box-sizing: border-box; }
*,
*::before,
*::after {
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text-1);
  background:
    radial-gradient(1200px 500px at 100% -120px, rgba(10, 114, 184, 0.1), transparent 62%),
    radial-gradient(900px 400px at -10% 20%, rgba(14, 165, 233, 0.08), transparent 58%),
    var(--bg);
  font-size: 16px;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

:where(h1, h2, h3, h4, .eyebrow, .hero-sub, .cta-lead, .btn, .nav-links a, .nav-panel-links a) {
  text-wrap: pretty;
}

p {
  text-wrap: pretty;
}

@supports (text-wrap: balance) {
  :where(h1, h2, h3, h4, .eyebrow, .hero-sub, .cta-lead, .btn, .nav-links a, .nav-panel-links a) {
    text-wrap: balance;
  }
}

.wrap { width: min(var(--max), calc(100% - 28px)); margin: 0 auto; }

.top-contact {
  background: #0f1419;
  color: #f5f8fc;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
}

.top-contact a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 246, 249, 0.92);
  backdrop-filter: blur(10px);
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.brand img { height: 34px; }

.nav-links {
  display: flex;
  gap: 1.125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.008em;
  color: var(--text-2);
}

.nav-toggle {
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  align-items: center;
  justify-content: center;
  gap: 0.3125rem;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle-line {
  display: block;
  width: 1rem;
  height: 0.125rem;
  border-radius: 999px;
  background: #111c27;
  transform-origin: center;
}

.nav-panel {
  display: none;
}

body.nav-open {
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--btn-h);
  padding-inline: var(--btn-px);
  border-radius: var(--btn-radius);
  border: 0.0625rem solid transparent;
  font-weight: 600;
  font-size: var(--btn-font-size);
  line-height: var(--btn-line);
  letter-spacing: -0.015em;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  border-color: var(--brand);
  box-shadow: none;
}

.btn-primary:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--brand);
  background: transparent;
  border-color: var(--brand);
}

.btn-secondary:hover {
  background: rgba(0, 113, 227, 0.1);
  border-color: var(--brand);
  color: var(--brand);
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--btn-focus-ring);
}

.btn-wide { width: 100%; }

.section { padding: clamp(56px, 8vw, 98px) 0; }
.section-tight { padding: clamp(2.25rem, 1.6rem + 2.1vw, 3.5rem) 0; }

h1 {
  margin: 0 0 12px;
  font-size: var(--fs-h1);
  letter-spacing: -0.038em;
  line-height: 1.08;
  max-width: 12ch;
}

h2 {
  margin: 0 0 8px;
  font-size: var(--fs-h2);
  letter-spacing: -0.028em;
  line-height: 1.14;
}

h3 { margin: 0 0 8px; font-size: var(--fs-h3); line-height: var(--lh-h3); letter-spacing: var(--ls-h3); }
p { margin: 0; color: #36485b; max-width: 62ch; font-size: var(--fs-body); line-height: var(--lh-body); letter-spacing: var(--ls-body); }

.pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: #3a4857;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 22px;
  align-items: center;
}

.home-apple .section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.hero-billboard {
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 10px solid #f4f6f9;
}

.hero-billboard.dark {
  background:
    linear-gradient(180deg, rgba(5, 18, 31, 0.6), rgba(5, 18, 31, 0.55)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
  color: #fff;
}

.hero-billboard.light {
  min-height: 56vh;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.92)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2000&q=80") center/cover no-repeat;
}

.hero-center {
  max-width: 760px;
  padding: clamp(4rem, 8vh, 5.5rem) 0;
}

.hero-billboard h1,
.hero-billboard h2 {
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.03em;
  text-align: center;
  margin-inline: auto;
}

.hero-billboard h1 {
  font-size: clamp(2.5rem, 7vw, 5.2rem);
  line-height: 1.02;
  max-width: 11.5ch;
}

.hero-billboard h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.022em;
  color: #101418;
}

.hero-billboard.light h2 {
  font-size: var(--hero-h2-size);
  line-height: 1.06;
  letter-spacing: -0.028em;
  max-inline-size: var(--hero-h2-max);
  margin-inline: auto;
  text-wrap: pretty;
}

.eyebrow {
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 0.95;
  display: block;
  text-align: center;
  margin-inline: auto;
  width: fit-content;
}

.hero-sub {
  margin: 0 auto;
  max-width: 58ch;
  font-size: clamp(1rem, 1.9vw, 1.32rem);
  text-align: center;
}

.hero-billboard.light .hero-sub {
  font-size: var(--hero-sub-size);
  line-height: 1.34;
  max-inline-size: var(--hero-sub-max);
  margin-inline: auto;
  text-wrap: pretty;
}

.hero-billboard.dark .hero-sub,
.hero-billboard.dark .eyebrow {
  color: rgba(255, 255, 255, 0.92);
}

.hero-billboard.dark .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.hero-billboard.dark .btn-secondary:hover {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.hero-billboard.dark .btn-primary {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.hero-billboard.dark .btn-primary:hover {
  background: #f5f5f7;
  border-color: #f5f5f7;
}

.hero-billboard.light .hero-sub,
.hero-billboard.light .eyebrow {
  color: #2f3b49;
}

@supports (text-wrap: balance) {
  .hero-billboard.light h2,
  .hero-billboard.light .hero-sub {
    text-wrap: balance;
  }
}

.home-apple .hero-links {
  margin-top: clamp(1.75rem, 3.2vh, 2.5rem);
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-grid-wrap {
  padding-top: var(--tile-section-pad);
}

.service-grid {
  width: 100vw;
  margin: 0;
  margin-inline: calc(50% - 50vw);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--tile-gap);
}

.service-tile {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 var(--tile-pad);
  background-size: cover;
  background-position: center;
}

.service-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 30, 0.3) 0%,
    rgba(10, 18, 30, 0.12) 45%,
    rgba(10, 18, 30, 0.58) 100%
  );
}

.tile-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--tile-copy-max));
  margin-inline: auto;
  padding-top: var(--tile-edge-inset);
  color: #fff;
  text-align: center;
}

.tile-content h3 {
  margin: 0 0 var(--tile-heading-gap);
  max-inline-size: var(--tile-head-max);
  margin-inline: auto;
  font-size: var(--tile-title-size);
  font-weight: var(--tile-title-weight);
  line-height: var(--tile-title-line);
  letter-spacing: var(--tile-title-track);
}

.tile-content p {
  margin: 0 0 var(--tile-copy-gap);
  max-width: var(--tile-sub-max);
  margin-inline: auto;
  font-size: var(--tile-body-size);
  font-weight: var(--tile-body-weight);
  line-height: var(--tile-body-line);
  letter-spacing: var(--tile-body-track);
  color: rgba(255, 255, 255, 0.92);
}

.tile-content a {
  color: #7ec8ff;
  font-weight: 600;
}

.tile-actions {
  margin-top: var(--tile-subcta-gap);
  display: flex;
  justify-content: center;
  gap: var(--tile-cta-gap);
  flex-wrap: wrap;
}

.btn-tile {
  min-height: var(--btn-h);
  padding-inline: var(--btn-px);
  font-size: var(--btn-font-size);
  font-weight: 600;
  line-height: var(--btn-line);
  letter-spacing: -0.015em;
  white-space: nowrap;
  text-wrap: nowrap;
}

.service-tile .btn-primary {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.service-tile .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.service-tile .btn-secondary:hover {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.tile-web {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=1600&q=80");
}

.tile-hosting {
  background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=1600&q=80");
}

.tile-social {
  background-image: url("https://images.unsplash.com/photo-1611224923853-80b023f02d71?auto=format&fit=crop&w=1600&q=80");
}

.tile-print {
  background-image: url("https://images.unsplash.com/photo-1586717799252-bd134ad00e26?auto=format&fit=crop&w=1600&q=80");
}

.tile-social,
.tile-print {
  align-items: flex-end;
}

.tile-social .tile-content,
.tile-print .tile-content {
  padding-top: 0;
  padding-bottom: var(--tile-edge-inset);
}

.tile-print .tile-content p {
  max-inline-size: 30ch;
}

.cta-bottom-shell {
  padding-top: clamp(5.25rem, 10vw, 8.75rem);
  padding-bottom: clamp(5.25rem, 10vw, 8.75rem);
}

.cta-feature {
  position: relative;
  max-width: 58rem;
  margin: 0 auto;
  padding: clamp(3.25rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 3.75rem);
  border-radius: 2rem;
  text-align: center;
  border: 1px solid #d5e1ef;
  background:
    radial-gradient(110% 95% at 50% -20%, rgba(0, 113, 227, 0.13), rgba(0, 113, 227, 0) 58%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
  box-shadow: 0 14px 36px rgba(15, 36, 66, 0.1);
}

.cta-feature .eyebrow {
  margin-bottom: var(--space-md);
  color: #415c7a;
  opacity: 1;
}

.cta-feature h2 {
  margin: 0 auto var(--space-md);
  max-width: 20ch;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.032em;
  color: #0d1620;
}

.cta-lead {
  margin: 0 auto;
  max-width: 45ch;
  font-size: clamp(1rem, 1.2vw + 0.8rem, 1.22rem);
  line-height: 1.42;
  color: #4b5f74;
}

.cta-intent {
  margin-top: clamp(1.75rem, 3.4vw, 2.5rem);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-cta-main {
  min-height: 2.75rem;
  padding-inline: 1.45rem;
  font-size: 1rem;
  font-weight: 600;
}

.cta-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #0a67c6;
  font-weight: 500;
  letter-spacing: -0.012em;
}

.cta-inline span {
  transition: transform 180ms ease;
}

.cta-inline:hover span {
  transform: translateX(2px);
}

.hero-shell {
  background: linear-gradient(145deg, #fafdff, #eef4fb);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-soft);
}

.hero-copy p {
  font-size: clamp(1.02rem, 1.8vw, 1.22rem);
}

.hero-cta { margin-top: 16px; display: flex; gap: 10px; flex-wrap: wrap; }

.hero-media {
  position: relative;
}

.media-frame {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  background: #e9edf2;
  box-shadow: var(--shadow-soft);
}

.media-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-photo-wide {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.trust-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #415061;
  font-size: 12px;
  font-weight: 700;
}

.proof-strip {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.proof-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 13px;
  color: #324154;
  font-weight: 700;
  text-align: center;
}

.card {
  background: var(--surface);
  border: 1px solid #e6ecf3;
  border-radius: 1.5rem;
  padding: var(--card-p);
  box-shadow: var(--shadow-soft);
}

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

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.price {
  margin: 0;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.price small {
  margin-left: 4px;
  color: var(--text-3);
  font-size: 0.75em;
  line-height: 1;
  letter-spacing: 0;
}

.list { margin: 0; padding-left: 0; list-style: none; color: #334253; }
.list li { margin-bottom: 8px; padding-left: 22px; position: relative; }
.list li::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  color: #2a6b99;
  font-weight: 800;
}

.how-step .flat-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.service-card .flat-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 12px;
}

.pricing-preview .card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid #dce6f3;
}

.pricing-preview strong {
  font-size: 2rem;
  letter-spacing: -0.03em;
  color: #142537;
}

.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

input, select, textarea {
  width: 100%;
  border: 1px solid #cfd7e2;
  border-radius: 12px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
}

input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(10, 114, 184, 0.35);
  outline-offset: 1px;
}

textarea { min-height: 120px; resize: vertical; }

.status {
  margin-top: 10px;
  min-height: 20px;
  font-weight: 700;
  color: #0a5f99;
}

.footer {
  border-top: 1px solid var(--line);
  text-align: center;
  color: #667789;
  font-size: 12px;
  padding: 24px 0 30px;
}

.footer .line2 { margin-top: 6px; }

.mobile-sticky {
  display: none;
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 70;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  background: rgba(13, 20, 28, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 8px;
}

.mobile-sticky .btn { width: 100%; }

/* Non-home page component set aligned with homepage visual language */
:root {
  --page-space-2xs: 0.5rem;
  --page-space-xs: 0.75rem;
  --page-space-sm: 1rem;
  --page-space-md: 1.5rem;
  --page-space-lg: 2rem;
  --page-space-xl: 3rem;
  --page-space-2xl: 4.5rem;
}

.section-page {
  padding: var(--page-space-2xl) 0;
}

.section-page-tight {
  padding: var(--page-space-xl) 0;
}

.nav + .section-page,
.nav + .section-edge,
.nav + .section-page-tight {
  padding-top: clamp(0.85rem, 2.8vw, 1.4rem);
}

.stack-2xs > * + * { margin-top: var(--page-space-2xs); }
.stack-xs > * + * { margin-top: var(--page-space-xs); }
.stack-sm > * + * { margin-top: var(--page-space-sm); }
.stack-md > * + * { margin-top: var(--page-space-md); }
.stack-lg > * + * { margin-top: var(--page-space-lg); }
.stack-xl > * + * { margin-top: var(--page-space-xl); }

.space-top-sm { margin-top: var(--page-space-sm); }
.space-top-md { margin-top: var(--page-space-md); }
.space-top-lg { margin-top: var(--page-space-lg); }
.space-top-xl { margin-top: var(--page-space-xl); }

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 2rem;
  border: 1px solid #d6e1ee;
  padding: clamp(2.5rem, 5vw, 4.75rem) clamp(1.1rem, 4.4vw, 3.2rem);
  background:
    radial-gradient(120% 90% at 12% -24%, rgba(0, 113, 227, 0.18), rgba(0, 113, 227, 0) 58%),
    linear-gradient(180deg, #f9fcff 0%, #f0f5fb 100%);
  box-shadow: 0 18px 36px rgba(14, 38, 66, 0.1);
}

.page-hero h1,
.page-hero h2,
.page-hero p,
.page-hero .eyebrow {
  margin-inline: auto;
  text-align: center;
}

.page-hero h1,
.page-hero h2 {
  max-width: 12ch;
}

.page-hero p {
  max-width: 58ch;
}

.page-hero .hero-links {
  margin-top: var(--page-space-lg);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

body.page-pricing .page-hero h1,
body.page-portfolio .page-hero h1,
body.page-websites .page-hero h1 {
  max-width: 10ch;
}

.page-hero--compact {
  padding-block: clamp(2.1rem, 4vw, 3.4rem);
}

.page-hero--dark {
  border-color: rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(5, 18, 31, 0.64), rgba(5, 18, 31, 0.64)),
    linear-gradient(165deg, #07111d 0%, #0b1e33 45%, #12395f 100%);
  color: #fff;
}

.page-hero--dark p,
.page-hero--dark .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.page-hero--dark .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.82);
}

.page-hero--dark .btn-secondary:hover {
  background: #fff;
  border-color: #fff;
  color: #10161e;
}

.page-hero--dark .btn-primary {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.page-hero--dark .btn-primary:hover {
  background: #f2f5f8;
  border-color: #f2f5f8;
}

.page-hero--light {
  background:
    radial-gradient(145% 95% at 50% -36%, rgba(0, 113, 227, 0.12), rgba(0, 113, 227, 0) 62%),
    linear-gradient(180deg, #fcfdff 0%, #f4f8fd 100%);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1rem, 2.8vw, 3rem);
  align-items: center;
}

.split-section--reverse > :first-child {
  order: 2;
}

.split-section--reverse > :last-child {
  order: 1;
}

.split-content {
  display: grid;
  gap: var(--page-space-sm);
}

.split-content .eyebrow {
  margin: 0;
  text-align: left;
}

.split-content h2 {
  margin: 0;
  max-width: 17ch;
}

.split-content p {
  margin: 0;
  max-width: 50ch;
}

.split-media {
  border-radius: 1.35rem;
  overflow: hidden;
  border: 1px solid #d6e0ec;
  box-shadow: var(--shadow-card);
  background: #dfe8f3;
}

.split-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  border: 1px solid #d8e2ee;
  border-radius: 1.2rem;
  padding: clamp(0.9rem, 1.8vw, 1.5rem);
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fe 100%);
  box-shadow: var(--shadow-soft);
}

.metric-item {
  display: grid;
  gap: var(--page-space-2xs);
  border-radius: 0.95rem;
  padding: clamp(0.7rem, 1vw, 0.95rem);
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.metric-value {
  margin: 0;
  color: #112131;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.metric-label {
  margin: 0;
  color: #3d5268;
  font-size: 0.9rem;
  line-height: 1.3;
}

.cta-band-elevated {
  border-radius: 1.75rem;
  border: 1px solid #d5e1ef;
  padding: clamp(1.5rem, 3.8vw, 3.2rem);
  background:
    radial-gradient(120% 120% at 50% -20%, rgba(0, 113, 227, 0.16), rgba(0, 113, 227, 0) 62%),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 100%);
  box-shadow: 0 16px 34px rgba(12, 36, 62, 0.12);
}

.cta-band-elevated .eyebrow {
  text-align: left;
  margin: 0 0 var(--page-space-xs);
  color: #3f5872;
}

.cta-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--page-space-md);
  align-items: center;
}

.cta-band-copy h2 {
  margin: 0 0 var(--page-space-xs);
  max-width: 18ch;
}

.cta-band-copy p {
  margin: 0;
  max-width: 48ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
}

.form-shell-premium {
  border: 1px solid #d5e1ef;
  border-radius: 1.45rem;
  padding: clamp(1.1rem, 3.2vw, 2.1rem);
  background:
    radial-gradient(150% 90% at 30% -28%, rgba(0, 113, 227, 0.12), rgba(0, 113, 227, 0) 58%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: var(--shadow-soft);
}

.form-shell-premium h2,
.form-shell-premium h3 {
  margin-bottom: var(--page-space-xs);
}

.form-shell-premium p {
  margin-bottom: var(--page-space-md);
}

.form-shell-premium form {
  display: grid;
  gap: var(--page-space-sm);
}

.form-shell-premium .form-grid {
  gap: var(--page-space-xs);
}

.form-shell-premium label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2b3f53;
  margin-bottom: 0.35rem;
}

.form-shell-premium input,
.form-shell-premium select,
.form-shell-premium textarea {
  border-color: #c7d4e3;
  background: rgba(255, 255, 255, 0.92);
}

.form-shell-premium input:focus,
.form-shell-premium select:focus,
.form-shell-premium textarea:focus {
  outline: none;
  border-color: #2f7ecf;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.17);
}

.form-shell-premium .btn {
  min-height: var(--btn-h);
}

/* Premium imagery system: consistent treatment with page-level accents */
:root {
  --media-radius: 1.35rem;
  --media-border: 1px solid rgba(214, 224, 236, 0.9);
  --media-overlay-top: rgba(9, 20, 32, 0.08);
  --media-overlay-bottom: rgba(9, 20, 32, 0.38);
  --shadow-media: 0 12px 30px rgba(8, 24, 40, 0.14);
  --shadow-media-hover: 0 18px 36px rgba(8, 24, 40, 0.2);
  --shadow-card-rest: 0 8px 24px rgba(10, 28, 46, 0.08);
  --shadow-card-hover: 0 14px 30px rgba(10, 28, 46, 0.15);
  --page-accent-1: 0 113 227;
  --page-accent-2: 14 165 233;
}

body.page-websites { --page-accent-1: 0 113 227; --page-accent-2: 14 165 233; }
body.page-pricing { --page-accent-1: 40 95 170; --page-accent-2: 84 147 214; }
body.page-portfolio { --page-accent-1: 44 127 184; --page-accent-2: 16 70 120; }
body.page-monthly { --page-accent-1: 16 121 109; --page-accent-2: 59 173 150; }
body.page-print { --page-accent-1: 171 82 35; --page-accent-2: 219 126 58; }
body.page-contact,
body.page-quote,
body.page-audit,
body.page-faq,
body.page-thanks { --page-accent-1: 64 100 152; --page-accent-2: 106 139 189; }

/* Per-page hero photography to avoid text-only inner pages */
body.page-websites .page-hero--dark {
  background:
    linear-gradient(180deg, rgba(4, 16, 30, 0.66), rgba(4, 16, 30, 0.66)),
    url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-monthly .page-hero--light {
  background:
    linear-gradient(180deg, rgba(250, 253, 255, 0.86), rgba(244, 250, 254, 0.9)),
    url("https://images.unsplash.com/photo-1551281044-8b5bd6f3a8a0?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-pricing .page-hero--light {
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.9), rgba(245, 249, 254, 0.9)),
    url("https://images.unsplash.com/photo-1554224155-6726b3ff858f?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-portfolio .page-hero--dark {
  background:
    linear-gradient(180deg, rgba(7, 18, 32, 0.66), rgba(7, 18, 32, 0.66)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-print .page-hero--dark {
  background:
    linear-gradient(180deg, rgba(33, 16, 8, 0.62), rgba(33, 16, 8, 0.62)),
    url("https://images.unsplash.com/photo-1586704849707-a72eb0e4c2f0?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-faq .page-hero--light {
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.9), rgba(245, 249, 254, 0.9)),
    url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-contact .page-hero--compact {
  background:
    linear-gradient(180deg, rgba(251, 253, 255, 0.9), rgba(243, 248, 253, 0.9)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

body.page-contact .panel-social {
  background-image:
    radial-gradient(130% 90% at 12% 8%, rgba(88, 148, 214, 0.42), rgba(88, 148, 214, 0)),
    linear-gradient(160deg, #0d2339 0%, #184469 100%);
}

body.page-contact .panel-monthly {
  background-image:
    radial-gradient(120% 90% at 78% 18%, rgba(95, 154, 217, 0.36), rgba(95, 154, 217, 0)),
    linear-gradient(160deg, #0f2d47 0%, #1e567f 100%);
}

body.page-contact .panel-social::before,
body.page-contact .panel-monthly::before {
  background: linear-gradient(180deg, rgba(7, 20, 34, 0.25), rgba(7, 20, 34, 0.42));
}

body.page-audit .page-hero--light {
  background:
    linear-gradient(180deg, rgba(252, 253, 255, 0.9), rgba(246, 250, 254, 0.9)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=2200&q=80") center/cover no-repeat;
}

.img-premium,
.media-frame,
.split-media {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--media-radius);
  border: var(--media-border);
  box-shadow: var(--shadow-media);
  background: #dfe8f3;
}

.img-premium::after,
.media-frame::after,
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, var(--media-overlay-top) 0%, transparent 42%, var(--media-overlay-bottom) 100%);
  opacity: 0.64;
}

.img-premium:hover,
.media-frame:hover,
.split-media:hover {
  transform: translateY(-4px) scale(1.005);
  box-shadow: var(--shadow-media-hover);
}

.img-premium > img,
.media-frame > img,
.split-media > img,
.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

.media-ratio-21x9 { aspect-ratio: 21 / 9; }
.media-ratio-16x10 { aspect-ratio: 16 / 10; }
.media-ratio-3x2 { aspect-ratio: 3 / 2; }
.media-ratio-4x3 { aspect-ratio: 4 / 3; }
.media-ratio-1x1 { aspect-ratio: 1 / 1; }

.media-frame.media-ratio-21x9 > img,
.media-frame.media-ratio-16x10 > img,
.media-frame.media-ratio-3x2 > img,
.media-frame.media-ratio-4x3 > img,
.media-frame.media-ratio-1x1 > img,
.split-media.media-ratio-21x9 img,
.split-media.media-ratio-16x10 img,
.split-media.media-ratio-3x2 img,
.split-media.media-ratio-4x3 img,
.split-media.media-ratio-1x1 img {
  aspect-ratio: inherit;
}

.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  box-shadow: var(--shadow-card-rest);
}

.card::before { content: none; }

.card:hover {
  box-shadow: 0 20px 42px rgba(10, 28, 45, 0.16);
  transform: translateY(-4px) scale(1.005);
}

.page-hero,
.hero-billboard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero > *,
.hero-billboard > * {
  position: relative;
  z-index: 1;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -25% -10% auto;
  height: 65%;
  background: radial-gradient(60% 80% at 50% 0%, rgba(10, 132, 255, 0.35), rgba(10, 132, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.page-hero::after,
.hero-billboard::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(140% 80% at 50% -16%, rgba(var(--page-accent-1) / 0.18) 0%, rgba(var(--page-accent-1) / 0) 62%),
    radial-gradient(100% 64% at 90% 100%, rgba(var(--page-accent-2) / 0.14) 0%, rgba(var(--page-accent-2) / 0) 70%);
  z-index: 0;
}

.media-overlay-soft::after { opacity: 0.45; }
.media-overlay-strong::after { opacity: 0.8; }
.shadow-lift-1 { box-shadow: var(--shadow-soft); }
.shadow-lift-2 { box-shadow: var(--shadow-media); }
.shadow-lift-3 { box-shadow: var(--shadow-media-hover); }

.compare-matrix-shell {
  border: 1px solid #d6e1ee;
  border-radius: 1.5rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f4f8fd 100%);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.6vw, 1.9rem);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-title {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 0.75rem;
}

.compare-matrix {
  width: 100%;
  min-width: 42rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-matrix th,
.compare-matrix td {
  padding: 0.72rem 0.64rem;
  border-bottom: 1px solid #dce6f2;
  text-align: left;
  vertical-align: top;
}

.compare-matrix thead th {
  color: #132133;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-matrix tbody th {
  color: #24384d;
  font-weight: 600;
  width: 25%;
}

.compare-mobile-deck {
  display: none;
  gap: 0.9rem;
}

.compare-product {
  border-radius: 1.45rem;
  border: 1px solid #d6e1ee;
  background:
    radial-gradient(140% 80% at 0% -20%, rgba(0, 113, 227, 0.11), rgba(0, 113, 227, 0)),
    linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  padding: 1rem 1rem 1.1rem;
  box-shadow: var(--shadow-soft);
}

.compare-product h3 {
  margin: 0 0 0.25rem;
}

.compare-product .price {
  font-size: clamp(1.85rem, 8vw, 2.6rem);
}

.compare-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.compare-points li {
  color: #33475c;
  font-size: 1rem;
  line-height: 1.35;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.catalog-grid-3x2 .catalog-tile {
  min-height: 15rem;
}

.catalog-tile {
  border-radius: 1.4rem;
  border: 1px solid #d6e1ee;
  background:
    radial-gradient(100% 60% at 0% -10%, rgba(0, 113, 227, 0.1), transparent 65%),
    linear-gradient(180deg, #fefeff 0%, #f5f9fd 100%);
  padding: clamp(1rem, 2.1vw, 1.5rem);
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: space-between;
  gap: 0.75rem;
  min-height: 16.5rem;
}

.catalog-tile h3 {
  margin: 0;
  max-width: 14ch;
}

.catalog-tile p {
  margin: 0;
  max-width: 35ch;
}

.process-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.process-step {
  border: 1px solid #d6e1ee;
  border-radius: 1.45rem;
  background:
    radial-gradient(120% 80% at 0% -14%, rgba(0, 113, 227, 0.08), rgba(0, 113, 227, 0)),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  box-shadow: var(--shadow-soft);
  padding: 1.2rem 1.15rem 1.25rem;
  min-height: 13rem;
}

.process-kicker {
  margin: 0 0 0.45rem;
  color: #3d5772;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.72rem;
  font-weight: 700;
}

.process-step h3 {
  margin: 0 0 0.45rem;
}

.process-step p {
  margin: 0;
  font-size: 0.98rem;
  color: #3a4d61;
}

.faq-search-shell {
  margin-top: 1.25rem;
}

.faq-search-shell input {
  max-width: 34rem;
  margin: 0 auto;
  display: block;
  background: rgba(255, 255, 255, 0.88);
}

.faq-search-note {
  margin-top: 0.55rem;
  font-size: 0.875rem;
  color: #4a6076;
  text-align: center;
}

.faq-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-groups--single {
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin-inline: auto;
}

.faq-group h3 {
  margin-bottom: 0.5rem;
}

.faq-item + .faq-item {
  padding-top: 0.65rem;
  border-top: 1px solid #e2e9f2;
}

.faq-item h4 {
  margin: 0 0 0.35rem;
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.faq-item p {
  margin: 0;
  font-size: 0.98rem;
}

.faq-accordion {
  display: grid;
  gap: 0.75rem;
}

.faq-accordion details {
  border: 1px solid #d8e2ee;
  border-radius: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  padding: 0.85rem 1rem;
}

.faq-accordion summary {
  cursor: pointer;
  font-size: 1.02rem;
  font-weight: 700;
  color: #111f2f;
  list-style: none;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion p {
  margin-top: 0.6rem;
}

.spotlight-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: stretch;
  border: 1px solid #d6e1ee;
  border-radius: 1.6rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6fafd 100%);
  box-shadow: var(--shadow-card-rest);
}

.spotlight-copy {
  display: grid;
  align-content: center;
  gap: 0.8rem;
}

.spotlight-copy .eyebrow {
  margin: 0;
  text-align: left;
}

.spotlight-copy h2 {
  margin: 0;
  max-width: 14ch;
}

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

.masonry-card {
  min-height: 11.5rem;
  display: grid;
  align-content: start;
  gap: 0.6rem;
}

.pricing-stack {
  display: grid;
  gap: 0.9rem;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
}

.product-tier-grid .card {
  min-height: clamp(24rem, 48vw, 29rem);
  display: grid;
  align-content: start;
  gap: 0.9rem;
}

.pricing-row .eyebrow {
  margin: 0 0 0.35rem;
  text-align: left;
}

.pricing-row h3 {
  margin: 0 0 0.4rem;
}

.guided-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
}

.guided-progress span {
  border: 1px solid #d5dfec;
  border-radius: 999px;
  padding: 0.42rem 0.55rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
  color: #3d5268;
  background: rgba(255, 255, 255, 0.78);
}

.guided-step {
  border: 1px solid #d8e2ee;
  border-radius: 1rem;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.8);
}

.guided-step legend {
  font-size: 0.88rem;
  font-weight: 700;
  color: #2b3f54;
  padding: 0 0.25rem;
}

/* Apple-style chapter rows and rails to avoid card-only layouts */
.section-edge {
  padding: clamp(3rem, 5vw, 6rem) 0;
}

.chapter-head {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto clamp(1.6rem, 3vw, 2.75rem);
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.75rem;
}

.chapter-head h2 {
  margin: 0;
  max-width: 18ch;
}

.chapter-head p {
  margin: 0;
  max-width: 52ch;
}

.edge-bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

.chapter-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

.chapter-panel {
  position: relative;
  min-height: clamp(26rem, 44vw, 40rem);
  overflow: hidden;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--tile-pad);
}

.chapter-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 22, 36, 0.12), rgba(10, 22, 36, 0.6));
}

.chapter-panel-copy {
  position: relative;
  z-index: 1;
  width: min(100%, var(--tile-copy-max));
  margin-inline: auto;
  padding-block: clamp(3rem, 9.5vw, 5rem);
  color: #fff;
  text-align: center;
}

.chapter-panel-copy h3 {
  margin: 0 0 1rem;
  max-inline-size: var(--tile-head-max);
  margin-inline: auto;
  color: #fff;
  font-size: clamp(2.4rem, 3.3vw, 3.1rem);
  letter-spacing: var(--tile-title-track);
  line-height: var(--tile-title-line);
  font-weight: var(--tile-title-weight);
}

.chapter-panel-copy p {
  margin: 0 0 1.5rem;
  max-width: var(--tile-sub-max);
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.14rem, 0.36vw + 1rem, 1.28rem);
  line-height: var(--tile-body-line);
  letter-spacing: var(--tile-body-track);
}

.chapter-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.catalog-tile .btn {
  justify-self: flex-start;
}

.chapter-panel .btn-primary {
  color: #111;
  background: #fff;
  border-color: #fff;
}

.chapter-panel .btn-primary:hover {
  color: #111;
  background: #f4f6f9;
  border-color: #f4f6f9;
}

.chapter-panel .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.88);
  background: transparent;
}

.chapter-panel .btn-secondary:hover {
  color: #111;
  border-color: #fff;
  background: #fff;
}

.panel-website {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?auto=format&fit=crop&w=2200&q=80");
}

.panel-hosting {
  background-image: url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?auto=format&fit=crop&w=2200&q=80");
}

.panel-social {
  background-image: url("https://images.unsplash.com/photo-1611162617474-5b21e879e113?auto=format&fit=crop&w=2200&q=80");
}

.panel-print {
  background-image: url("https://images.unsplash.com/photo-1572044162444-ad60f128bdea?auto=format&fit=crop&w=2200&q=80");
}

.panel-portfolio {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=2200&q=80");
}

.panel-monthly {
  background-image: url("https://images.unsplash.com/photo-1551281044-8b5bd6f3a8a0?auto=format&fit=crop&w=2200&q=80");
}

.swipe-rail {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 1rem 0.5rem;
}

.swipe-rail-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(17rem, 22rem);
  gap: 0.75rem;
}

.swipe-card {
  scroll-snap-align: start;
  border-radius: 1rem;
  border: 1px solid #d6e1ee;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9fd 100%);
  min-height: 15rem;
  padding: 1rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.swipe-card h3,
.swipe-card p {
  margin: 0;
}

.icon-card::before {
  font-family: "Material Symbols Rounded";
  font-size: 1.5rem;
  line-height: 1;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0a63bf;
  background: rgba(0, 113, 227, 0.1);
  border: 1px solid rgba(0, 113, 227, 0.24);
  margin-bottom: 0.6rem;
}

.icon-speed::before { content: "bolt"; }
.icon-mobile::before { content: "smartphone"; }
.icon-trust::before { content: "verified"; }
.icon-path::before { content: "gesture"; }
.icon-chat::before { content: "forum"; }
.icon-mail::before { content: "mail"; }
.icon-globe::before { content: "public"; }
.icon-check::before { content: "task_alt"; }
.icon-launch::before { content: "rocket_launch"; }
.icon-process::before { content: "conversion_path"; }
.icon-performance::before { content: "monitoring"; }
.icon-identity::before { content: "style"; }
.icon-bundle::before { content: "deployed_code"; }
.icon-reframe::before { content: "tune"; }

@media (max-width: 66.25rem) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .metric-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-inner {
    grid-template-columns: 1fr;
  }

  .cta-band-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 61.25rem) {
  .hero,
  .split-section,
  .grid-2,
  .grid-3,
  .form-grid,
  .proof-strip,
  .faq,
  .catalog-grid,
  .masonry-grid,
  .faq-groups,
  .process-strip { grid-template-columns: 1fr; }
  .pricing-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .spotlight-card {
    grid-template-columns: 1fr;
  }
  .chapter-grid-2 {
    grid-template-columns: 1fr;
  }
  .chapter-panel { min-height: clamp(31rem, 78vh, 41rem); }
  body.page-contact .chapter-panel { min-height: clamp(18rem, 42vh, 24rem); }
  .swipe-rail {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    overflow-x: auto;
    padding: 0 1rem 0.5rem;
  }
  .swipe-rail-track {
    grid-auto-flow: column;
    grid-auto-columns: minmax(17.5rem, 82vw);
    grid-template-columns: none;
  }
  .swipe-card {
    min-height: 15rem;
    align-content: start;
  }
  .nav-links { display: none; }
  .nav-inner > .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-panel {
    position: fixed;
    inset: 0;
    top: 72px;
    z-index: 45;
    display: grid;
    align-content: start;
    background: rgba(238, 244, 251, 0.95);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(215, 222, 232, 0.88);
  }
  .nav-panel[hidden] {
    display: none;
  }
  .nav-panel-inner {
    margin-top: 0.75rem;
    background: rgba(248, 251, 255, 0.96);
    border: 1px solid #d8e2ee;
    border-radius: 1.25rem;
    padding: 1.1rem 0.9rem 1rem;
    box-shadow: 0 20px 32px rgba(8, 25, 44, 0.14);
  }
  .nav-panel-links {
    display: grid;
    gap: 0.25rem;
  }
  .nav-panel-links a {
    display: block;
    padding: 0.72rem 0.75rem;
    border-radius: 0.75rem;
    color: #152232;
    font-size: 1.0625rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .nav-panel-links a:hover,
  .nav-panel-links a:focus-visible {
    background: rgba(0, 113, 227, 0.08);
    outline: none;
  }
  .nav-panel-cta {
    margin-top: 0.9rem;
    padding-top: 0.9rem;
    border-top: 1px solid #d8e2ee;
  }
  .nav-panel-cta .btn {
    width: 100%;
    min-height: 2.5rem;
  }
  .nav.nav-open .nav-toggle-line:first-child {
    transform: translateY(0.21875rem) rotate(45deg);
  }
  .nav.nav-open .nav-toggle-line:last-child {
    transform: translateY(-0.21875rem) rotate(-45deg);
  }
}

@media (max-width: 48rem) {
  .section-page {
    padding: var(--mobile-section-gap) 0;
  }
  .section-page + .section-edge {
    padding-top: 0.5rem;
  }
  .section-edge {
    padding-block: clamp(2.5rem, 9vw, 3.5rem);
  }
  .service-grid { grid-template-columns: 1fr; }

  .page-hero {
    border-radius: 1.35rem;
    padding: clamp(2.15rem, 8.5vw, 3rem) 1.1rem;
  }

  .page-hero h1 {
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 0.8rem;
  }

  .page-hero p {
    line-height: 1.4;
  }

  .chapter-head {
    margin-bottom: clamp(1.8rem, 7vw, 2.5rem);
    gap: 0.95rem;
  }

  .chapter-head h2 {
    font-size: clamp(2.2rem, 9vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.03em;
  }

  .chapter-panel {
    border-radius: 0;
  }

  .chapter-panel-copy {
    padding-block: clamp(2.7rem, 12vw, 4rem);
  }

  .chapter-panel-copy h3 {
    font-size: clamp(2.2rem, 9.5vw, 2.95rem);
  }

  .catalog-tile,
  .process-step,
  .swipe-card,
  .pricing-row.card {
    min-height: 14.75rem;
  }

  .product-tier-grid .card {
    min-height: clamp(22.5rem, 78vw, 25.5rem);
  }

  .compare-mobile-deck {
    display: grid;
  }

  .compare-matrix {
    display: none;
    min-width: 0;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }
  .guided-progress {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-band-elevated {
    border-radius: 1.2rem;
  }

  .tile-content {
    padding-top: var(--tile-edge-inset-mobile);
  }

  .tile-social .tile-content,
  .tile-print .tile-content {
    padding-bottom: var(--tile-edge-inset-mobile);
  }

  .tile-actions {
    gap: 0.625rem;
  }

  .cta-feature {
    border-radius: 1.4rem;
    padding-inline: 1.1rem;
  }

  .cta-intent {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-cta-main {
    width: 100%;
  }

  .hero-billboard.light h2 { max-inline-size: 13ch; }
  .hero-billboard.light .hero-sub { max-inline-size: 34ch; }

  .img-premium,
  .media-frame,
  .split-media,
  .card {
    box-shadow: var(--shadow-soft);
  }
}

@media (min-width: 48.0625rem) and (max-width: 64rem) {
  .hero-billboard.light h2 { max-inline-size: 15ch; }
  .hero-billboard.light .hero-sub { max-inline-size: 36ch; }
}

@media (max-width: 47.5rem) {
  .hero-cta { display: grid; grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .mobile-sticky { display: grid; }
  body { padding-bottom: 86px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
/* === 2026 Design Reset: page personalities + guided flow + subtle motion === */
:root {
  --rhythm-hero: clamp(4.5rem, 8vw, 7.5rem);
  --rhythm-section-xl: clamp(3.5rem, 6vw, 5.5rem);
  --rhythm-section-lg: clamp(2.5rem, 4vw, 4rem);
  --rhythm-section-md: clamp(1.75rem, 3vw, 2.75rem);
  --rhythm-section-sm: clamp(1.25rem, 2vw, 1.75rem);
  --surface-alt-1: #f8fafc;
  --surface-alt-2: #eef3f8;
  --media-radius: 24px;
  --media-shadow: 0 10px 30px rgba(16, 24, 40, 0.14);
}

.section-stack[data-rhythm="xl"] { padding-block: var(--rhythm-section-xl); }
.section-stack[data-rhythm="lg"] { padding-block: var(--rhythm-section-lg); }
.section-stack[data-rhythm="md"] { padding-block: var(--rhythm-section-md); }
.section-stack[data-rhythm="sm"] { padding-block: var(--rhythm-section-sm); }

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms cubic-bezier(0.22, 1, 0.36, 1), transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

.home-wow {
  position: relative;
  overflow: clip;
  padding-block: var(--rhythm-hero);
  background:
    radial-gradient(42rem 28rem at 8% -5%, rgba(0, 113, 227, 0.28), rgba(0, 113, 227, 0)),
    radial-gradient(44rem 24rem at 96% 12%, rgba(20, 80, 148, 0.24), rgba(20, 80, 148, 0)),
    linear-gradient(165deg, #07111c 0%, #0e1d31 52%, #163d66 100%);
  color: #fff;
}
.home-wow .hero-center { position: relative; z-index: 2; }
.home-wow h1 { max-width: 10.5ch; }
.home-wow .hero-sub { max-width: 58ch; }

.proof-ribbon {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}
.proof-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  padding: 0.56rem 0.75rem;
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.home-proof-band {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
  border-top: 1px solid #d7e3ef;
  border-bottom: 1px solid #d7e3ef;
}
.home-proof-grid {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.home-proof-item {
  background: #fff;
  border: 1px solid #d7e3ef;
  border-radius: 1rem;
  padding: 1rem;
}
.home-proof-item strong { display: block; font-size: 1.5rem; margin-bottom: 0.2rem; }

.launch-machine-band {
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
  border-top: 1px solid #d7e3ef;
  border-bottom: 1px solid #d7e3ef;
}
.launch-machine-shell {
  border: 1px solid #d7e3ef;
  border-radius: 1.2rem;
  background: #fff;
  padding: clamp(1rem, 2.8vw, 1.6rem);
}
.launch-machine-shell h2 {
  margin: 0 0 0.5rem;
}
.addon-chip-row {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.addon-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #c8d8ea;
  background: #f7fbff;
  padding: 0.4rem 0.7rem;
  font-size: 0.82rem;
  color: #30475f;
  font-weight: 600;
}

.services-diagnose {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}
.persona-option {
  border-radius: 1.25rem;
  border: 1px solid #d8e2ee;
  padding: 1.15rem;
  background: linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  display: grid;
  gap: 0.8rem;
  align-content: start;
  min-height: clamp(25rem, 42vw, 29rem);
}
.persona-option h3 { margin: 0; font-size: clamp(1.6rem, 2.3vw, 2.1rem); }
.persona-option p { margin: 0; }
.persona-option ul { margin: 0; padding-left: 1rem; color: #3c5167; display: grid; gap: 0.48rem; }
.persona-kicker {
  font-size: 0.77rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4c6076;
  font-weight: 700;
}
.persona-option.recommended {
  border-color: rgba(0, 113, 227, 0.42);
  background: linear-gradient(165deg, #f5fbff 0%, #e8f2fe 100%);
  box-shadow: 0 14px 30px rgba(0, 113, 227, 0.18);
}
.badge-recommended {
  justify-self: start;
  border-radius: 999px;
  background: #0071e3;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.34rem 0.62rem;
}

.process-timeline {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.timeline-step {
  border: 1px solid #d6e1ee;
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f4f8fd 100%);
}
.timeline-step .step { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: #4a6075; }

.guided-flow {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  border: 1px solid #d7e3ef;
  border-radius: 1.4rem;
  background: #fff;
  overflow: hidden;
}
.guided-flow-head {
  padding: clamp(1.1rem, 2.6vw, 2rem);
  background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
  border-bottom: 1px solid #d7e3ef;
}
.guided-path {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem;
}
.path-card {
  border: 1px solid #d8e2ee;
  border-radius: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  display: grid;
  gap: 0.65rem;
}
.path-card.recommended {
  border-color: rgba(0, 113, 227, 0.44);
  background: linear-gradient(160deg, #eff7ff 0%, #e4f0ff 100%);
  box-shadow: 0 12px 24px rgba(0, 113, 227, 0.14);
}
.path-price { font-size: clamp(2rem, 5vw, 2.8rem); margin: 0; }
.path-meta { color: #4a6076; font-size: 0.92rem; margin: 0; }
.path-risk {
  margin: 0;
  color: #24364a;
  font-size: 0.92rem;
}

.portfolio-cinema {
  background:
    linear-gradient(180deg, rgba(7, 18, 30, 0.9), rgba(7, 18, 30, 0.86)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=2200&q=80") center/cover;
  color: #fff;
}
.case-strip {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}
.case-cell {
  border-radius: 1rem;
  min-height: 20rem;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.case-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.02);
}
.case-cell .case-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(8, 20, 33, 0), rgba(8, 20, 33, 0.82));
  color: #fff;
}

.outcome-grid {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}
.outcome-tile {
  border: 1px solid #d7e2ee;
  border-radius: 1.1rem;
  padding: 1rem;
  background: linear-gradient(180deg, #fff 0%, #f5f9fd 100%);
}
.outcome-value { display: block; font-size: 2rem; font-weight: 700; margin-bottom: 0.2rem; }

.faq-confidence-grid {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}
.confidence-card {
  border: 1px solid #d7e2ee;
  border-radius: 1rem;
  padding: 0.9rem;
  background: linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}
.faq-search-meta {
  margin-top: 0.5rem;
  color: #4b6076;
  font-size: 0.9rem;
}
.faq-no-results {
  margin-top: 0.85rem;
  padding: 0.8rem;
  border: 1px dashed #b8cadf;
  border-radius: 0.8rem;
  color: #2f465d;
  font-size: 0.95rem;
}
.faq-no-results[hidden] { display: none; }

.contact-intent-band {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  border: 1px solid #d6e2ef;
  border-radius: 1.25rem;
  background: linear-gradient(165deg, #f3f8ff 0%, #eaf2fc 100%);
  padding: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  gap: 0.75rem;
}
.contact-method-grid {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0.85rem;
}
.contact-method {
  border: 1px solid #d8e2ee;
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
}
.contact-method.dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(5, 20, 36, 0.75), rgba(5, 20, 36, 0.8)),
    url("https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1600&q=80") center/cover;
}
.contact-method.dark .btn-primary { background: #fff; color: #111; border-color: #fff; }
.contact-method.dark .btn-secondary { color: #fff; border-color: rgba(255,255,255,0.88); }

[data-animate="lift"] {
  transition: transform 220ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 220ms cubic-bezier(0.2, 0.8, 0.2, 1), border-color 220ms ease;
}
[data-animate="lift"]:hover,
[data-animate="lift"]:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(17, 36, 58, 0.16);
}

.btn {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background-color 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
}
.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

@media (max-width: 61.25rem) {
  .proof-ribbon,
  .home-proof-grid,
  .services-diagnose,
  .process-timeline,
  .guided-path,
  .case-strip,
  .faq-confidence-grid {
    grid-template-columns: 1fr;
  }

  .contact-method-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .persona-option {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .btn,
  [data-animate="lift"] {
    transition-duration: 80ms !important;
    transform: none !important;
    animation: none !important;
  }
}
