:root {
  --navy-950: #11182d;
  --navy-900: #1a2440;
  --navy-850: #222e4d;
  --navy-800: #2e3958;
  --white: #ffffff;
  --surface: #f6f8fc;
  --surface-2: #fbfcfe;
  --text: #1d2745;
  --muted: #60708d;
  --line: #d9e1ef;
  --amber: #ffb126;
  --amber-strong: #f9a90a;
  --shadow-soft: 0 14px 38px rgba(21, 32, 62, 0.07);
  --shadow-hero: 0 20px 50px rgba(255, 177, 38, 0.14);
  --shadow-amber: 0 26px 60px rgba(255, 177, 38, 0.2);
  --motion-fast: 160ms;
  --motion-medium: 240ms;
  --motion-slow: 420ms;
  --motion-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --motion-lift-xs: translateY(-1px);
  --motion-lift-sm: translateY(-3px);
  --motion-lift-md: translateY(-5px);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
  overflow-x: clip;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--surface);
  color: var(--text);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
  overscroll-behavior-x: none;
  overflow-x: clip;
}

main#top {
  position: relative;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

img,
svg {
  max-width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  background: transparent;
  border-bottom: 0;
}

.site-header.is-scrolled {
  background: #ffffff;
  backdrop-filter: blur(18px);
  border-color: rgba(31, 43, 73, 0.08);
  box-shadow: 0 10px 28px rgba(16, 24, 40, 0.06);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  position: relative;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  min-width: 0;
}

.brand {
  color: var(--white);
  transition: color 220ms ease;
}

.site-header.is-scrolled .brand {
  color: var(--text);
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy-900);
  color: var(--white);
  flex: 0 0 auto;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.footer-brand .brand-mark {
  background: var(--amber);
  color: #271a02;
}

.brand-mark svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-text,
.footer-brand span:last-child {
  font-size: 15px;
}

.brand-text {
  min-width: 0;
  white-space: nowrap;
}

.brand-text span,
.footer-brand span span {
  color: var(--amber);
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  transition: color 220ms ease;
}

.nav-v3-link {
  transition: color 220ms ease, transform var(--motion-fast) var(--motion-ease);
}

.desktop-nav a:hover {
  transform: var(--motion-lift-xs);
  color: var(--white);
}

.site-header.is-scrolled .desktop-nav {
  color: var(--muted);
}

.site-header.is-scrolled .desktop-nav a:hover {
  color: var(--text);
}

.menu-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  cursor: pointer;
  transition: border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.site-header.is-scrolled .menu-toggle {
  border-color: rgba(31, 43, 73, 0.1);
  background: var(--white);
  color: var(--text);
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--motion-fast) var(--motion-ease),
    opacity var(--motion-fast) var(--motion-ease);
}

.menu-toggle:hover {
  transform: var(--motion-lift-xs);
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

.menu-toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
}

.site-header.is-scrolled .menu-toggle[aria-expanded="true"] {
  background: rgba(31, 43, 73, 0.06);
  border-color: rgba(31, 43, 73, 0.14);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  gap: 12px;
  width: min(calc(100% - 32px), var(--container));
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(31, 43, 73, 0.08);
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease),
    visibility var(--motion-fast) var(--motion-ease);
  z-index: 115;
}

.mobile-nav.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.mobile-nav a:not(.button) {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(31, 43, 73, 0.08);
  border-radius: 14px;
  background: rgba(31, 43, 73, 0.02);
  color: var(--muted);
  font-weight: 600;
  transition: border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    transform var(--motion-fast) var(--motion-ease);
}

