:root {
  --bg: #030712;
  --surface: rgba(15, 23, 42, 0.65);
  --surface-strong: #0f172a;
  --line: rgba(255, 255, 255, 0.08);
  --text: #f8fafc;
  --muted: #94a3b8;
  --accent: #00f0ff;
  --accent-strong: #0066ff;
  --accent-soft: rgba(0, 240, 255, 0.12);
  --shadow-lg: 0 24px 70px rgba(0, 0, 0, 0.6);
  --shadow-md: 0 14px 34px rgba(0, 0, 0, 0.4);
  --glow: 0 0 30px rgba(0, 240, 255, 0.2);
  --pill-text: #000;
  --logo-bg: #fff;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1240px, calc(100% - 32px));
}

html[data-theme="light"] {
  --bg: #eef4fb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --line: rgba(15, 23, 42, 0.16);
  --text: #102038;
  --muted: #3f536f;
  --accent: #0ea5e9;
  --accent-strong: #2563eb;
  --accent-soft: rgba(37, 99, 235, 0.1);
  --shadow-lg: 0 20px 44px rgba(17, 24, 39, 0.12);
  --shadow-md: 0 12px 26px rgba(17, 24, 39, 0.08);
  --glow: 0 0 30px rgba(37, 99, 235, 0.08);
  --pill-text: #fff;
  --logo-bg: #fff;
}

*,
*::before,
*::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-family: "Manrope", "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; }

main,
section,
div,
article,
nav,
figure,
ul,
li {
  min-width: 0;
}

.container { 
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 14%, rgba(0, 102, 255, 0.15), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(0, 240, 255, 0.12), transparent 30%);
  z-index: -1;
  animation: pulseBg 15s ease-in-out infinite alternate;
}

@keyframes pulseBg {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.1); opacity: 1; }
}

.site-header {
  position: static;
  top: 0;
  z-index: 50;
  padding: 14px 0;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-md), var(--glow);
  transition: all 0.3s ease;
}

.brand-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.brand-logo { 
  height: 52px;
  width: 52px;
  object-fit: cover;
  object-position: center;
  background: var(--logo-bg);
  padding: 4px;
  border-radius: 12px;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
}

.header-controls { display: flex; flex-direction: column; align-items: stretch; gap: 10px; min-width: 0; width: 100%; }
.main-nav { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; min-width: 0; width: 100%; }

.main-nav a,
.header-cta,
.language-toggle,
.theme-toggle {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}

html[data-theme="light"] .main-nav a,
html[data-theme="light"] .header-cta,
html[data-theme="light"] .language-toggle,
html[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.96);
}

html[data-theme="light"] .main-nav a,
html[data-theme="light"] .lang-pill,
html[data-theme="light"] .theme-pill,
html[data-theme="light"] .footer-links a {
  color: #3b4d66;
}

html[data-theme="light"] .main-nav a:hover,
html[data-theme="light"] .main-nav a:focus-visible,
html[data-theme="light"] .header-cta:hover,
html[data-theme="light"] .button-secondary:hover,
html[data-theme="light"] .button-secondary:focus-visible {
  background: rgba(37, 99, 235, 0.08);
  border-color: rgba(37, 99, 235, 0.24);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.86rem;
  text-align: center;
  white-space: normal;
  word-break: break-word;
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(0, 240, 255, 0.4);
  color: var(--text);
  background: rgba(0, 240, 255, 0.05);
  box-shadow: 0 4px 12px rgba(0, 240, 255, 0.1);
}

.header-actions { display: flex; flex-direction: column; align-items: stretch; gap: 8px; min-width: 0; width: 100%; }

.header-utilities {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  min-width: 0;
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 9px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--text);
  text-align: center;
  transition: all 300ms ease;
}
.header-cta:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.language-toggle {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 3px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: all 300ms ease;
}
.language-toggle:hover {
  border-color: rgba(255,255,255,0.2);
}

.theme-toggle {
  display: inline-flex;
  gap: 4px;
  justify-content: center;
  width: auto;
  max-width: none;
  margin: 0;
  padding: 3px;
  border-radius: 999px;
  flex-shrink: 0;
  transition: all 300ms ease;
}

