@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("fonts/plus-jakarta-sans-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("fonts/sora-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113,
    U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("fonts/sora-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308,
    U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-soft: #eef3fb;
  --surface-soft-2: #f8fafe;
  --surface-dark: #11182d;
  --surface-dark-2: #18213c;
  --surface-dark-3: #0d1326;
  --text: #171d2f;
  --muted: #66708a;
  --muted-strong: #50607b;
  --line: #d8e1f0;
  --line-strong: #cad5e8;
  --accent: #ff6b4a;
  --accent-2: #4f73ff;
  --accent-soft: rgba(255, 107, 74, 0.12);
  --shadow: 0 28px 72px rgba(20, 32, 70, 0.12);
  --shadow-soft: 0 16px 36px rgba(17, 24, 45, 0.08);
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1280px, calc(90vw - 32px));
  --ease: 180ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(79, 115, 255, 0.08), transparent 24%),
    radial-gradient(circle at 90% 12%, rgba(255, 107, 74, 0.12), transparent 22%),
    linear-gradient(180deg, #fafcff 0%, #f4f7fc 100%);
  color: var(--text);
  font-family: "Plus Jakarta Sans", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p,
ul,
ol {
  margin: 0;
}

p {
  font-size: max(17px, 1rem);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(18px);
  background: rgba(244, 247, 252, 0.92);
  border-bottom: 1px solid rgba(216, 225, 240, 0.76);
}

.topbar {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 92px;
}

.brand-mark {
  display: inline-grid;
  gap: 2px;
  align-content: center;
  white-space: nowrap;
}

.brand-title {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.brand-accent {
  color: #16b9d2;
}

.brand-base {
  color: var(--surface-dark);
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav,
.nav-actions {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: 4px;
}

.nav-actions {
  gap: 14px;
}

.nav-shell {
  display: contents;
}

.mobile-menu-button {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 107, 74, 0.28);
  border-radius: 18px;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 30px rgba(255, 107, 74, 0.24);
  cursor: pointer;
}

.mobile-menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform var(--ease),
    opacity var(--ease);
}

.mobile-nav-groups {
  display: none;
}

.mega-item {
  position: static;
}

.nav-link,
.mega-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  transition:
    color var(--ease),
    background-color var(--ease),
    border-color var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.mega-trigger:hover,
.mega-trigger:focus-visible,
.mega-item:hover .mega-trigger,
.mega-item:focus-within .mega-trigger {
  color: var(--surface-dark);
  background: rgba(255, 255, 255, 0.88);
}

.mega-panel {
  position: absolute;
  top: calc(100% - 6px);
  left: 50%;
  width: min(1040px, calc(100vw - 40px));
  padding: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, 0.84fr);
  gap: 18px;
  border: 1px solid rgba(216, 225, 240, 0.92);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 34px 80px rgba(17, 24, 45, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-50%) translateY(12px);
  transition:
    opacity var(--ease),
    transform var(--ease),
    visibility var(--ease);
}

.mega-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  height: 30px;
}

.mega-item:hover .mega-panel,
.mega-item:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-column,
.mega-highlight {
  display: grid;
  min-width: 0;
  gap: 10px;
  align-content: start;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 225, 240, 0.92);
  background: rgba(248, 250, 254, 0.96);
}

.mega-label {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mega-column a,
.mega-highlight strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.main-nav > .mega-item:first-child .mega-column a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.main-nav > .mega-item:first-child .mega-column a::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.12);
}

.mega-column p,
.mega-highlight span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.92rem;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.mega-highlight {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.16), transparent 36%),
    linear-gradient(180deg, #fff7f4 0%, #ffffff 100%);
  border-color: rgba(255, 183, 166, 0.82);
}

.phone-link {
  color: var(--surface-dark);
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    background-color var(--ease),
    border-color var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 16px 32px rgba(255, 107, 74, 0.26);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.88);
  color: var(--surface-dark);
}

.button-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.hero-section,
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 32px;
}

.hero-section-clean {
  padding: 60px 0 46px;
}

.hero-section::before,
.hero-section::after,
.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::before,
.page-hero::before {
  top: 42px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.16), transparent 70%);
}

.hero-section::after,
.page-hero::after {
  left: -90px;
  bottom: 40px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(79, 115, 255, 0.14), transparent 70%);
}

.hero-grid,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 34px;
  align-items: center;
}

.hero-grid-clean {
  gap: clamp(36px, 5vw, 84px);
  align-items: start;
}

.hero-copy,
.page-hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy-clean {
  max-width: 620px;
  padding-top: 22px;
}

.eyebrow,
.section-kicker,
.footer-kicker,
.crumbs {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before,
.footer-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.crumbs {
  gap: 8px;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.crumbs::before {
  content: none;
}

.crumbs a:hover,
.crumbs a:focus-visible {
  color: var(--surface-dark);
}

.section-kicker-light {
  color: #ffb7a6;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.split-heading h2,
.process-copy h2,
.benefits-copy h2,
.contact-copy h2,
.footer-cta h2,
.content-hero h2,
.content-section h2,
.cta-band h2 {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.lead,
.page-lead,
.content-lead {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
}

.page-hero-copy h1.page-title-security {
  font-size: clamp(2.12rem, 4.2vw, 3.85rem);
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.hero-actions,
.page-actions,
.contact-actions,
.footer-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-points,
.check-list,
.link-list,
.stack-list {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
}

.hero-points li,
.check-list li,
.stack-list li {
  position: relative;
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px 0 56px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(216, 225, 240, 0.94);
  box-shadow: var(--shadow-soft);
  line-height: 1.58;
}

.hero-points li::before,
.check-list li::before,
.stack-list li::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, #fff 0 24%, transparent 26%),
    linear-gradient(180deg, var(--accent), #ff8c72);
  box-shadow: 0 8px 16px rgba(255, 107, 74, 0.22);
}

.stack-list li::before {
  animation: stack-pulse 4.6s ease-in-out infinite;
}

.link-list li {
  border-radius: 18px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(248, 250, 254, 0.94);
  box-shadow: var(--shadow-soft);
  transition:
    transform var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    background-color var(--ease);
}

.link-list li:hover,
.link-list li:focus-within {
  transform: translateY(-1px);
  border-color: rgba(255, 183, 166, 0.84);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 30px rgba(24, 36, 71, 0.1);
}

.link-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  color: var(--surface-dark);
  font-weight: 700;
}

.link-list a::after {
  content: "->";
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

@keyframes stack-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 16px rgba(255, 107, 74, 0.22);
  }

  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.08), 0 10px 20px rgba(255, 107, 74, 0.22);
  }
}

.summary-card,
.benefits-aside,
.hero-entry-card {
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.summary-card strong,
.hero-entry-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.summary-card span,
.benefits-aside p,
.hero-entry-card p {
  color: var(--muted);
  line-height: 1.68;
}

.hero-visual,
.page-hero-visual {
  position: relative;
  min-height: 620px;
  padding: 28px 0;
}

.hero-visual-clean {
  min-height: auto;
  padding: 0;
}

.hero-section-fresh {
  padding: 38px 0 34px;
}

.hero-fresh-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 1.16fr);
  align-items: center;
}