.mobile-nav a:not(.button):hover {
  border-color: rgba(31, 43, 73, 0.12);
  background: rgba(31, 43, 73, 0.05);
  color: var(--text);
  transform: translateX(3px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    filter var(--motion-fast) var(--motion-ease);
}

.button:hover {
  transform: var(--motion-lift-xs);
}

.button-primary {
  background: var(--amber);
  color: #1d1402;
  box-shadow: var(--shadow-hero);
}

.button-primary:hover {
  background: var(--amber-strong);
  box-shadow: 0 24px 54px rgba(255, 177, 38, 0.22);
  filter: saturate(1.03);
}

.button-secondary {
  color: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta {
  display: none;
  min-height: 38px;
  padding-inline: 14px;
  border-radius: 10px;
  font-size: 13px;
}

.hero {
  position: relative;
  overflow: hidden;
  margin-top: -76px;
  padding-top: 76px;
  background:
    radial-gradient(circle at 89% 13%, rgba(255, 177, 38, 0.22), transparent 25rem),
    radial-gradient(circle at 8% 92%, rgba(45, 70, 126, 0.28), transparent 24rem),
    linear-gradient(135deg, #0f182d 0%, #1c2130 45%, #151d34 100%);
  color: var(--white);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.65));
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(76px);
}

.hero-glow-amber {
  top: -80px;
  right: -10px;
  width: 320px;
  height: 320px;
  background: rgba(255, 177, 38, 0.16);
}

.hero-glow-blue {
  left: -20px;
  bottom: 20px;
  width: 320px;
  height: 320px;
  background: rgba(39, 70, 148, 0.16);
}

.hero-content {
  position: relative;
  padding: 100px 0 124px;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  margin-bottom: 28px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(255, 177, 38, 0.12);
}

.hero h1 {
  max-width: 13.4ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 5.05rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero-line {
  display: block;
  white-space: nowrap;
  color: var(--white);
  max-width: 100%;
}

.hero-accent {
  color: var(--amber);
}

.hero-copy {
  max-width: 610px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 2vw, 1.17rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 36px;
}

.hero-actions .button {
  min-width: 172px;
}

.highlights-row {
  display: grid;
  gap: 14px;
  margin-top: 52px;
}

.highlights-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  transition: transform var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease);
}

.highlights-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 177, 38, 0.12);
  color: var(--amber);
  font-size: 14px;
}

.section {
  padding: 96px 0;
  overflow: hidden;
}

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.section-dark {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 177, 38, 0.12), transparent 18rem),
    linear-gradient(135deg, #151d35 0%, #1a2440 100%);
  color: var(--white);
}

.section-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

.section-intro-center {
  margin-inline: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--amber-strong);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section h2,
.section-light h2,
.section-dark h2 {
  margin: 0;
  font-size: clamp(2.15rem, 5vw, 3.95rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-intro p:last-child {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.section-dark .section-intro p:last-child {
  color: rgba(255, 255, 255, 0.76);
}

.card-grid,
.pricing-grid,
.contact-grid,
.two-column,
.local-grid {
  display: grid;
  gap: 20px;
  min-width: 0;
}

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

.info-card,
.reason-card,
.feature-panel,
.price-card,
.contact-form,
.contact-panel,
.location-card {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  transition: transform var(--motion-medium) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-medium) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease);
  min-width: 0;
}

.info-card,
.reason-card,
.price-card,
.contact-form,
.contact-panel {
  background: var(--white);
  border: 1px solid var(--line);
}

.info-card,
.reason-card {
  padding: 22px 22px 20px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: #fff4e2;
  color: var(--amber-strong);
  font-weight: 700;
  transition: transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.info-card h3,
.reason-card h3,
.timeline-step h3,
.price-card h3 {
  margin: 18px 0 8px;
  font-size: 17px;
  line-height: 1.2;
}

.info-card p,
.reason-card p,
.price-card p,
.location-label span,
.field-error {
  color: var(--muted);
  line-height: 1.6;
}

.two-column,
.contact-grid {
  align-items: start;
}

.local-grid {
  align-items: center;
}

.tech-tags,
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.tech-tags span,
.location-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid var(--line);
  transition: transform var(--motion-fast) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.tech-tags span {
  background: #f2f5fa;
}

.location-tags span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
}

.feature-panel {
  position: relative;
  max-width: 550px;
  margin-left: auto;
  padding: 28px 28px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-amber);
}

.feature-list {
  margin: 0;
  padding: 0 0 18px;
  list-style: none;
  display: grid;
  gap: 18px;
  border-bottom: 1px solid #e4ebf5;
}

.feature-list li {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  padding-left: 56px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  min-width: 0;
}

.feature-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 14px;
  transition: transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.feature-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.feature-note::before {
  content: "✓";
  margin-right: 10px;
  color: var(--amber-strong);
  font-weight: 800;
}

.pricing-grid {
  align-items: stretch;
  margin-top: 14px;
}

.price-card {
  position: relative;
  min-height: 446px;
  padding: 32px 30px 28px;
}

.price-card-featured {
  background: var(--navy-900);
  border-color: transparent;
  color: var(--white);
  box-shadow: 0 22px 48px rgba(16, 24, 40, 0.16);
}

.price-card-featured .price-copy,
.price-card-featured li {
  color: rgba(255, 255, 255, 0.78);
}

.badge {
  position: absolute;
  left: 50%;
  top: -13px;
  transform: translateX(-50%);
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #261902;
  font-size: 13px;
  font-weight: 800;
  transition: transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease);
}

