@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500;600;700&family=Space+Grotesk:wght@400;500;700&display=swap");

:root {
  --bg: #040710;
  --bg-soft: #08101f;
  --panel: rgba(9, 17, 34, 0.82);
  --panel-strong: rgba(10, 18, 34, 0.94);
  --panel-alt: rgba(12, 23, 43, 0.9);
  --line: rgba(123, 211, 255, 0.15);
  --line-strong: rgba(123, 211, 255, 0.34);
  --text: #edf6ff;
  --muted: #9ab1d2;
  --muted-strong: #b8cae2;
  --cyan: #71deff;
  --blue: #6e7dff;
  --violet: #8e77ff;
  --orange: #ff8f59;
  --green: #7ef8b6;
  --danger: #ff6e7a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --glow: 0 0 0 1px rgba(113, 222, 255, 0.1), 0 20px 40px rgba(5, 14, 30, 0.48);
  --radius: 26px;
  --container: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Space Grotesk", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(110, 125, 255, 0.18), transparent 28%),
    radial-gradient(circle at 60% 14%, rgba(142, 119, 255, 0.12), transparent 22%),
    radial-gradient(circle at 85% 10%, rgba(113, 222, 255, 0.18), transparent 22%),
    radial-gradient(circle at 65% 35%, rgba(255, 143, 89, 0.08), transparent 26%),
    linear-gradient(180deg, #03050d 0%, #050a14 30%, #040710 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(113, 222, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(113, 222, 255, 0.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0, rgba(113, 222, 255, 0.08), transparent 26%),
    radial-gradient(circle at 90% 20%, rgba(255, 143, 89, 0.06), transparent 20%);
}

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

.site-shell { position: relative; overflow-x: clip; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 7, 16, 0.92), rgba(4, 7, 16, 0.72));
  border-bottom: 1px solid var(--line);
}

.site-header .inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { display: flex; align-items: center; gap: 14px; }
.brand img { width: 54px; height: 54px; object-fit: contain; }

.brand-mark {
  padding: 8px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(113, 222, 255, 0.08);
}

.brand-title,
.hero-title,
.section-title,
.service-card h3,
.review-card h3,
.contact-card h3,
.timeline-step h3,
.service-list h3,
.footer-brand h3,
.matrix-card h3,
.proof-card h3,
.metric-card strong,
.command-card h3,
.service-pillar h3,
.step-card h3,
.value-card h3,
.coverage-card h3 {
  font-family: "Rajdhani", sans-serif;
}

.brand-title {
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.brand-subtitle {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  position: relative;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 180ms ease;
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(113, 222, 255, 0), rgba(113, 222, 255, 0.92), rgba(113, 222, 255, 0));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.active { color: var(--text); }

.nav a:hover::after,
.nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.button,
.nav-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(11, 22, 43, 0.92), rgba(5, 10, 20, 0.96));
  color: var(--text);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(237, 246, 255, 0.18);
  box-shadow:
    0 0 0 1px rgba(113, 222, 255, 0.1),
    0 0 22px rgba(113, 222, 255, 0.16),
    0 18px 38px rgba(5, 14, 30, 0.42);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button::before,
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(113, 222, 255, 0.2), transparent 34%, transparent 68%, rgba(142, 119, 255, 0.18)),
    radial-gradient(circle at 20% 50%, rgba(113, 222, 255, 0.16), transparent 38%);
  opacity: 0.9;
  pointer-events: none;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(113, 222, 255, 0.52);
  box-shadow:
    0 0 0 1px rgba(113, 222, 255, 0.2),
    0 0 30px rgba(113, 222, 255, 0.26),
    0 22px 44px rgba(5, 14, 30, 0.5);
}

.button.primary,
.nav-cta {
  background: linear-gradient(135deg, rgba(113, 222, 255, 0.18), rgba(110, 125, 255, 0.2));
}

.button.secondary {
  background: linear-gradient(135deg, rgba(255, 143, 89, 0.1), rgba(110, 125, 255, 0.08));
}