.hero-fresh-copy {
  display: grid;
  gap: 18px;
  max-width: 620px;
}

.hero-fresh-copy h1 {
  max-width: 7ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(3.25rem, 6vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-fresh-copy h2 {
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.5rem, 2.9vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--muted-strong);
}

.hero-fresh-lead {
  max-width: 40ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.76;
}

.hero-fresh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

.button-powered {
  border: none;
  color: #fff;
  background: linear-gradient(135deg, #80CD9B 0%, #01B3A5 100%);
  box-shadow: 0 14px 28px rgba(1, 179, 165, 0.24);
}

.button-powered-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex-shrink: 0;
}

.button-powered-icon svg {
  width: 16px;
  height: 16px;
}

.button-powered span:last-child {
  line-height: 1;
}

.hero-fresh-visual {
  position: relative;
  min-height: 620px;
  padding: 34px 0 20px;
}

.hero-fresh-board,
.hero-fresh-circuit,
.hero-fresh-node,
.hero-fresh-server,
.hero-fresh-chip,
.hero-fresh-shield-icon {
  position: absolute;
  pointer-events: none;
}

.hero-fresh-board {
  border-radius: 40px;
  border: 1px solid rgba(216, 225, 240, 0.92);
  background:
    radial-gradient(circle at top right, rgba(79, 115, 255, 0.12), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 107, 74, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(239, 244, 255, 0.96));
  box-shadow: 0 34px 70px rgba(24, 36, 71, 0.12);
}

.hero-fresh-board::before,
.hero-fresh-board::after {
  content: "";
  position: absolute;
  border-radius: inherit;
}

.hero-fresh-board::before {
  inset: 20px;
  opacity: 0.62;
  background-image:
    linear-gradient(rgba(38, 49, 89, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 49, 89, 0.06) 1px, transparent 1px);
  background-size: 22px 22px;
}

.hero-fresh-board::after {
  inset: 34px 30px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.16), rgba(255, 107, 74, 0));
}

.hero-fresh-circuit {
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 115, 255, 0.3), rgba(255, 107, 74, 0.24));
}

.hero-fresh-circuit-one {
  top: 146px;
  left: 138px;
  width: 160px;
  transform: rotate(-18deg);
}

.hero-fresh-circuit-two {
  top: 302px;
  left: 224px;
  width: 180px;
  transform: rotate(10deg);
}

.hero-fresh-circuit-three {
  bottom: 136px;
  left: 168px;
  width: 170px;
  transform: rotate(-14deg);
}

.hero-fresh-server {
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.hero-fresh-server-primary {
  top: 112px;
  left: 82px;
  width: 220px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    linear-gradient(145deg, #11182d 0%, #1a2445 100%);
}

.hero-fresh-server-secondary {
  right: 56px;
  top: 248px;
  width: 204px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 225, 240, 0.96);
}

.hero-fresh-led-row {
  position: relative;
  display: block;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-fresh-server-secondary .hero-fresh-led-row {
  background: rgba(31, 40, 78, 0.08);
}

.hero-fresh-led-row::before,
.hero-fresh-led-row::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 12px;
  height: 10px;
  border-radius: 999px;
}

.hero-fresh-led-row::before {
  width: calc(100% - 62px);
  background: linear-gradient(90deg, rgba(79, 115, 255, 0.66), rgba(255, 107, 74, 0.42));
}

.hero-fresh-led-row::after {
  left: auto;
  right: 12px;
  width: 10px;
  border-radius: 50%;
  background: #ff6b4a;
  box-shadow:
    -16px 0 0 rgba(255, 255, 255, 0.82),
    -32px 0 0 rgba(79, 115, 255, 0.82);
}

.hero-fresh-chip {
  top: 72px;
  right: 120px;
  width: 156px;
  height: 156px;
  border-radius: 32px;
  border: 1px solid rgba(216, 225, 240, 0.96);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 48px rgba(24, 36, 71, 0.12);
}

.hero-fresh-chip::before,
.hero-fresh-chip::after {
  content: "";
  position: absolute;
  inset: 18px -10px;
  border-top: 2px solid rgba(79, 115, 255, 0.22);
  border-bottom: 2px solid rgba(79, 115, 255, 0.22);
}

.hero-fresh-chip::after {
  inset: -10px 18px;
  border-top: none;
  border-bottom: none;
  border-left: 2px solid rgba(255, 107, 74, 0.18);
  border-right: 2px solid rgba(255, 107, 74, 0.18);
}

.hero-fresh-chip-core {
  position: absolute;
  inset: 38px;
  border-radius: 24px;
  position: absolute;
  background:
    linear-gradient(rgba(31, 40, 78, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 40, 78, 0.1) 1px, transparent 1px),
    linear-gradient(145deg, rgba(79, 115, 255, 0.16), rgba(255, 107, 74, 0.1));
  background-size: 14px 14px, 14px 14px, auto;
}

.hero-fresh-shield-icon {
  left: 248px;
  bottom: 76px;
  display: grid;
  place-items: center;
  width: 134px;
  height: 134px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #edf3ff 100%);
  box-shadow: 0 22px 42px rgba(24, 36, 71, 0.12);
}

.hero-fresh-shield-icon svg {
  width: 96px;
  height: 96px;
}

.hero-fresh-node-one {
  top: 150px;
  left: 316px;
  width: 22px;
  height: 22px;
  background: #ff6b4a;
  box-shadow: 0 0 0 10px rgba(255, 107, 74, 0.14);
}

.hero-fresh-node-two {
  top: 298px;
  left: 210px;
  width: 18px;
  height: 18px;
  background: #4f73ff;
  box-shadow: 0 0 0 10px rgba(79, 115, 255, 0.12);
}

.hero-fresh-node-three {
  right: 72px;
  bottom: 196px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: 4px solid rgba(255, 107, 74, 0.9);
}

.hero-fresh-node-four {
  left: 124px;
  bottom: 118px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border: 4px solid rgba(79, 115, 255, 0.82);
}

.hero-service-stage {
  position: relative;
  display: grid;
  gap: 22px;
  margin-left: auto;
  width: min(100%, 560px);
  padding: 30px;
  border-radius: 34px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(79, 115, 255, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
  box-shadow: var(--shadow);
}

.hero-stage-bar,
.hero-stage-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hero-stage-label,
.hero-stage-area,
.hero-stage-panel-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-stage-label,
.hero-stage-panel-label {
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent);
}

.hero-stage-area {
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-strong);
  border: 1px solid rgba(216, 225, 240, 0.94);
}