.badge::before {
  content: "✧";
  margin-right: 6px;
}

.price-copy {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
}

.price {
  margin: 26px 0 26px;
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  color: inherit;
}

.price-card ul {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.price-card li {
  position: relative;
  padding-left: 24px;
  line-height: 1.45;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--amber-strong);
  font-weight: 800;
}

.price-card .button {
  width: 100%;
}

.price-card:not(.price-card-featured) .button-secondary {
  background: var(--navy-900);
  border-color: var(--navy-900);
  color: var(--white);
}

.pricing-note {
  margin: 24px 0 0;
  text-align: center;
  color: var(--muted);
}

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

.reason-card {
  min-height: 142px;
  padding: 24px 26px 22px;
}

.section .reason-card {
  display: grid;
  align-content: start;
}

.section .reason-card h3 {
  margin-top: 0;
}

.reason-card::before {
  content: "♡";
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 16px;
  transition: transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.reason-card:nth-child(2)::before {
  content: "✎";
}

.reason-card:nth-child(3)::before {
  content: "▣";
}

.reason-card:nth-child(4)::before {
  content: "◔";
}

.location-card {
  position: relative;
  min-height: 404px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.location-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.28;
  transition: opacity var(--motion-medium) var(--motion-ease);
}

.location-card::before,
.location-card::after {
  content: "";
  position: absolute;
  inset: auto;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.location-card::before {
  left: -40px;
  right: -40px;
  top: 54%;
  height: 160px;
  transform: rotate(4deg);
}

.location-card::after {
  left: 48%;
  top: -20px;
  bottom: -20px;
  width: 140px;
  border-top: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  transform: rotate(6deg);
}

.location-pin {
  position: absolute;
  left: 50%;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #231702;
  font-size: 26px;
  box-shadow: 0 0 0 24px rgba(255, 177, 38, 0.08);
  transition: transform var(--motion-medium) var(--motion-ease),
    box-shadow var(--motion-medium) var(--motion-ease),
    filter var(--motion-fast) var(--motion-ease);
}

.location-label {
  position: absolute;
  left: 50%;
  top: 54%;
  transform: translate(-50%, 0);
  min-width: 138px;
  padding: 14px 16px 12px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  transition: transform var(--motion-medium) var(--motion-ease),
    border-color var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-medium) var(--motion-ease);
}

.location-label strong {
  display: block;
  font-size: 16px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
  margin-top: 4px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 42px;
  height: 1px;
  background: #e3e9f2;
  display: none;
}

.timeline-step {
  position: relative;
  transition: transform var(--motion-fast) var(--motion-ease);
}

.step-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
}

.timeline-step span {
  color: var(--amber-strong);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.timeline-step h3 {
  margin-top: 12px;
}

.timeline-step p {
  max-width: 250px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form,
.contact-panel {
  padding: 32px;
  min-width: 0;
}

.contact-form {
  background: var(--white);
}

.contact-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  color: var(--text);
  padding: 14px 15px;
  outline: none;
  transition: border-color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #7988a4;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(255, 177, 38, 0.8);
  box-shadow: 0 0 0 4px rgba(255, 177, 38, 0.12);
}

.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #ff5f5f;
  box-shadow: 0 0 0 4px rgba(255, 95, 95, 0.08);
}

.field-error {
  min-height: 18px;
  margin: 6px 0 0;
  color: #ef4d4d;
  font-size: 13px;
}