.theme-toggle:hover {
  border-color: rgba(255,255,255,0.2);
}

.lang-pill {
  min-width: 42px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--muted);
  transition: all 300ms ease;
}

.lang-pill.is-active,
.theme-pill.is-active {
  color: var(--pill-text);
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 2px 10px rgba(0, 240, 255, 0.3);
}

.theme-pill {
  min-width: 54px;
  padding: 5px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.76rem;
  color: var(--muted);
  transition: all 300ms ease;
}

/* Base Sections */
.hero-section,
.trust-section,
.services-section,
.proof-section,
.seo-copy-section,
.site-footer { padding-top: 40px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  min-width: 0;
}

.hero-copy {
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero-copy::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,240,255,0.3), transparent);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  letter-spacing: -0.03em;
  overflow-wrap: break-word;
}
p { overflow-wrap: break-word; }

.hero-copy h1 {
  font-size: clamp(1.9rem, 8vw, 2.5rem);
  line-height: 1.1;
  max-width: none;
  padding-right: 0.1em;
  background: linear-gradient(to right, var(--text), color-mix(in srgb, var(--text) 65%, var(--muted)));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description,
.section-heading p,
.trust-card p,
.service-cell p,
.proof-copy p,
.seo-copy-content p,
.footer-links p,
.footer-brand p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-description { margin: 20px 0 0; max-width: 58ch; font-size: 1rem; }

.hero-actions,
.contact-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #000;
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.4);
}

.button-secondary {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  backdrop-filter: blur(8px);
}

html[data-theme="light"] .button-secondary {
  border-color: rgba(15, 23, 42, 0.14);
  background: rgba(255, 255, 255, 0.94);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 240, 255, 0.5);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255,255,255,0.4);
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-weight: 500;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.hero-stack { display: grid; grid-template-columns: 1fr; gap: 16px; min-width: 0; }

.hero-showcase,
.trust-card,
.proof-card,
.contact-band,
.seo-copy-grid,
.footer-grid {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-showcase {
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-showcase::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
  pointer-events: none;
}

.hero-showcase-large img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
}
.hero-showcase-small img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.media-slideshow {
  aspect-ratio: 4 / 5;
}

.media-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.media-slideshow > img.is-active {
  opacity: 1;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.trust-card { 
  padding: 20px 18px; 
  border-radius: var(--radius-lg); 
}
.trust-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), var(--glow);
  border-color: rgba(0,240,255,0.3);
}

.trust-card span,
.proof-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(0,240,255,0.2);
}

.trust-card h2 { margin-top: 18px; font-size: 1.35rem; color: var(--text); }
.trust-card p { margin: 12px 0 0; }

.section-heading { display: grid; gap: 10px; margin-bottom: 24px; }
.section-heading h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); max-width: none; color: var(--text); }
.section-heading p { max-width: none; margin: 0; font-size: 1rem; }

.service-matrix {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-strong);
  box-shadow: var(--shadow-lg);
}

.service-matrix-head { display: none; }
.service-matrix-head [role="row"],
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
}

.service-cell { padding: 24px; }

.service-matrix-head span {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

html[data-theme="light"] .service-matrix {
  background: rgba(255, 255, 255, 0.98);
}

html[data-theme="light"] .service-row:hover {
  background: rgba(37, 99, 235, 0.04);
}

.service-row { transition: background 0.3s ease; }
.service-row:hover { background: rgba(0, 240, 255, 0.05); }

.service-row + .service-row { border-top: 1px solid var(--line); }
.service-cell + .service-cell,
.service-matrix-head span + span { border-left: 1px solid var(--line); }

.service-title-cell {
  display: grid;
  align-content: start;
  gap: 12px;
}

.service-title-cell h3 { font-size: 1.35rem; color: var(--text); }
.service-media-cell img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 12px; border: 1px solid rgba(255,255,255,0.1); }
.service-cell + .service-cell { border-left: none; border-top: 1px solid var(--line); }
.service-media-cell { order: -1; }

.screen-gallery-shell {
  display: grid;
  gap: 24px;
}

.screen-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: stretch;
  min-width: 0;
}

.screen-info-card,
.screen-example-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.screen-info-card {
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 14px;
}