.hero-stage-copy,
.hero-stage-panel {
  display: grid;
  gap: 14px;
}

.hero-stage-copy h2 {
  max-width: 12ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.hero-stage-copy p {
  max-width: 42ch;
  color: var(--muted);
  line-height: 1.72;
}

.hero-stage-board {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(220px, 0.82fr);
  gap: 16px;
  align-items: stretch;
}

.hero-stage-panel {
  padding: 24px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(145deg, #121b35 0%, #1b2647 100%);
  box-shadow: 0 22px 44px rgba(15, 22, 44, 0.22);
}

.hero-stage-panel strong {
  max-width: 16ch;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-stage-list {
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
}

.hero-stage-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.62;
}

.hero-stage-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff8e73;
}

.hero-stage-service-grid {
  display: grid;
  gap: 12px;
}

.hero-stage-tile,
.hero-stage-stat {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-stage-tile strong,
.hero-stage-stat strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.hero-stage-tile span,
.hero-stage-stat span {
  color: var(--muted);
  line-height: 1.56;
}

.hero-stage-footer {
  align-items: stretch;
}

.hero-stage-stat {
  flex: 1 1 220px;
}

.hero-support-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  margin-left: auto;
  width: min(100%, 540px);
  padding: 28px 28px 24px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.14), transparent 28%),
    radial-gradient(circle at bottom left, rgba(79, 115, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.96));
  box-shadow: var(--shadow);
}

.hero-support-card-clean {
  gap: 18px;
  padding: 28px;
}

.hero-support-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 100%);
  pointer-events: none;
}

.hero-support-meta,
.hero-support-art,
.hero-support-pills {
  position: relative;
  z-index: 1;
}

.hero-support-meta {
  display: grid;
  gap: 12px;
}

.hero-support-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 107, 74, 0.1);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-support-meta strong {
  max-width: 18ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.hero-support-card-clean .hero-support-meta strong {
  max-width: 14ch;
}

.hero-support-meta p {
  max-width: 44ch;
  color: var(--muted);
  line-height: 1.72;
}

.hero-support-art {
  position: relative;
  min-height: 336px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0 0;
}

.hero-support-card-clean .hero-support-art {
  min-height: 286px;
  padding: 0;
}

.hero-support-avatar {
  position: relative;
  width: min(100%, 336px);
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(24, 36, 71, 0.12));
}

.hero-support-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-support-orb-one {
  top: 6px;
  right: 10px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(255, 107, 74, 0.24), rgba(255, 107, 74, 0));
}

.hero-support-orb-two {
  left: 10px;
  bottom: 28px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(79, 115, 255, 0.22), rgba(79, 115, 255, 0));
}

.hero-support-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-support-pills span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.92);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.hero-support-pills span::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 74, 0.12);
}

.hero-photo-card,
.page-photo-card,
.benefits-image-card {
  position: relative;
  margin-left: auto;
  width: min(100%, 540px);
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.hero-photo-card::after,
.page-photo-card::after,
.benefits-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 24, 45, 0.05), rgba(17, 24, 45, 0.42)),
    linear-gradient(135deg, rgba(79, 115, 255, 0.08), rgba(255, 107, 74, 0.06));
}

.hero-photo-card img,
.page-photo-card img,
.benefits-image-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.page-photo-card--icon {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.18);
  --page-icon-secondary-soft: rgba(79, 115, 255, 0.16);
}

.page-photo-card--icon::after {
  display: none;
}

.page-icon-scene {
  position: relative;
  min-height: 572px;
  overflow: hidden;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, var(--page-icon-accent-soft), transparent 34%),
    radial-gradient(circle at bottom left, var(--page-icon-secondary-soft), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(226, 232, 244, 0.92);
}

.page-icon-scene::before {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 24px;
  border: 1px dashed rgba(79, 115, 255, 0.12);
  pointer-events: none;
}

.page-icon-scene::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 44%;
  width: 248px;
  height: 248px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--page-icon-secondary-soft), transparent 70%);
  pointer-events: none;
}