.button-submit {
  width: 100%;
  min-height: 54px;
  font-size: 15px;
  margin-top: 2px;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.contact-box {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  min-height: 98px;
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.contact-box strong,
.contact-box span,
.contact-box small {
  grid-column: 2;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-box strong {
  font-size: 17px;
}

.contact-box span {
  color: var(--muted);
  line-height: 1.5;
}

.contact-box small {
  color: var(--muted);
  font-size: 14px;
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  grid-row: 1 / span 3;
  border-radius: 14px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 16px;
  transition: transform var(--motion-fast) var(--motion-ease),
    background var(--motion-fast) var(--motion-ease),
    color var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-fast) var(--motion-ease);
}

.contact-icon-accent {
  background: var(--amber);
  color: #261902;
}

.contact-box-dark {
  background: var(--navy-900);
  border-color: transparent;
}

.contact-box-dark strong,
.contact-box-dark span,
.contact-box-dark small {
  color: var(--white);
}

.contact-box-dark span,
.contact-box-dark small {
  color: rgba(255, 255, 255, 0.76);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 120;
  min-width: min(440px, calc(100vw - 24px));
  padding: 14px 16px;
  border-radius: 16px;
  background: var(--navy-900);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 50px rgba(17, 24, 39, 0.2);
  transform: translate(-50%, 150%);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.toast.is-visible {
  transform: translate(-50%, 0);
  opacity: 1;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 110;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--amber);
  color: #241802;
  font-size: 22px;
  box-shadow: 0 18px 42px rgba(255, 177, 38, 0.3);
  transition: transform var(--motion-fast) var(--motion-ease),
    box-shadow var(--motion-medium) var(--motion-ease),
    filter var(--motion-fast) var(--motion-ease);
}

.info-card:hover,
.reason-card:hover {
  transform: var(--motion-lift-sm);
  border-color: rgba(31, 43, 73, 0.14);
  box-shadow: 0 18px 40px rgba(21, 32, 62, 0.1);
}

.info-card:hover .icon-badge,
.reason-card:hover::before {
  transform: translateY(-2px);
}

.feature-panel:hover {
  transform: var(--motion-lift-sm);
  box-shadow: 0 30px 70px rgba(255, 177, 38, 0.18);
}

.price-card:hover {
  transform: var(--motion-lift-md);
  border-color: rgba(31, 43, 73, 0.14);
  box-shadow: 0 20px 46px rgba(21, 32, 62, 0.12);
}

.price-card:hover .badge {
  transform: translateX(-50%) translateY(-1px);
}

.contact-box:hover {
  transform: var(--motion-lift-sm);
  border-color: rgba(31, 43, 73, 0.14);
  box-shadow: 0 18px 40px rgba(21, 32, 62, 0.1);
}

.contact-box:hover .contact-icon {
  transform: translateY(-1px);
}

.tech-tags span:hover,
.location-tags span:hover {
  transform: translateY(-2px);
}

.location-card:hover {
  transform: var(--motion-lift-sm);
}

.location-card:hover .location-pattern {
  opacity: 0.4;
}

.location-card:hover .location-pin {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 0 0 30px rgba(255, 177, 38, 0.1);
}

.location-card:hover .location-label {
  transform: translate(-50%, -2px);
}

.timeline-step:hover {
  transform: translateY(-2px);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(255, 177, 38, 0.36);
  filter: saturate(1.05);
}

.site-footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, 0.74);
  padding: 34px 0 28px;
}

.footer-shell {
  display: grid;
  gap: 18px;
  align-items: center;
}

.footer-shell nav {
  display: inline-flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-shell > :last-child {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 13px;
}

.footer-brand {
  color: var(--white);
}

.footer-brand span:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.footer-brand span span {
  color: var(--amber);
}

.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--motion-slow) var(--motion-ease),
    transform var(--motion-slow) var(--motion-ease);
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.device-section-shell {
  position: relative;
  z-index: 35;
  padding: clamp(2rem, 4vw, 3.5rem) 0 0;
  background: #080808;
}

.device-section-head {
  display: grid;
  justify-items: center;
  gap: 1.5rem;
  padding: 0 1rem 1.5rem;
  background: #080808;
}

.device-scroll-wrapper {
  position: relative;
  z-index: 40;
  overflow: clip;
  isolation: isolate;
  background: transparent;
}

.device-look {
  position: sticky;
  top: var(--device-header-height, 76px);
  width: 100%;
  height: fit-content;
  margin: 0;
  display: block;
  isolation: isolate;
  background: #1e1e1e;
  border: 4px solid #5a5a5a;
  border-radius: 28px;
  padding: 10px 8px 8px;
  overflow: hidden;
  transform-origin: center top;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.29), 0 37px 37px rgba(0, 0, 0, 0.26), 0 84px 50px rgba(0, 0, 0, 0.15);
  will-change: transform, padding, border-width, border-radius;
  pointer-events: none;
  backface-visibility: hidden;
}

#device-look {
  pointer-events: auto;
  margin-bottom: -1px;
}

.device-content {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: inherit;
  overflow: hidden;
}

.device-content-shell {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: transparent;
  border-radius: inherit;
  overflow: visible;
}

.device-title-area {
  text-align: center;
  will-change: transform, opacity;
  max-width: 52rem;
  position: relative;
  z-index: 2;
  font-family: "Inter", sans-serif;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
}

.device-title-kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  line-height: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.35);
}

.device-title-h2 {
  margin: 0;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  color: #fff;
}

.device-title-h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