.glass-card,
.hero-panel,
.review-card,
.service-card,
.contact-card,
.timeline-step,
.service-list,
.feature-banner,
.cta-panel,
.matrix-card,
.proof-card,
.metric-card,
.command-card,
.service-pillar,
.step-card,
.value-card,
.coverage-card,
.page-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(10, 18, 35, 0.9), rgba(6, 11, 24, 0.96));
  box-shadow: var(--shadow);
}

.glass-card::before,
.hero-panel::before,
.review-card::before,
.service-card::before,
.contact-card::before,
.timeline-step::before,
.service-list::before,
.feature-banner::before,
.cta-panel::before,
.matrix-card::before,
.proof-card::before,
.metric-card::before,
.command-card::before,
.service-pillar::before,
.step-card::before,
.value-card::before,
.coverage-card::before,
.page-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(113, 222, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent 56%);
}

.hero { padding: 50px 0 26px; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 22px;
}

.hero-main {
  padding: 34px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.hero-side {
  padding: 24px;
  min-height: 760px;
  display: grid;
  gap: 18px;
  align-content: start;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.status-chip,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(113, 222, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.88rem;
}

.status-chip::before,
.kicker::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 0 6px rgba(113, 222, 255, 0.12);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--cyan);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-title {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.55rem, 4.2vw, 4.5rem);
  line-height: 0.94;
}

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

.hero-copy,
.section-copy,
.review-card p,
.service-card p,
.contact-card p,
.timeline-step p,
.service-list li,
.service-page li,
.service-page p,
.matrix-card p,
.proof-card p,
.command-card p,
.service-pillar p,
.step-card p,
.value-card p,
.coverage-card p {
  color: var(--muted);
}

.hero-copy {
  max-width: 740px;
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions,
.action-row,
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

.hero-info-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 18px;
  margin-top: 28px;
}

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

.stat-box,
.metric-card {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.stat-box strong,
.metric-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.8rem;
}

.stat-box span,
.review-meta,
.footer-note,
.breadcrumb,
.matrix-card li,
.mini-note { color: var(--muted); }

.hero-service-map {
  display: grid;
  gap: 14px;
}

.matrix-card,
.proof-card,
.command-card,
.service-pillar,
.step-card,
.value-card,
.coverage-card,
.page-hero-card,
.logo-bay,
.signal-box,
.review-highlight,
.review-card,
.service-card,
.contact-card,
.timeline-step,
.service-list,
.cta-panel,
.feature-banner {
  padding: 22px;
}

.matrix-card h3,
.proof-card h3,
.command-card h3,
.service-pillar h3,
.step-card h3,
.value-card h3,
.coverage-card h3,
.review-card h3,
.service-card h3,
.contact-card h3,
.timeline-step h3,
.service-list h3 {
  margin: 0;
  font-size: 1.5rem;
}

.matrix-card ul,
.service-list ul,
.service-page ul,
.contact-list,
.footer-list,
.proof-list,
.step-list {
  margin: 0;
  padding-left: 18px;
}

.matrix-card ul,
.proof-list,
.step-list {
  display: grid;
  gap: 10px;
}

.matrix-card li::marker,
.service-list li::marker,
.service-page li::marker,
.contact-list li::marker,
.proof-list li::marker,
.step-list li::marker {
  color: var(--cyan);
}

.hero-side-top {
  display: grid;
  gap: 18px;
}

.logo-bay {
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0, rgba(142, 119, 255, 0.24), transparent 42%),
    radial-gradient(circle at 15% 25%, rgba(113, 222, 255, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
}

.brand-spotlight {
  position: relative;
  min-height: 260px;
  display: grid;
  place-items: center;
}

.brand-spotlight::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 25% 20%, rgba(142, 119, 255, 0.18), transparent 32%),
    linear-gradient(90deg, rgba(113, 222, 255, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.brand-spotlight::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: 20%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(142, 119, 255, 0.55), rgba(113, 222, 255, 0.3));
  filter: blur(10px);
  opacity: 0.5;
}