.page-icon-core {
  position: absolute;
  inset: 48px 53px 48px;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 34px 28px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(216, 225, 240, 0.96);
  box-shadow: 0 24px 48px rgba(24, 36, 71, 0.12);
  text-align: center;
}

.page-icon-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-icon-mark {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--page-icon-accent-soft), var(--page-icon-secondary-soft));
  color: var(--surface-dark);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.page-icon-mark svg,
.page-icon-mark i {
  display: block;
}

.page-icon-mark svg {
  width: 44px;
  height: 44px;
  stroke: currentColor;
  stroke-width: 1.85;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-icon-mark i {
  font-size: 44px;
  line-height: 1;
}

.page-icon-core strong {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--surface-dark);
}

.page-icon-copy {
  max-width: 26ch;
  color: var(--muted);
  line-height: 1.64;
}

.page-photo-card--support {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.18);
  --page-icon-secondary-soft: rgba(79, 115, 255, 0.16);
}

.page-photo-card--servers {
  --page-icon-accent-soft: rgba(79, 115, 255, 0.18);
  --page-icon-secondary-soft: rgba(49, 170, 155, 0.18);
}

.page-photo-card--infrastructure {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.16);
  --page-icon-secondary-soft: rgba(91, 118, 255, 0.2);
}

.page-photo-card--security {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.16);
  --page-icon-secondary-soft: rgba(39, 158, 122, 0.2);
}

.page-photo-card--cloud {
  --page-icon-accent-soft: rgba(88, 127, 255, 0.2);
  --page-icon-secondary-soft: rgba(255, 107, 74, 0.16);
}

.page-photo-card--audit {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.16);
  --page-icon-secondary-soft: rgba(129, 144, 255, 0.2);
}

.page-photo-card--benefits {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.16);
  --page-icon-secondary-soft: rgba(64, 126, 255, 0.18);
}

.page-photo-card--pricing {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.18);
  --page-icon-secondary-soft: rgba(84, 170, 148, 0.16);
}

.page-photo-card--contact {
  --page-icon-accent-soft: rgba(255, 107, 74, 0.16);
  --page-icon-secondary-soft: rgba(79, 115, 255, 0.18);
}

.floating-card,
.benefits-overlay {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 10px;
  max-width: 260px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(216, 225, 240, 0.96);
  box-shadow: var(--shadow);
}

.floating-card strong,
.benefits-overlay strong {
  font-size: 1rem;
}

.floating-card span,
.benefits-overlay span {
  color: var(--muted);
  line-height: 1.58;
}

.floating-card-top {
  top: 84px;
  left: -22px;
}

.floating-card-bottom {
  right: -12px;
  bottom: 44px;
}

.signal-strip {
  padding: 16px 0 48px;
}

.home-summary {
  padding: 14px 0 52px;
}

.hero-entry-section {
  padding: 0 0 58px;
}

.hero-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hero-entry-card {
  display: grid;
  grid-template-rows: minmax(2.7em, auto) 1fr;
  padding: 24px;
  border-radius: 24px;
}

.hero-entry-card h3 {
  font-size: 1.14rem;
  line-height: 1.35;
  letter-spacing: -0.03em;
}

.signal-grid,
.services-grid,
.situations-grid,
.contact-grid,
.stats-grid,
.cards-grid,
.content-grid {
  display: grid;
  gap: 18px;
}

.signal-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.situations-grid {
  grid-template-columns: 1.1fr 1fr 1fr;
}

.stats-grid,
.cards-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.signal-card,
.service-card,
.situation-card,
.benefit-item,
.contact-card,
.stat-card,
.content-card,
.price-card,
.faq-card {
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.signal-card,
.benefit-item,
.stat-card,
.content-card,
.faq-card,
.summary-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
}

.signal-card strong,
.stat-card strong,
.content-card h3,
.price-card h3,
.faq-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.05rem;
  line-height: 1.2;
}

.signal-card span,
.section-heading p,
.split-heading p,
.service-card p,
.situation-card p,
.process-copy p,
.step-card p,
.benefits-copy p,
.benefit-item span,
.contact-copy p,
.contact-card p,
.content-card p,
.price-card p,
.faq-card p,
.footer-brand p,
.footer-column p,
.footer-bottom p,
.content-section p {
  color: var(--muted);
  line-height: 1.74;
}

.section-heading p,
.split-heading p,
.service-card p,
.situation-card p,
.process-copy p,
.step-card p,
.benefits-copy p,
.contact-copy p,
.contact-card p,
.content-card p,
.price-card p,
.faq-card p,
.footer-brand p,
.footer-column p,
.footer-bottom p,
.content-section p {
  font-size: max(17px, 1rem);
}

.process-copy > p:not(.section-kicker),
.step-card p {
  font-size: max(19px, 1.08rem);
  font-weight: 500;
}

.services-section,
.situations-section,
.benefits-section,
.contact-section,
.page-content,
.content-section {
  padding: 42px 0 60px;
}

.section-heading,
.split-heading,
.content-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.84fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  margin-bottom: 30px;
}

.section-heading h2,
.split-heading h2,
.process-copy h2,
.benefits-copy h2,
.contact-copy h2,
.footer-cta h2,
.content-hero h2,
.content-section h2,
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.section-heading-stack {
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 34px;
}

.section-heading-stack .section-kicker {
  margin-bottom: 2px;
}

.section-heading-stack h2 {
  max-width: 12ch;
}

.section-heading-stack p {
  max-width: 64ch;
  margin-left: 0;
}

.home-section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  column-gap: clamp(28px, 4vw, 72px);
  row-gap: 18px;
  align-items: end;
  margin-bottom: 42px;
}

.home-section-intro .section-kicker {
  grid-column: 1 / -1;
}