.device-switcher-floating {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 2;
  display: flex;
  width: min(92vw, 58rem);
  justify-content: center;
  gap: 1rem;
  padding: 0;
  background: transparent;
  border-radius: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  font-family: "Inter", sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

.device-switcher-floating .device-switcher-label {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

.device-switcher-floating .device-chip {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
}

.device-switcher-floating .device-chip:hover {
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.device-switcher-floating .device-chip.is-active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

#device-content {
  margin: 0 !important;
  pointer-events: none;
  overflow-anchor: none;
  contain: paint;
  user-select: none;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#device-content-shell {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  max-width: 100%;
}

#device-content .container {
  max-width: none;
}

#device-content .container > * {
  min-width: 0;
  max-width: 100%;
}

#device-content .fade-in {
  pointer-events: none;
  opacity: 1;
  transform: none;
}

#device-content input,
#device-content textarea,
#device-content button,
#device-content select,
#device-content a {
  pointer-events: none;
}

.device-section-shell.is-device-interactive #device-content {
  pointer-events: auto;
  user-select: text;
}

.device-section-shell.is-device-interactive #device-content .fade-in {
  pointer-events: auto;
}

.device-section-shell.is-device-interactive #device-content input,
.device-section-shell.is-device-interactive #device-content textarea,
.device-section-shell.is-device-interactive #device-content button,
.device-section-shell.is-device-interactive #device-content select,
.device-section-shell.is-device-interactive #device-content a {
  pointer-events: auto;
}

.device-section-shell.is-device-animating #device-content .info-card,
.device-section-shell.is-device-animating #device-content .reason-card,
.device-section-shell.is-device-animating #device-content .feature-panel,
.device-section-shell.is-device-animating #device-content .price-card,
.device-section-shell.is-device-animating #device-content .contact-form,
.device-section-shell.is-device-animating #device-content .contact-panel,
.device-section-shell.is-device-animating #device-content .location-card,
.device-section-shell.is-device-animating #device-content a,
.device-section-shell.is-device-animating #device-content button {
  transition: none !important;
}

.device-problem-section {
  padding-top: clamp(36px, 4.5vw, 72px);
}

body.theme-editorial #device-content,
body[data-theme="editorial"] #device-content {
  background: #0b0b0b;
}

body.theme-industrial #device-content,
body[data-theme="industrial"] #device-content {
  background: #f7f4ee;
}

body.theme-ops #device-content,
body[data-theme="ops"] #device-content {
  background: #0b0c11;
}

body.theme-poster #device-content,
body[data-theme="poster"] #device-content {
  background: #fff8e8;
}

body.theme-editorial .device-title-area,
body.theme-industrial .device-title-area,
body.theme-ops .device-title-area,
body.theme-poster .device-title-area,
body[data-theme="editorial"] .device-title-area,
body[data-theme="industrial"] .device-title-area,
body[data-theme="ops"] .device-title-area,
body[data-theme="poster"] .device-title-area {
  font-family: "Inter", sans-serif;
  text-transform: none;
  letter-spacing: normal;
  color: #fff;
}

body.theme-editorial .device-title-kicker,
body.theme-industrial .device-title-kicker,
body.theme-ops .device-title-kicker,
body.theme-poster .device-title-kicker,
body[data-theme="editorial"] .device-title-kicker,
body[data-theme="industrial"] .device-title-kicker,
body[data-theme="ops"] .device-title-kicker,
body[data-theme="poster"] .device-title-kicker {
  font-family: "Inter", sans-serif;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}

body.theme-editorial .device-title-h2,
body.theme-industrial .device-title-h2,
body.theme-ops .device-title-h2,
body.theme-poster .device-title-h2,
body[data-theme="editorial"] .device-title-h2,
body[data-theme="industrial"] .device-title-h2,
body[data-theme="ops"] .device-title-h2,
body[data-theme="poster"] .device-title-h2 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-transform: none;
  color: #fff;
}

body.theme-editorial .device-title-h2 em,
body.theme-industrial .device-title-h2 em,
body.theme-ops .device-title-h2 em,
body.theme-poster .device-title-h2 em,
body[data-theme="editorial"] .device-title-h2 em,
body[data-theme="industrial"] .device-title-h2 em,
body[data-theme="ops"] .device-title-h2 em,
body[data-theme="poster"] .device-title-h2 em {
  font-style: italic;
  color: rgba(255, 255, 255, 0.55);
}

