@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --color-primary: #0f172a;
  --color-on-primary: #ffffff;
  --color-secondary: #334155;
  --color-accent: #09a6ff;
  --color-accent-strong: #0077cc;
  --color-background: #f8fafc;
  --color-surface: #ffffff;
  --color-foreground: #020617;
  --color-muted: #e8ecf1;
  --color-muted-text: #475569;
  --color-border: #e2e8f0;
  --color-destructive: #dc2626;
  --color-ring: #09a6ff;
  --color-success: #0f766e;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 28px rgba(15, 23, 42, 0.12);
  --shadow-xl: 0 24px 48px rgba(15, 23, 42, 0.18);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 76px;
  --container: 72rem;
  --font: "IBM Plex Sans", system-ui, sans-serif;
  --ease: 200ms ease;
}

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

html {
  scroll-behavior: smooth;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-foreground);
  background: var(--color-background);
  padding-top: var(--header-h);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-accent-strong);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--color-accent);
}

:focus-visible {
  outline: 3px solid var(--color-ring);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--color-accent);
  color: #041018;
  padding: 0.75rem 1rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 3rem, var(--container));
  }
}

@media (min-width: 1024px) {
  .container {
    width: min(100% - 4rem, var(--container));
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(15, 23, 42, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(9, 166, 255, 0.18);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  min-height: 44px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease);
}

.nav-toggle:hover {
  background: rgba(9, 166, 255, 0.15);
  border-color: var(--color-accent);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

@media (min-width: 1100px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  display: none;
}

.site-nav.is-open,
.site-nav[data-open="true"] {
  display: block;
}

@media (min-width: 1100px) {
  .site-nav {
    display: block;
  }
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.15rem;
  justify-content: flex-end;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 0.55rem;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: color var(--ease), background var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: #fff;
  background: rgba(9, 166, 255, 0.16);
}

.nav-list a[aria-current="page"] {
  color: var(--color-accent);
}

@media (max-width: 1099px) {
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #0b1224;
    border-bottom: 1px solid rgba(9, 166, 255, 0.2);
    padding: 0.75rem 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list a {
    width: 100%;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border-radius: 8px;
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease), border-color var(--ease), color var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: #041018;
  box-shadow: 0 8px 20px rgba(9, 166, 255, 0.28);
}

.btn-primary:hover {
  background: #3bb8ff;
  color: #041018;
}

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

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.btn-ghost {
  background: var(--color-surface);
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn-ghost:hover {
  border-color: var(--color-accent);
  color: var(--color-accent-strong);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 480px at 80% -10%, rgba(9, 166, 255, 0.22), transparent 60%),
    radial-gradient(800px 400px at 10% 110%, rgba(9, 166, 255, 0.1), transparent 55%),
    linear-gradient(180deg, #0f172a 0%, #0b1328 100%);
  color: #fff;
  padding: 4rem 0 5rem;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 85%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero h1 em,
.mark {
  font-style: normal;
  color: var(--color-accent);
}

.lead {
  margin: 0 0 1.75rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 38rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(9, 166, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-row strong {
  display: block;
  font-size: 1.5rem;
  color: var(--color-accent);
  letter-spacing: -0.03em;
}

.stat-row span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}

.section {
  padding: 4rem 0;
}

.section-muted {
  background: var(--color-surface);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-head h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.section-kicker {
  color: var(--color-accent-strong);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.4rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid-2,
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .grid-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}

.card,
.reason-card,
.client-card,
.calc-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease), border-color var(--ease);
}

.calc-card:hover,
.client-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
  border-color: rgba(9, 166, 255, 0.45);
}

.section-services {
  background: #f1f5f9;
}

.service-catalog {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.service-group-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  margin: 0 0 1rem;
  padding: 0.95rem 1.15rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(18rem 8rem at 100% 0%, rgba(9, 166, 255, 0.28), transparent 60%),
    linear-gradient(165deg, #0f172a 0%, #10233d 100%);
  color: #fff;
}

.service-group-head .service-icon {
  background: rgba(9, 166, 255, 0.2);
  color: var(--color-accent);
  box-shadow: none;
}

.service-group-title {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.service-group-deco {
  margin-left: auto;
  width: min(38%, 11rem);
  height: 2.4rem;
  flex-shrink: 0;
  opacity: 0.9;
}

.service-group--fin .service-group-head {
  background:
    radial-gradient(16rem 8rem at 100% 120%, rgba(9, 166, 255, 0.22), transparent 58%),
    linear-gradient(165deg, #0f2744 0%, #0f172a 100%);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.service-row {
  display: grid;
  grid-template-columns: 3.25rem minmax(0, 1fr);
  gap: 0.75rem 1rem;
  align-items: start;
  padding: 1.2rem 1.1rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}

.service-row:hover,
.service-row:focus-within {
  transform: translateY(-2px);
  border-color: rgba(9, 166, 255, 0.45);
  box-shadow: 0 12px 28px rgba(9, 166, 255, 0.14);
}

.service-index {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(9, 166, 255, 0.12);
  color: var(--color-accent-strong);
  flex-shrink: 0;
}

.service-icon .icon {
  width: 22px;
  height: 22px;
}

.service-row .num {
  font-size: 0.75rem;
  margin: 0;
}

.service-main {
  display: contents;
}

.service-body,
.service-row .meta,
.service-row .btn,
.service-mark {
  position: relative;
  z-index: 1;
}

.service-body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.service-body p {
  margin: 0;
}

.service-row .meta {
  grid-column: 2;
  margin: 0.15rem 0 0;
}

.service-row .meta span {
  background: #eef7ff;
  color: var(--color-accent-strong);
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
}

.service-row .btn {
  grid-column: 1 / -1;
  justify-self: stretch;
  width: 100%;
}

.service-mark {
  display: none;
}

.service-row--lead {
  background:
    radial-gradient(18rem 10rem at 100% 0%, rgba(9, 166, 255, 0.32), transparent 62%),
    linear-gradient(165deg, #0f172a 0%, #10233d 100%);
  color: #fff;
  border-color: rgba(9, 166, 255, 0.28);
  box-shadow: var(--shadow-xl);
}

.service-row--lead h3,
.service-row--lead .service-body p {
  color: #fff;
}

.service-row--lead .service-icon {
  background: rgba(9, 166, 255, 0.2);
  color: var(--color-accent);
}

.service-row--lead .meta span {
  background: rgba(9, 166, 255, 0.18);
  color: var(--color-accent);
}

.service-row--lead .service-mark {
  display: block;
  position: absolute;
  right: 0.7rem;
  bottom: -0.4rem;
  font-size: 5.5rem;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  color: #fff;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.service-row--tint {
  background: linear-gradient(145deg, #d7f0ff 0%, #f7fbff 52%, #fff 100%);
  color: inherit;
  border-color: rgba(9, 166, 255, 0.32);
}

.service-row--tint h3,
.service-row--tint .service-body p {
  color: inherit;
}

.service-row--tint .service-icon {
  background: rgba(9, 166, 255, 0.16);
  color: var(--color-accent-strong);
}

.service-row--tint .meta span {
  background: #eef7ff;
  color: var(--color-accent-strong);
}

.service-row--tint .service-mark {
  color: var(--color-primary);
  opacity: 0.07;
}

@media (min-width: 900px) {
  .service-group-head {
    margin-left: calc(3.5rem + 1rem);
  }

  .service-row {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    align-items: stretch;
    gap: 1rem;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .service-row:hover,
  .service-row:focus-within {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }

  .service-index {
    position: relative;
    z-index: 1;
    justify-content: flex-start;
    padding-top: 1.15rem;
  }

  .service-row .service-icon {
    background: #fff;
    box-shadow: 0 0 0 4px #f1f5f9;
  }

  .service-row--lead .service-icon,
  .service-row--tint .service-icon {
    background: #fff;
    color: var(--color-accent-strong);
  }

  .service-main {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 10.25rem minmax(13.5rem, auto);
    align-items: center;
    gap: 1rem 1.25rem;
    padding: 1.2rem 1.35rem;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
  }

  .service-row:hover .service-main,
  .service-row:focus-within .service-main {
    transform: translateY(-2px);
    border-color: rgba(9, 166, 255, 0.45);
    box-shadow: 0 12px 28px rgba(9, 166, 255, 0.14);
  }

  .service-row .meta {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
  }

  .service-row .btn {
    grid-column: auto;
    width: auto;
    justify-self: end;
    white-space: nowrap;
  }

  .service-row--lead .service-main {
    background:
      radial-gradient(18rem 10rem at 100% 0%, rgba(9, 166, 255, 0.32), transparent 62%),
      linear-gradient(165deg, #0f172a 0%, #10233d 100%);
    color: #fff;
    border-color: rgba(9, 166, 255, 0.28);
    box-shadow: var(--shadow-xl);
  }

  .service-row--tint .service-main {
    background: linear-gradient(145deg, #d7f0ff 0%, #f7fbff 52%, #fff 100%);
    color: inherit;
    border-color: rgba(9, 166, 255, 0.32);
  }

  .service-row--lead,
  .service-row--tint {
    background: transparent;
    color: inherit;
    border: none;
    box-shadow: none;
  }
}

.num {
  font-weight: 700;
  color: var(--color-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.reason-card h3,
.client-card h3,
.calc-card h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--color-muted-text);
  font-size: 0.92rem;
  margin: 0.75rem 0 1rem;
}

.page-hero {
  background: var(--color-primary);
  color: #fff;
  padding: 3rem 0 2.5rem;
}

.page-hero p {
  max-width: 46rem;
  color: rgba(255, 255, 255, 0.78);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.9rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-accent);
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.35);
}

.prose {
  max-width: 48rem;
}

.prose h2 {
  margin-top: 2.2rem;
  letter-spacing: -0.02em;
}

.prose h3 {
  margin-top: 1.6rem;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
}
.prose th,
.prose td {
  border: 1px solid var(--color-border);
  padding: 0.75rem 1rem;
  text-align: left;
  vertical-align: top;
}
.prose th {
  width: 34%;
  background: var(--color-muted);
}

.article-layout {
  display: grid;
  gap: 2rem;
}

@media (min-width: 960px) {
  .article-layout {
    grid-template-columns: minmax(0, 1fr) 18rem;
    align-items: start;
  }
}

.toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.toc h2 {
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.1rem;
}

.toc a {
  text-decoration: none;
  color: var(--color-secondary);
}

.toc a:hover {
  color: var(--color-accent-strong);
}

.steps {
  display: grid;
  gap: 1rem;
}

@media (min-width: 800px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.promo {
  display: grid;
  gap: 1rem;
  align-items: center;
  background: linear-gradient(135deg, #0f172a, #12304d);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid rgba(9, 166, 255, 0.3);
}

@media (min-width: 700px) {
  .promo {
    grid-template-columns: 1fr auto;
  }
}

.cta-band {
  background: var(--color-primary);
  color: #fff;
  padding: 4rem 0;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 40rem;
}

.site-footer {
  background: #070b16;
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.site-footer a {
  color: #fff;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-accent);
}

.footer-nav {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  justify-content: space-between;
  font-size: 0.88rem;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.62);
  backdrop-filter: blur(4px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 32rem);
  margin: 8vh auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-xl);
}

.modal-dialog h2 {
  margin: 0 0 0.4rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
  margin: 0.85rem 0;
}

.form-field label {
  font-weight: 600;
  font-size: 0.92rem;
}

.form-field input:not([type="checkbox"]),
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  font-size: 16px;
  background: #fff;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.form-field input:not([type="checkbox"]):focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(9, 166, 255, 0.25);
}

.form-field label:has(> input[type="checkbox"]) {
  display: block;
  min-height: 44px;
  padding: 0.65rem 0;
  line-height: 1.4;
  cursor: pointer;
}

.form-field input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
  margin: 0 0.5rem 0 0;
  padding: 0;
  vertical-align: -0.2rem;
  accent-color: var(--color-accent);
  cursor: pointer;
}

.form-field input[type="checkbox"]:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.field-error {
  color: var(--color-destructive);
  font-size: 0.85rem;
}

.form-note {
  font-size: 0.88rem;
  color: var(--color-muted-text);
}

.calc-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
}

.calc-result {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  background: #f0f9ff;
  border: 1px solid rgba(9, 166, 255, 0.35);
  border-radius: 8px;
  font-weight: 600;
}

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  animation: rise 0.45s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal:nth-child(1) { animation-delay: 0.05s; }
.reveal:nth-child(2) { animation-delay: 0.11s; }
.reveal:nth-child(3) { animation-delay: 0.17s; }
.reveal:nth-child(4) { animation-delay: 0.23s; }
.reveal:nth-child(5) { animation-delay: 0.29s; }
.reveal:nth-child(6) { animation-delay: 0.35s; }
.reveal:nth-child(7) { animation-delay: 0.41s; }
.reveal:nth-child(8) { animation-delay: 0.47s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover,
  .calc-card:hover,
  .client-card:hover,
  .service-row:hover,
  .service-row:focus-within,
  .service-row:hover .service-main,
  .service-row:focus-within .service-main {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