.home-section-intro h2 {
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.15rem, 4vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.home-section-intro p:last-child {
  color: var(--muted);
  line-height: 1.74;
  margin: 0 0 4px;
}

.home-section-intro-aside {
  padding: 26px 28px;
  border-radius: 28px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
  box-shadow: var(--shadow-soft);
}

.section-heading > div,
.split-heading > div,
.content-heading > div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.section-heading > p,
.split-heading > p,
.content-heading > p {
  margin-left: auto;
}

.content-heading-full {
  grid-template-columns: minmax(0, 1fr);
}

.section-heading h2,
.split-heading h2,
.content-heading h2 {
  max-width: 13ch;
  font-size: clamp(1.95rem, 3.5vw, 3.1rem);
}

.content-heading.content-heading-full h2 {
  max-width: none;
}

.service-card {
  position: relative;
  overflow: hidden;
  padding: 30px 26px 26px;
  border-radius: 26px;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ffa38b);
}

.service-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.service-card.is-featured {
  border-color: rgba(255, 183, 166, 0.92);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.1), transparent 34%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  box-shadow: 0 24px 42px rgba(24, 36, 71, 0.12);
}

.services-grid:hover .service-card.is-featured:not(:hover),
.services-grid:focus-within .service-card.is-featured:not(:focus-visible) {
  transform: none;
  border-color: rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-6px);
  border-color: rgba(255, 183, 166, 0.96);
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  box-shadow: 0 28px 46px rgba(24, 36, 71, 0.15);
}

.service-card.is-featured .service-index,
.service-card:hover .service-index,
.service-card:focus-visible .service-index {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.2);
  transform: translateY(-1px);
}

.services-grid:hover .service-card.is-featured:not(:hover) .service-index,
.services-grid:focus-within .service-card.is-featured:not(:focus-visible) .service-index {
  background: var(--accent-soft);
  color: var(--accent);
  box-shadow: none;
  transform: none;
}

.service-card h3,
.situation-card h3,
.step-card h3,
.contact-card a,
.contact-card strong,
.footer-column h3,
.content-card h3,
.price-card h3,
.faq-card h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.service-card h3,
.situation-card h3 {
  margin-bottom: 12px;
}

.situation-card {
  padding: 30px 26px;
  border-radius: 26px;
}

.accent-card {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.16), transparent 32%),
    linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
  border-color: rgba(255, 183, 166, 0.82);
}

.process-section,
.cta-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(79, 115, 255, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(255, 107, 74, 0.22), transparent 28%),
    linear-gradient(145deg, #11182d 0%, #172241 100%);
}

.process-section {
  padding: 68px 0;
}

.process-section::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 22%, rgba(0, 0, 0, 0.8) 78%, transparent 100%);
  pointer-events: none;
}

.process-grid,
.benefits-grid,
.contact-shell,
.cta-band-shell,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 28px;
}

.process-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.process-copy,
.benefits-copy,
.contact-copy,
.cta-band-shell,
.content-hero {
  display: grid;
  gap: 22px;
}

.process-steps {
  display: grid;
  gap: 16px;
  align-self: center;
}

.step-card {
  position: relative;
  padding: 28px 26px 26px 92px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
}

.step-card span {
  position: absolute;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.step-card h3 {
  margin-bottom: 10px;
}

.benefits-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 1.04fr);
  align-items: center;
}

.benefits-grid-clean {
  align-items: start;
}

.benefits-grid-clean .benefits-aside {
  align-self: center;
}

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

.benefit-item strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.2;
}

.benefits-visual {
  position: relative;
  min-height: 560px;
}

.benefits-aside {
  display: grid;
  gap: 18px;
  padding: 30px;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 252, 0.98));
}

.benefits-aside strong {
  max-width: 15ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.benefits-aside .section-kicker {
  margin-bottom: -2px;
}

.benefits-aside .stack-list {
  gap: 12px;
}

.benefits-image-card {
  position: absolute;
  inset: 0;
  width: 100%;
}

.benefits-overlay {
  left: 28px;
  right: 28px;
  bottom: 28px;
  max-width: none;
  background: rgba(17, 24, 45, 0.84);
  border-color: rgba(255, 255, 255, 0.08);
}

.benefits-overlay strong,
.benefits-overlay span {
  color: #fff;
}

.benefits-overlay span {
  color: rgba(255, 255, 255, 0.76);
}

.contact-shell {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  padding: 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.16), transparent 28%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
  border: 1px solid rgba(255, 183, 166, 0.56);
  box-shadow: var(--shadow);
}

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

.contact-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 22px;
}

.contact-card-centered {
  align-content: baseline;
}

.contact-label {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: var(--surface-dark);
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  align-items: center;
}

.page-hero-copy,
.page-hero-visual,
.content-body,
.sidebar-stack {
  min-width: 0;
}

.page-summary {
  display: grid;
  gap: 12px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-row span,
.mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 240, 0.96);
  background: rgba(255, 255, 255, 0.88);
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
}

.content-section {
  padding-top: 14px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.84fr);
  gap: 28px;
  align-items: start;
}

.content-body {
  display: grid;
  gap: 22px;
}

.content-body p,
.content-body li,
.content-section p,
.content-section li {
  color: var(--muted);
  line-height: 1.8;
}

.content-body h2,
.content-section h2 {
  margin-bottom: 14px;
}

.content-body h3,
.content-section h3 {
  font-family: "Sora", sans-serif;
  font-size: 1.32rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.content-block,
.content-panel,
.sidebar-card,
.quote-card,
.price-card {
  display: grid;
  gap: 14px;
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.content-panel strong,
.sidebar-card strong,
.quote-card strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.sidebar-stack {
  display: grid;
  gap: 16px;
}

.bullet-list,
.number-list {
  display: grid;
  gap: 10px;
  padding-left: 18px;
}

.bullet-list li::marker,
.number-list li::marker {
  color: var(--accent);
  font-weight: 700;
}

.cta-band {
  padding: 56px 0;
  margin-top: 45px;
}

.cta-band-shell {
  grid-template-columns: minmax(0, 0.96fr) auto;
  align-items: center;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.72;
}

.cta-band .section-kicker + h2 + p {
  margin-top: 20px;
}

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

.price-card {
  position: relative;
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--accent), #ff9d87);
}

.price-tag {
  font-family: "Sora", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.12), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  border-color: rgba(255, 183, 166, 0.92);
  box-shadow: 0 22px 42px rgba(24, 36, 71, 0.12);
}