body.theme-editorial .device-switcher-floating,
body.theme-industrial .device-switcher-floating,
body.theme-ops .device-switcher-floating,
body.theme-poster .device-switcher-floating,
body[data-theme="editorial"] .device-switcher-floating,
body[data-theme="industrial"] .device-switcher-floating,
body[data-theme="ops"] .device-switcher-floating,
body[data-theme="poster"] .device-switcher-floating {
  font-family: "Inter", sans-serif;
  text-transform: none;
  letter-spacing: normal;
}

body.theme-editorial .device-switcher-floating .device-switcher-label,
body.theme-industrial .device-switcher-floating .device-switcher-label,
body.theme-ops .device-switcher-floating .device-switcher-label,
body.theme-poster .device-switcher-floating .device-switcher-label,
body[data-theme="editorial"] .device-switcher-floating .device-switcher-label,
body[data-theme="industrial"] .device-switcher-floating .device-switcher-label,
body[data-theme="ops"] .device-switcher-floating .device-switcher-label,
body[data-theme="poster"] .device-switcher-floating .device-switcher-label {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
}

body.theme-editorial .device-switcher-floating .device-chip,
body.theme-industrial .device-switcher-floating .device-chip,
body.theme-ops .device-switcher-floating .device-chip,
body.theme-poster .device-switcher-floating .device-chip,
body[data-theme="editorial"] .device-switcher-floating .device-chip,
body[data-theme="industrial"] .device-switcher-floating .device-chip,
body[data-theme="ops"] .device-switcher-floating .device-chip,
body[data-theme="poster"] .device-switcher-floating .device-chip {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  box-shadow: none;
}

body.theme-editorial .device-switcher-floating .device-chip.is-active,
body.theme-industrial .device-switcher-floating .device-chip.is-active,
body.theme-ops .device-switcher-floating .device-chip.is-active,
body.theme-poster .device-switcher-floating .device-chip.is-active,
body[data-theme="editorial"] .device-switcher-floating .device-chip.is-active,
body[data-theme="industrial"] .device-switcher-floating .device-chip.is-active,
body[data-theme="ops"] .device-switcher-floating .device-chip.is-active,
body[data-theme="poster"] .device-switcher-floating .device-chip.is-active {
  background: #fff;
  color: #111;
  border-color: #fff;
}

@media (max-width: 979px) {
  .nav-cta,
  .theme-switcher-desktop {
    display: none;
  }

  .device-switcher-floating {
    width: min(94vw, 38rem);
    flex-direction: column;
    align-items: center;
  }

  .device-switcher-floating .device-switcher-chips {
    justify-content: center;
  }

}