.screen-info-card h3 {
  font-size: 1.35rem;
  color: var(--text);
}

.screen-spec-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.screen-spec-list li {
  position: relative;
  padding-left: 22px;
  min-width: 0;
  color: var(--muted);
  line-height: 1.7;
}

.screen-spec-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
}

.screen-example-card {
  display: grid;
  min-width: 0;
}

.screen-example-card-wide { grid-column: auto; }

.screen-example-media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.1), rgba(3, 7, 18, 0.6)),
    radial-gradient(circle at top, rgba(0, 102, 255, 0.24), transparent 55%),
    linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
}

.screen-placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  padding: 24px;
  text-align: center;
}

.screen-placeholder span {
  display: block;
  width: 100%;
  max-width: 28ch;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.screen-example-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screen-example-media.media-slideshow {
  aspect-ratio: 4 / 3;
}

.screen-example-media.media-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.screen-example-media.media-slideshow > img.is-active {
  opacity: 1;
}
.screen-example-copy {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.screen-example-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.screen-example-note {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.screen-example-copy h3 {
  font-size: 1.35rem;
  line-height: 1.2;
  color: var(--text);
}

.screen-example-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.proof-heading h2 { max-width: none; }

.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  min-width: 0;
}

.proof-card { 
  overflow: hidden; 
  border-radius: var(--radius-lg); 
}
.proof-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(0, 102, 255, 0.2);
  border-color: rgba(255,255,255,0.2);
}

.proof-card img { width: 100%; aspect-ratio: 16 / 13; object-fit: cover; transition: transform 0.6s ease; }
.proof-card:hover img { transform: scale(1.05); }
.proof-card-large img { aspect-ratio: 43 / 31; }

.proof-copy { 
  padding: 18px; 
  background: linear-gradient(180deg, transparent, var(--surface-strong) 20%);
  min-width: 0;
}

.proof-copy span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-copy h3 { font-size: 1.35rem; line-height: 1.2; color: var(--text); }
.proof-copy p { margin-top: 14px; }

.contact-band {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 18px;
  width: 100%;
  min-width: 0;
  margin-top: 32px;
  padding: 20px 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(2, 132, 199, 0.4));
  position: relative;
  overflow: hidden;
}
.contact-band::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 50%; height: 200%;
  background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-band h2 { max-width: none; font-size: clamp(1.8rem, 7vw, 2.4rem); color: var(--text); }

.seo-copy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  min-width: 0;
  padding: 20px 18px;
  border-radius: 20px;
}

.seo-copy-content { display: grid; gap: 16px; }
.seo-copy-content p { margin: 0; font-size: 1rem; }

.site-footer { padding-bottom: 40px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  min-width: 0;
  padding: 20px 18px;
  border-radius: 20px;
  background: var(--surface-strong);
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; min-width: 0; }
.footer-brand img { width: 88px; background: var(--logo-bg); padding: 10px; border-radius: 20px; }
.footer-brand h2,
.footer-links h3 { margin-bottom: 12px; color: var(--text); }

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
  min-width: 0;
}

.footer-links a { color: var(--muted); font-weight: 600; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }

/* Animation Classes for JavaScript */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 640px) {
  .container {
    padding: 0 20px;
  }

  .header-inner {
    padding: 16px;
  }

  .brand-logo {
    height: 56px;
    width: 56px;
  }

  .brand-link {
    justify-content: center;
  }

  .header-controls {
    gap: 9px;
  }

  .header-utilities {
    justify-content: center;
  }

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

  .hero-copy {
    padding: 24px;
  }

  .hero-actions,
  .contact-band-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .button-primary,
  .button-secondary {
    width: auto;
    min-width: 220px;
  }

  .trust-grid,
  .screen-gallery-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .footer-brand {
    flex-direction: row;
  }

  .screen-info-card,
  .screen-example-copy,
  .proof-copy,
  .seo-copy-grid,
  .footer-grid,
  .contact-band {
    padding: 20px;
  }
}