.pricing-overview-section {
  padding: 12px 0 56px;
}

.pricing-calculator-section {
  padding-top: 0;
}

.pricing-calculator-intro {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.pricing-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 22px;
  align-items: start;
}

.pricing-calculator-controls {
  display: grid;
  gap: 18px;
}

.calculator-card,
.pricing-calculator-result {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.pricing-calculator-result {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 255, 0.96));
  border-color: rgba(216, 225, 240, 0.98);
  box-shadow: 0 22px 42px rgba(24, 36, 71, 0.1);
}

.calculator-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.calculator-label,
.calculator-result-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-card h3,
.pricing-calculator-result h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.85rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.calculator-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255, 107, 74, 0.08);
  color: var(--accent);
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.calculator-value-package {
  min-width: 158px;
  font-size: 1.1rem;
}

.pricing-range {
  width: 100%;
  height: 12px;
  margin: 4px 0 0;
  appearance: none;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.16), rgba(79, 115, 255, 0.16));
  outline: none;
}

.pricing-range::-webkit-slider-thumb {
  appearance: none;
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.28);
  cursor: pointer;
}

.pricing-range::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 24px rgba(255, 107, 74, 0.28);
  cursor: pointer;
}

.pricing-range::-moz-range-track {
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 107, 74, 0.16), rgba(79, 115, 255, 0.16));
}