@media (max-width: 719px) {
  html,
  body,
  .device-scroll-wrapper,
  .device-look,
  .device-content {
    touch-action: pan-y pinch-zoom;
  }

  #beams-canvas {
    filter: blur(10px);
  }

  .beams-overlay {
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
  }

  .site-header.is-scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .container {
    width: min(calc(100% - 20px), var(--container));
  }

  #leistungen .container,
  #leistungen ~ .section .container {
    width: min(calc(100%), var(--container));
  }

  .site-header {
    backdrop-filter: none;
  }

  .device-scroll-wrapper {
    margin-top: 0;
  }

  .device-title-h2 {
    font-size: clamp(1.4rem, 8vw, 2.1rem);
  }

  .device-switcher-floating {
    width: calc(100vw - 1.5rem);
    gap: 0.75rem;
  }

  .device-switcher-floating .device-switcher-label {
    font-size: 0.7rem;
  }

  .device-chip {
    height: 2rem;
    padding-inline: 0.8rem;
  }

  .device-look {
    border-radius: 24px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.16);
  }

  .device-content {
    border-radius: 16px;
  }

  .device-look,
  .device-content {
    will-change: auto;
  }

  .device-switcher-floating .device-chip {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #device-content .info-card,
  #device-content .reason-card,
  #device-content .feature-panel,
  #device-content .price-card,
  #device-content .contact-form,
  #device-content .contact-panel,
  #device-content .location-card {
    box-shadow: 0 8px 18px rgba(21, 32, 62, 0.06);
    transition: background var(--motion-fast) var(--motion-ease),
      border-color var(--motion-fast) var(--motion-ease);
  }

  .nav-shell {
    gap: 10px;
    min-height: 72px;
  }

  .brand {
    flex: 1 1 auto;
    gap: 8px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    border-radius: 11px;
  }

  .brand-text,
  .footer-brand span:last-child {
    font-size: 14px;
  }

  .mobile-nav {
    width: calc(100% - 12px);
    max-height: min(calc(100vh - 92px), 560px);
    padding: 12px;
    overflow: visible;
    overscroll-behavior: contain;
  }

  .mobile-nav a:not(.button) {
    min-height: 46px;
    padding-inline: 12px;
  }

  .hero {
    margin-top: -72px;
    padding-top: 72px;
  }

  .hero-content {
    padding: 88px 0 92px;
  }

  .eyebrow {
    min-height: 32px;
    padding-inline: 12px;
    margin-bottom: 22px;
    font-size: 11px;
    line-height: 1.25;
    max-width: 100%;
    white-space: normal;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.38rem, 8.2vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.042em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
  }

  .hero-line {
    display: block;
    width: auto;
    max-width: 100%;
    margin-bottom: 0.06em;
  }

  .hero-line:first-child {
    white-space: normal;
    text-wrap: balance;
  }

  .hero-line:last-child {
    margin-bottom: 0;
  }

  .hero-accent {
    display: inline;
    white-space: inherit;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }

  .hero-copy {
    max-width: 32rem;
    margin-top: 20px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    width: 100%;
    gap: 12px;
    margin-top: 28px;
  }

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

  .highlights-row {
    gap: 10px;
    margin-top: 34px;
  }

  .highlights-item {
    min-width: 0;
    font-size: 13px;
    align-items: center;
  }

  .section {
    padding: 76px 0;
  }

  .section-intro {
    margin-bottom: 30px;
  }

  .section h2,
  .section-light h2,
  .section-dark h2 {
    font-size: clamp(2rem, 10.5vw, 3rem);
    line-height: 0.97;
  }

  .section-intro p:last-child {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.55;
  }

  .info-card,
  .reason-card,
  .price-card,
  .contact-form {
    padding: 20px;
  }

  .feature-panel {
    max-width: none;
    margin-left: 0;
    padding: 22px 20px 18px;
  }

  .feature-list {
    gap: 14px;
    padding-bottom: 16px;
  }

  .feature-list li {
    padding-left: 48px;
    font-size: 15px;
    line-height: 1.45;
  }

  .feature-list li::before {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .price-card,
  .reason-card {
    min-height: 0;
  }

  .location-card {
    min-height: 320px;
  }

  .timeline {
    gap: 22px;
  }

  .timeline-step p {
    max-width: none;
  }

  .step-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .contact-form {
    padding: 24px;
  }

  .contact-panel {
    gap: 14px;
  }

  .field {
    margin-bottom: 16px;
  }

  .field textarea {
    min-height: 128px;
  }

  .contact-box {
    min-height: 0;
    padding: 18px;
  }

  .toast {
    bottom: 14px;
    width: calc(100vw - 24px);
    min-width: 0;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .footer-shell {
    gap: 14px;
  }

  .footer-shell nav {
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 40px);
  }

  .mobile-nav {
    width: calc(100% - 10px);
  }

  .hero-content {
    padding: 84px 0 88px;
  }

  .eyebrow {
    padding-inline: 11px;
    font-size: 10px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.04rem, 8.7vw, 2.88rem);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: 0.96rem;
  }
}