.hero-brand-plate {
  position: relative;
  z-index: 2;
  width: min(100%, 370px);
  padding: 22px 24px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 40%, rgba(19, 21, 33, 0.96), rgba(7, 9, 15, 0.98) 72%);
  border: 3px solid rgba(113, 222, 255, 0.76);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.38),
    0 0 0 10px rgba(113, 222, 255, 0.08),
    0 26px 56px rgba(0, 0, 0, 0.46);
}

.hero-brand-plate::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(142, 119, 255, 0.26), transparent 62%);
  z-index: -1;
}

.hero-brand-logo {
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  opacity: 1;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.42));
}

.hero-brand-badge {
  position: relative;
  width: 100%;
  max-width: 332px;
  margin: 0 auto;
  padding: 22px 22px 18px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 38%, rgba(35, 30, 56, 0.86), rgba(8, 10, 16, 0.98) 72%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.04),
    inset 0 -12px 24px rgba(0, 0, 0, 0.24),
    0 16px 32px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.hero-brand-badge::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 999px;
  border: 4px solid rgba(113, 222, 255, 0.75);
  box-shadow:
    0 0 0 1px rgba(7, 12, 20, 0.5),
    inset 0 0 22px rgba(113, 222, 255, 0.08);
}

.hero-brand-badge::after {
  content: "";
  position: absolute;
  inset: 12px 22px auto;
  height: 44%;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent),
    radial-gradient(circle at 50% 0, rgba(142, 119, 255, 0.18), transparent 72%);
  opacity: 0.95;
}

.hero-brand-csi,
.hero-brand-techs {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-brand-csi {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.6rem, 8vw, 5.8rem);
  line-height: 0.84;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #ff4f56;
  background: linear-gradient(180deg, #ff8787 0%, #ff5a5f 24%, #e92e37 58%, #a81922 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    1px 1px 0 rgba(255, 210, 210, 0.12),
    2px 2px 0 rgba(149, 18, 28, 0.9),
    3px 3px 0 rgba(116, 10, 18, 0.86),
    6px 8px 18px rgba(0, 0, 0, 0.46);
}

.hero-brand-techs {
  margin-top: -2px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 2.7vw, 2.2rem);
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: #f8fbff;
  white-space: nowrap;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.24),
    2px 2px 0 rgba(54, 54, 54, 0.9),
    4px 5px 12px rgba(0, 0, 0, 0.34);
}

.hero-brand-orbit {
  display: none;
}

.hero-brand-spin {
  display: none;
}

.signal-box,
.review-highlight,
.command-card,
.proof-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-list,
.coverage-grid,
.value-grid,
.proof-grid,
.matrix-grid,
.step-grid {
  display: grid;
  gap: 14px;
}