.pricing-range-scale,
.pricing-package-scale {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.pricing-range-scale {
  color: var(--muted);
  font-size: 0.95rem;
}

.pricing-package-pill {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(248, 250, 254, 0.96);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: inherit;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  transition:
    border-color var(--ease),
    background-color var(--ease),
    color var(--ease),
    transform var(--ease),
    box-shadow var(--ease);
}

.pricing-package-pill:hover,
.pricing-package-pill:focus-visible {
  border-color: rgba(255, 183, 166, 0.92);
  background: rgba(255, 107, 74, 0.08);
  color: var(--surface-dark);
  box-shadow: 0 12px 20px rgba(24, 36, 71, 0.08);
  outline: none;
}

.pricing-package-pill.is-active {
  border-color: rgba(255, 183, 166, 0.92);
  background: rgba(255, 107, 74, 0.12);
  color: var(--surface-dark);
  transform: translateY(-1px);
}

.calculator-result-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  color: var(--surface-dark);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.35rem, 4vw, 3.4rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.calculator-result-price small {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0;
}

.calculator-result-panel {
  display: grid;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(216, 225, 240, 0.94);
  background: rgba(255, 255, 255, 0.96);
}

.calculator-result-summary {
  background:
    radial-gradient(circle at top right, rgba(255, 107, 74, 0.08), transparent 34%),
    linear-gradient(180deg, #fffaf7 0%, #ffffff 100%);
  border-color: rgba(255, 196, 183, 0.78);
}

.calculator-result-details {
  background: rgba(248, 250, 254, 0.94);
}

.calculator-result-copy,
.calculator-result-footnote {
  color: var(--muted);
  line-height: 1.74;
}

.calculator-result-list {
  gap: 12px;
  margin: 0;
}

.calculator-security-block {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(222, 229, 242, 0.92);
  border-radius: 18px;
  background: rgba(248, 250, 254, 0.94);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.calculator-security-title {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calculator-security-list {
  gap: 8px;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.calculator-security-list li {
  position: relative;
  padding-left: 28px;
}

.calculator-security-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.1em;
  color: #0f9f6e;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
}

.calculator-result-footnote {
  padding: 0 4px;
}

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

.site-footer {
  padding: 0 0 36px;
  background: linear-gradient(180deg, #11182d 0%, #0c1224 100%);
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) auto;
  gap: 28px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta h2 {
  color: #fff;
}

.footer-kicker {
  color: #ffb7a6;
  margin-bottom: 14px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.7fr));
  gap: 28px;
  padding: 40px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand,
.footer-column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-brand .brand-base,
.footer-brand .brand-subtitle,
.footer-brand p,
.footer-column p,
.footer-column a,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-brand .brand-accent {
  color: #28d0e8;
}

.footer-powered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #80CD9B 0%, #01B3A5 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 28px rgba(1, 179, 165, 0.24);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    filter var(--ease);
}

.footer-powered::before {
  content: "";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ccircle cx='14' cy='14' r='14' fill='%23ffffff' fill-opacity='.18'/%3E%3Cpath d='M14 7.2v6.2' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='round'/%3E%3Cpath d='M10.15 10.1a6 6 0 1 0 7.7 0' fill='none' stroke='%23ffffff' stroke-width='2.35' stroke-linecap='round'/%3E%3C/svg%3E");
}

.footer-powered:hover,
.footer-powered:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(1, 179, 165, 0.28);
  filter: saturate(1.04);
}

.footer-column h3 {
  color: #fff;
  margin-bottom: 4px;
}

.footer-column a {
  transition: color var(--ease);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.footer-contact-icon svg {
  width: 18px;
  height: 18px;
}

.footer-company-meta {
  font-size: 16px !important;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

@media (max-width: 1180px) {
  .hero-grid,
  .page-hero-grid,
  .hero-fresh-grid,
  .section-heading,
  .split-heading,
  .content-heading,
  .process-grid,
  .benefits-grid,
  .contact-shell,
  .content-layout,
  .cta-band-shell,
  .footer-cta,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .topbar {
    padding: 16px 0;
  }

  .mega-panel {
    width: min(960px, calc(100vw - 32px));
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-section-fresh {
    padding: 44px 0 28px;
  }

  .hero-fresh-copy {
    max-width: none;
  }

  .hero-fresh-visual {
    min-height: 560px;
    padding: 38px 0 40px;
  }

  .hero-fresh-board {
    inset: 38px 20px 34px 30px;
  }

  .hero-fresh-server-primary {
    top: 98px;
    left: 56px;
    width: 206px;
  }

  .hero-fresh-chip {
    top: 70px;
    right: 88px;
    width: 144px;
    height: 144px;
  }

  .hero-fresh-shield-icon {
    left: 214px;
    bottom: 58px;
    width: 122px;
    height: 122px;
  }

  .hero-fresh-server-secondary {
    right: 34px;
    top: 226px;
    width: 188px;
  }

  .hero-service-stage {
    width: 100%;
    margin-left: 0;
  }

  .benefits-grid-clean .benefits-aside {
    align-self: stretch;
  }

  .home-section-intro {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-section-intro .section-kicker {
    grid-column: auto;
  }

  .home-section-intro p:last-child {
    max-width: 64ch;
    margin-bottom: 0;
  }

  .home-section-intro-aside {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-stage-copy h2,
  .hero-stage-copy p {
    max-width: none;
  }

  .section-heading > p,
  .split-heading > p,
  .content-heading > p {
    max-width: none;
    margin-left: 0;
  }

  .section-heading h2,
  .split-heading h2,
  .content-heading h2 {
    max-width: none;
  }

  .hero-visual,
  .page-hero-visual,
  .benefits-visual {
    min-height: 500px;
  }

  .signal-grid,
  .services-grid,
  .situations-grid,
  .pricing-calculator-shell,
  .contact-grid,
  .pricing-grid,
  .faq-grid,
  .stats-grid,
  .cards-grid,
  .summary-grid,
  .hero-entry-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  html {
    font-size: 18px;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    min-height: 78px;
    padding: 12px 0;
  }

  .brand-mark {
    min-width: 0;
  }

  .mobile-menu-button {
    display: inline-flex;
    flex-direction: column;
    flex-shrink: 0;
    justify-self: end;
  }

  .site-header.is-menu-open .mobile-menu-button {
    background: var(--surface-dark);
    border-color: rgba(17, 24, 45, 0.92);
    box-shadow: 0 18px 30px rgba(17, 24, 45, 0.2);
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-button span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-shell {
    grid-column: 1 / -1;
    display: grid;
    gap: 14px;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    border: 1px solid transparent;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    transition:
      max-height 220ms ease,
      opacity 180ms ease,
      transform 180ms ease,
      padding 180ms ease,
      margin-top 180ms ease,
      border-color 180ms ease,
      box-shadow 180ms ease;
  }

  .site-header.is-menu-open .nav-shell {
    max-height: calc(100vh - 88px);
    margin-top: 4px;
    padding: 14px;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    overflow: auto;
    border-color: rgba(216, 225, 240, 0.94);
    box-shadow: 0 26px 48px rgba(17, 24, 45, 0.12);
  }

  .main-nav {
    display: none;
  }

  .nav-link,
  .mega-trigger {
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    justify-content: flex-start;
    background: rgba(248, 250, 254, 0.96);
    border: 1px solid rgba(216, 225, 240, 0.94);
    border-radius: 18px;
    color: var(--surface-dark);
    white-space: normal;
  }

  .mega-panel {
    display: none;
  }

  .nav-actions {
    order: 2;
    width: 100%;
    display: grid;
    gap: 12px;
  }

  .nav-actions .phone-link {
    display: none;
  }

  .mobile-nav-groups {
    order: 1;
    display: grid;
    gap: 12px;
  }

  .mobile-nav-group {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(216, 225, 240, 0.94);
    border-radius: 20px;
    background: rgba(248, 250, 254, 0.96);
  }

  .mobile-nav-group-title {
    color: var(--accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-nav-group-links {
    display: grid;
    gap: 8px;
  }

  .mobile-subnav-link {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 16px;
    border: 1px solid rgba(216, 225, 240, 0.94);
    background: #fff;
    color: var(--surface-dark);
    font-weight: 700;
  }

  .phone-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(216, 225, 240, 0.94);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    font-size: 0.98rem;
  }

  .nav-actions .button {
    width: 100%;
  }

  .hero-section-clean {
    padding: 34px 0 34px;
  }

  .hero-section-fresh {
    padding: 30px 0 26px;
  }

  .hero-fresh-copy {
    gap: 20px;
  }

  .hero-fresh-copy h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .hero-fresh-lead {
    max-width: none;
    font-size: 1rem;
  }

  .hero-fresh-actions {
    padding-top: 0;
  }

  .calculator-value-package {
    min-width: 0;
  }

  .home-section-intro h2 {
    font-size: clamp(1.95rem, 8vw, 2.9rem);
  }

  .hero-fresh-visual {
    display: none;
  }

  .hero-fresh-circuit,
  .hero-fresh-node {
    display: none;
  }

  .hero-fresh-board {
    position: relative;
    inset: auto;
    min-height: 360px;
  }

  .hero-fresh-board::before {
    inset: 16px;
    background-size: 18px 18px;
  }

  .hero-fresh-board::after {
    inset: 24px 18px auto auto;
    width: 118px;
    height: 118px;
  }

  .hero-fresh-server-primary,
  .hero-fresh-server-secondary,
  .hero-fresh-chip,
  .hero-fresh-shield-icon {
    position: absolute;
  }

  .hero-fresh-server-primary {
    top: 20px;
    left: 18px;
    width: 168px;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-fresh-chip {
    top: 24px;
    right: 18px;
    width: 116px;
    height: 116px;
    border-radius: 24px;
  }

  .hero-fresh-chip-core {
    inset: 28px;
    border-radius: 18px;
  }

  .hero-fresh-server-secondary {
    top: 168px;
    left: 18px;
    right: 18px;
    width: auto;
    padding: 14px;
    border-radius: 18px;
  }

  .hero-fresh-shield-icon {
    right: 18px;
    left: auto;
    bottom: 24px;
    width: 100px;
    height: 100px;
    border-radius: 22px;
  }

  .hero-fresh-shield-icon svg {
    width: 72px;
    height: 72px;
  }

  .hero-grid-clean {
    gap: 24px;
  }

  .hero-copy-clean {
    padding-top: 0;
  }

  .hero-copy h1,
  .page-hero-copy h1,
  .section-heading h2,
  .split-heading h2,
  .process-copy h2,
  .benefits-copy h2,
  .contact-copy h2,
  .footer-cta h2,
  .content-hero h2,
  .content-section h2,
  .cta-band h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero-visual,
  .page-hero-visual,
  .benefits-visual {
    min-height: auto;
    padding: 0;
  }

  .hero-support-card {
    padding: 22px 20px 20px;
  }

  .hero-service-stage {
    gap: 18px;
    padding: 22px 18px 18px;
    border-radius: 26px;
  }

  .hero-stage-copy h2 {
    font-size: clamp(1.75rem, 6vw, 2.2rem);
  }

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

  .hero-stage-panel {
    padding: 22px 20px;
    border-radius: 24px;
  }

  .hero-stage-panel strong {
    max-width: none;
    font-size: 1.32rem;
  }

  .hero-stage-tile,
  .hero-stage-stat {
    padding: 16px;
  }

  .hero-support-art {
    min-height: 220px;
  }

  .hero-support-meta strong {
    max-width: none;
  }

  .hero-support-card-clean {
    gap: 14px;
    padding: 22px 18px 18px;
  }

  .hero-support-card-clean .hero-support-art {
    min-height: 220px;
  }

  .hero-support-card-clean .hero-support-meta strong {
    font-size: clamp(1.5rem, 7vw, 1.95rem);
  }

  .hero-support-meta p {
    max-width: none;
    line-height: 1.62;
  }

  .hero-support-avatar {
    width: min(100%, 232px);
  }

  .hero-support-pills {
    gap: 8px;
  }

  .hero-support-pills span {
    min-height: 36px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-photo-card img,
  .page-photo-card img,
  .benefits-image-card img {
    height: 420px;
  }

  .page-photo-card--icon {
    padding: 18px;
  }

  .page-icon-scene {
    display: grid;
    gap: 16px;
    min-height: auto;
    padding: 18px;
  }

  .page-icon-scene::before {
    inset: 18px;
  }

  .page-icon-core {
    position: relative;
    inset: auto;
    padding: 28px 20px;
  }

  .floating-card,
  .benefits-overlay {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .signal-grid,
  .services-grid,
  .situations-grid,
  .benefit-list,
  .pricing-calculator-shell,
  .contact-grid,
  .pricing-grid,
  .faq-grid,
  .stats-grid,
  .cards-grid,
  .footer-main,
  .summary-grid,
  .hero-entry-grid {
    grid-template-columns: 1fr;
  }

  .contact-shell,
  .content-block,
  .content-panel,
  .sidebar-card,
  .quote-card,
  .price-card,
  .calculator-card,
  .pricing-calculator-result {
    padding: 24px;
  }

  .pricing-calculator-intro {
    padding: 20px;
    border-radius: 22px;
  }

  .calculator-card-head {
    display: grid;
  }

  .pricing-package-scale {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-points li,
  .check-list li,
  .stack-list li {
    align-items: flex-start;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 32px, 1280px);
  }

  .page-icon-mark {
    width: 72px;
    height: 72px;
    border-radius: 20px;
  }

  .page-icon-mark svg {
    width: 36px;
    height: 36px;
  }

  .page-icon-mark i {
    font-size: 36px;
  }

  .page-icon-core {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .page-icon-core strong {
    font-size: clamp(1.3rem, 6vw, 1.65rem);
  }

  .mobile-menu-button {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .site-header.is-menu-open .nav-shell {
    padding: 12px;
  }

  .brand-title {
    font-size: 1.35rem;
  }

  .brand-subtitle {
    font-size: 0.68rem;
  }

  .hero-fresh-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3rem);
  }

  .hero-fresh-visual {
    min-height: 310px;
  }

  .hero-fresh-board {
    min-height: 310px;
    border-radius: 24px;
  }

  .hero-fresh-server-primary {
    width: 144px;
    padding: 12px;
  }

  .hero-fresh-chip {
    width: 96px;
    height: 96px;
  }

  .hero-fresh-chip-core {
    inset: 22px;
  }

  .hero-fresh-server-secondary {
    top: 150px;
    padding: 12px;
  }

  .hero-fresh-shield-icon {
    width: 86px;
    height: 86px;
  }

  .hero-fresh-shield-icon svg {
    width: 62px;
    height: 62px;
  }

  .hero-copy h1,
  .page-hero-copy h1 {
    font-size: clamp(2rem, 12vw, 2.85rem);
  }

  .hero-service-stage {
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .hero-stage-bar,
  .hero-stage-footer {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: start;
  }

  .hero-stage-copy h2 {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
  }

  .hero-stage-copy p,
  .hero-stage-list li,
  .hero-stage-tile span,
  .hero-stage-stat span {
    font-size: 0.94rem;
  }

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

  .lead,
  .page-lead,
  .content-lead {
    font-size: 0.98rem;
    line-height: 1.72;
  }

  .hero-support-card,
  .hero-entry-card,
  .service-card,
  .calculator-card,
  .pricing-calculator-result,
  .content-block,
  .content-panel,
  .sidebar-card,
  .quote-card,
  .price-card {
    border-radius: 22px;
  }

  .hero-support-avatar {
    width: min(100%, 214px);
  }

  .hero-support-pills {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-support-pills span {
    justify-content: flex-start;
  }

  .hero-entry-section {
    padding: 0 0 44px;
  }

  .services-section,
  .benefits-section,
  .contact-section,
  .page-content,
  .content-section {
    padding: 34px 0 46px;
  }
}