@media (max-width: 430px) {
  .container {
    width: calc(100% - 20px);
  }

  .nav-shell {
    gap: 8px;
    min-height: 68px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
  }

  .brand-mark svg {
    width: 13px;
    height: 13px;
  }

  .brand-text,
  .footer-brand span:last-child {
    font-size: 13px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .mobile-nav {
    width: calc(100% - 8px);
    top: calc(100% + 6px);
    padding: 10px;
    gap: 10px;
    border-radius: 18px;
  }

  .hero {
    margin-top: -68px;
    padding-top: 68px;
  }

  .hero-content {
    padding: 78px 0 82px;
  }

  .eyebrow {
    min-height: 30px;
    padding-inline: 10px;
    margin-bottom: 18px;
    font-size: 10px;
    letter-spacing: 0;
    line-height: 1.3;
  }

  .eyebrow-dot {
    width: 7px;
    height: 7px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.88rem, 8.4vw, 2.34rem);
    line-height: 1.01;
    letter-spacing: -0.024em;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 0.95rem;
    line-height: 1.48;
  }

  .hero-actions {
    margin-top: 24px;
  }

  .button,
  .button-submit {
    min-height: 48px;
  }

  .highlights-row {
    margin-top: 28px;
  }

  .highlights-item {
    gap: 8px;
    font-size: 12px;
    align-items: center;
  }

  .highlights-icon {
    width: 26px;
    min-width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 13px;
  }

  .section {
    padding: 68px 0;
  }

  .section-kicker {
    margin-bottom: 10px;
    font-size: 11px;
  }

  .section h2,
  .section-light h2,
  .section-dark h2 {
    font-size: clamp(1.8rem, 11vw, 2.65rem);
  }

  .section-intro p:last-child,
  .info-card p,
  .reason-card p,
  .price-card p,
  .timeline-step p,
  .contact-box span,
  .contact-box small {
    font-size: 14px;
  }

  .info-card,
  .reason-card,
  .feature-panel,
  .price-card,
  .contact-form {
    border-radius: 18px;
  }

  .info-card,
  .reason-card,
  .price-card {
    padding: 18px;
  }

  .icon-badge,
  .reason-card::before {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .price {
    margin-block: 20px 22px;
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .pricing-note {
    margin-top: 18px;
    font-size: 12px;
  }

  .location-card {
    min-height: 280px;
  }

  .location-pin {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .location-label {
    min-width: 126px;
    padding: 12px 14px 10px;
  }

  .timeline {
    gap: 18px;
  }

  .timeline-step span {
    font-size: 11px;
  }

  .timeline-step h3 {
    margin-top: 10px;
  }

  .contact-form {
    padding: 20px 18px;
  }

  .contact-box {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
    padding: 16px;
  }

  .contact-box strong {
    font-size: 16px;
  }

  .contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 15px;
  }

  .toast {
    bottom: 12px;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 14px;
  }

  .whatsapp-float {
    right: 12px;
    bottom: 12px;
    width: 50px;
    height: 50px;
    font-size: 19px;
  }

  .site-footer {
    padding: 28px 0 22px;
  }

  .footer-shell nav {
    gap: 14px;
    font-size: 14px;
  }
}

@media (max-width: 359px) {
  .hero h1 {
    max-width: 100%;
    font-size: clamp(1.72rem, 7.9vw, 2.04rem);
    line-height: 1.02;
    letter-spacing: -0.018em;
  }

  .feature-list li {
    padding-left: 44px;
    font-size: 14px;
  }

  .contact-box {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .contact-box strong,
  .contact-box span,
  .contact-box small {
    grid-column: auto;
  }

  .contact-icon {
    grid-row: auto;
  }

  .whatsapp-float {
    width: 46px;
    height: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .fade-in,
  .fade-in.is-visible {
    opacity: 1;
    transform: none;
  }

  .button:hover,
  .menu-toggle:hover,
  .mobile-nav a:not(.button):hover,
  .info-card:hover,
  .reason-card:hover,
  .feature-panel:hover,
  .price-card:hover,
  .contact-box:hover,
  .location-card:hover,
  .timeline-step:hover,
  .whatsapp-float:hover,
  .tech-tags span:hover,
  .location-tags span:hover,
  .info-card:hover .icon-badge,
  .reason-card:hover::before,
  .contact-box:hover .contact-icon,
  .location-card:hover .location-pin,
  .location-card:hover .location-label,
  .price-card:hover .badge,
  .desktop-nav a:hover {
    transform: none !important;
  }
}

@media (min-width: 720px) {
  .container {
    width: min(calc(100% - 56px), var(--container));
  }

  .hero-actions {
    flex-direction: row;
  }

  .highlights-row {
    grid-template-columns: repeat(3, max-content);
    gap: 44px;
  }

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

  .pricing-grid .price-card-featured {
    grid-column: 1 / -1;
    order: -1;
  }

  .feature-panel {
    max-width: none;
    margin-left: 0;
  }

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

  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .timeline-step p {
    max-width: none;
  }

  .contact-box-dark {
    grid-column: 1 / -1;
  }

  .footer-shell {
    grid-template-columns: 1fr auto;
  }

  .footer-shell > :last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 980px) {
  .desktop-nav,
  .nav-cta {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-content {
    padding: 118px 0 132px;
  }

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

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

  .pricing-grid .price-card-featured {
    grid-column: auto;
    order: 0;
  }

  .contact-grid {
    max-width: 980px;
    margin: 0 auto;
    grid-template-columns: minmax(0, 1.22fr) minmax(330px, 0.78fr);
    gap: 30px;
    align-items: start;
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-shell {
    grid-template-columns: 1fr auto;
  }

  .footer-shell nav {
    justify-self: end;
  }
}

@media (min-width: 1180px) {
  .two-column,
  .local-grid {
    grid-template-columns: minmax(0, 1fr) minmax(470px, 550px);
    gap: 56px;
  }

  .feature-panel {
    max-width: 550px;
    margin-left: auto;
  }

  .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 56px;
  }

  .timeline::before {
    display: block;
  }
}