.signal-list div,
.step-card,
.value-card,
.coverage-card {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-list div:first-child,
.step-card:first-child,
.value-card:first-child,
.coverage-card:first-child {
  padding-top: 0;
  border-top: 0;
}

.signal-list strong,
.timeline-step .eyebrow,
.card-eyebrow {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
}

.section { padding: 26px 0 46px; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 22px;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.reviews-grid,
.service-grid,
.contact-grid,
.service-list-grid,
.timeline,
.proof-grid,
.value-grid,
.coverage-grid,
.matrix-grid,
.step-grid {
  display: grid;
  gap: 18px;
}

.reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.contact-grid { grid-template-columns: 1.05fr 0.95fr; }
.service-list-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.timeline { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.proof-grid { grid-template-columns: 1.15fr 0.85fr; }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.coverage-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.matrix-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.step-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.review-stars {
  margin-bottom: 14px;
  color: var(--orange);
  letter-spacing: 0.24em;
}

.service-card,
.review-card,
.timeline-step,
.contact-card,
.service-pillar,
.coverage-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card,
.service-card,
.metric-card,
.value-card,
.proof-card,
.service-list,
.contact-card,
.timeline-step,
.matrix-card {
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.review-card:hover,
.service-card:hover,
.metric-card:hover,
.value-card:hover,
.proof-card:hover,
.service-list:hover,
.contact-card:hover,
.timeline-step:hover,
.matrix-card:hover {
  transform: translateY(-4px);
  border-color: rgba(113, 222, 255, 0.28);
  box-shadow:
    0 0 0 1px rgba(113, 222, 255, 0.08),
    0 24px 56px rgba(0, 0, 0, 0.42);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(113, 222, 255, 0.18), rgba(255, 143, 89, 0.16));
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.4rem;
}

.service-link {
  margin-top: auto;
  color: var(--cyan);
  font-weight: 700;
}

.feature-banner,
.proof-grid {
  align-items: stretch;
}

.feature-banner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.proof-card.featured {
  background:
    radial-gradient(circle at top center, rgba(113, 222, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(14, 24, 45, 0.96), rgba(7, 12, 24, 0.96));
}

.command-card .mini-note {
  margin-top: 14px;
  font-size: 0.92rem;
}

.coverage-card strong,
.value-card strong,
.step-card strong {
  color: var(--text);
}

.cta-panel {
  text-align: center;
  background:
    radial-gradient(circle at top center, rgba(113, 222, 255, 0.18), transparent 40%),
    linear-gradient(180deg, rgba(16, 26, 48, 0.96), rgba(7, 12, 24, 0.96));
}

.site-footer {
  margin-top: 38px;
  padding: 30px 0 50px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.footer-brand h3 {
  margin: 0 0 4px;
  font-size: 1.42rem;
}

.page-hero { padding: 42px 0 26px; }

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 0.92rem;
}

.service-page-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
}

.service-page aside { display: grid; gap: 18px; }

.service-checks {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.service-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.service-check strong { color: var(--text); }

.contact-list,
.service-list ul {
  display: grid;
  gap: 10px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

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

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted-strong);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  border: 1px solid rgba(113, 222, 255, 0.18);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(8, 14, 27, 0.94), rgba(6, 10, 20, 0.98));
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.form-input:focus {
  outline: none;
  border-color: rgba(113, 222, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(113, 222, 255, 0.18),
    0 0 24px rgba(113, 222, 255, 0.12);
}

.form-input::placeholder {
  color: rgba(154, 177, 210, 0.74);
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

.form-note {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.status-message {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(113, 222, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 0.95rem;
}

.status-message[data-state="success"] {
  border-color: rgba(126, 248, 182, 0.34);
  background: rgba(126, 248, 182, 0.08);
}

.status-message[data-state="warning"] {
  border-color: rgba(255, 143, 89, 0.34);
  background: rgba(255, 143, 89, 0.08);
}

.status-message[data-state="error"] {
  border-color: rgba(255, 110, 122, 0.34);
  background: rgba(255, 110, 122, 0.08);
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.page-hero-card {
  margin-bottom: 18px;
}

@media (max-width: 1180px) {
  .hero-grid,
  .feature-banner,
  .proof-grid,
  .contact-grid,
  .service-page-grid,
  .footer-grid,
  .hero-info-grid {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .hero-side {
    min-height: auto;
  }

  .reviews-grid,
  .service-grid,
  .timeline,
  .service-list-grid,
  .value-grid,
  .coverage-grid,
  .matrix-grid,
  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .container { width: min(var(--container), calc(100% - 26px)); }
  .site-header .inner { padding: 14px 0; }
  .brand-subtitle { letter-spacing: 0.16em; }
  .hero-main,
  .hero-side,
  .page-hero-card,
  .review-card,
  .service-card,
  .contact-card,
  .timeline-step,
  .service-list,
  .feature-banner,
  .cta-panel,
  .matrix-card,
  .proof-card,
  .command-card,
  .service-pillar,
  .coverage-card {
    padding: 20px;
  }
  .hero-title { font-size: 2.65rem; }
  .form-grid,
  .hero-stats,
  .reviews-grid,
  .service-grid,
  .timeline,
  .service-list-grid,
  .contact-grid,
  .value-grid,
  .coverage-grid,
  .matrix-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }
}