@media (min-width: 860px) {
  .container {
    padding: 0 24px;
  }

  .site-header {
    position: sticky;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 20px;
    border-radius: 999px;
  }

  .brand-logo {
    height: 64px;
    width: 64px;
    padding: 5px;
  }

  .brand-link {
    justify-content: flex-start;
    width: auto;
  }

  .header-controls {
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    gap: 16px;
  }

  .header-utilities {
    width: auto;
    justify-content: center;
    gap: 10px;
  }

  .main-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: auto;
  }

  .main-nav a {
    width: auto;
    min-width: 0;
    padding: 10px 16px;
  }

  .header-actions {
    flex-direction: row;
    align-items: center;
    width: auto;
    gap: 10px;
  }

  .header-cta,
  .language-toggle,
  .theme-toggle {
    width: auto;
    max-width: none;
    margin: 0;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 24px;
  }

  .hero-copy {
    padding: 28px;
  }

  .hero-copy h1 {
    font-size: clamp(2.3rem, 5vw, 3.2rem);
  }

  .hero-description,
  .section-heading p,
  .seo-copy-content p {
    font-size: 1.05rem;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 20px;
  }

  .hero-stack {
    grid-template-columns: 1fr;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
  }

  .screen-gallery-grid,
  .proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .seo-copy-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 24px;
  }

  .contact-band {
    padding: 24px;
  }
}

@media (min-width: 1120px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
    gap: 32px;
  }

  .hero-copy {
    padding: clamp(32px, 4vw, 56px);
    border-radius: var(--radius-xl);
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 4.8vw, 3.8rem);
    max-width: 14ch;
  }

  .hero-visual {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.72fr);
    gap: 18px;
  }

  .hero-stack {
    gap: 18px;
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .trust-card {
    padding: 32px 24px;
  }

  .trust-card h2 {
    margin-top: 24px;
    font-size: 1.6rem;
  }

  .section-heading {
    gap: 12px;
    margin-bottom: 32px;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    max-width: 18ch;
  }

  .section-heading p {
    max-width: 70ch;
    font-size: 1.1rem;
  }

  .service-matrix {
    border-radius: var(--radius-xl);
  }

  .service-matrix-head {
    display: block;
    background: rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid var(--line);
  }

  html[data-theme="light"] .service-matrix-head {
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.12), rgba(37, 99, 235, 0.08));
  }

  .service-matrix-head [role="row"],
  .service-row {
    grid-template-columns: 0.85fr 1.15fr 1fr 1fr;
  }

  .service-matrix-head span,
  .service-cell {
    padding: 24px;
  }

  html[data-theme="light"] .service-matrix-head span {
    color: #0f7fd1;
  }

  .service-title-cell {
    gap: 16px;
  }

  .service-title-cell h3 {
    font-size: 1.8rem;
  }

  .service-cell + .service-cell,
  .service-matrix-head span + span {
    border-left: 1px solid var(--line);
    border-top: none;
  }

  .service-media-cell {
    order: 0;
  }

  .screen-gallery-shell {
    gap: 32px;
  }

  .screen-gallery-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr) minmax(0, 1fr);
  }

  .screen-info-card {
    padding: 28px;
    gap: 18px;
  }

  .screen-info-card h3 {
    font-size: 1.8rem;
  }

  .screen-example-card-wide {
    grid-column: span 2;
  }

  .screen-example-media.media-slideshow {
  aspect-ratio: 4 / 3;
}

.screen-example-media.media-slideshow > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.screen-example-media.media-slideshow > img.is-active {
  opacity: 1;
}
.screen-example-copy {
    padding: 22px 22px 24px;
  }

  .proof-heading h2 {
    max-width: 15ch;
  }

  .proof-grid {
    grid-template-columns: 1.15fr 1fr 1fr;
  }

  .proof-copy {
    padding: 24px;
  }

  .proof-copy h3 {
    font-size: 1.6rem;
  }

  .contact-band {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 32px 40px;
    border-radius: var(--radius-xl);
  }

  .contact-band h2 {
    max-width: 18ch;
    font-size: clamp(2rem, 3.5vw, 3rem);
  }

  .seo-copy-grid {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
    padding: 40px;
    border-radius: var(--radius-xl);
  }

  .seo-copy-content p {
    font-size: 1.05rem;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 0.8fr;
    gap: 32px;
    padding: 40px;
    border-radius: var(--radius-xl);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

