:root {
  --bg: #f7f5f2;
  --bg-soft: #f3eee6;
  --bg-strong: #efe8de;
  --card: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #6b7280;
  --text-soft: #8b93a3;
  --primary: #4f7df3;
  --primary-strong: #5b8cff;
  --primary-soft: rgba(79, 125, 243, 0.12);
  --border: rgba(15, 23, 42, 0.08);
  --border-soft: rgba(15, 23, 42, 0.05);
  --brand-mark: #1f242c;
  --brand-mark-top: #2a3038;
  --brand-cream: #f5efdb;
  --brand-wordmark: #1f1f1f;
  --shadow-sm: 0 8px 20px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 24px 80px rgba(15, 23, 42, 0.08);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 24px;
  --radius-sm: 18px;
  --wa: #25d366;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  background: linear-gradient(180deg, #f7f5f2 0%, #ffffff 44%, #faf6ef 100%);
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 340px;
  height: 340px;
  top: 70px;
  left: -40px;
  background: rgba(91, 140, 255, 0.14);
}

body::after {
  width: 420px;
  height: 420px;
  top: 120px;
  right: -80px;
  background: rgba(233, 219, 198, 0.42);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
}

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

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(247, 245, 242, 0.94);
  backdrop-filter: blur(14px);
  z-index: 1000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: grid;
  place-items: center;
  gap: 20px;
}

.loader-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.loader-icon-box,
.nav-icon-box,
.hero-brand-icon,
.footer-icon {
  display: inline-grid;
  place-items: center;
  color: var(--brand-cream);
  background: linear-gradient(180deg, var(--brand-mark-top), var(--brand-mark));
  box-shadow: 0 16px 34px rgba(31, 36, 44, 0.16);
}

.loader-icon-box {
  width: 66px;
  height: 66px;
  border-radius: 18px;
}

.loader-brand {
  font-family: "Playfair Display", serif;
  color: var(--brand-wordmark);
  font-size: 3.3rem;
  font-weight: 700;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.loader-line {
  width: 124px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 140, 255, 0.12), rgba(79, 125, 243, 0.95), rgba(91, 140, 255, 0.12));
  animation: pulseLine 1.1s ease-in-out infinite;
}

@keyframes pulseLine {
  0%,
  100% {
    transform: scaleX(0.9);
    opacity: 0.7;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.reveal,
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1), transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible,
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

.delay-4 {
  transition-delay: 0.32s;
}

.section-label,
.feature-kicker,
.spec-cta-eyebrow,
.form-shell-kicker {
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title,
.hero-title {
  font-family: "Cormorant Garamond", serif;
  color: var(--text);
  letter-spacing: -0.04em;
}

.section-title {
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 0.96;
}

.section-subtitle,
.hero-text,
.why-body,
.lead-form-sub,
.contact-sub,
.feature-copy,
.spec-desc,
.success-body,
.success-hint,
.form-hint-bottom {
  color: var(--text-secondary);
}

.section-subtitle,
.hero-text,
.lead-form-sub,
.contact-sub,
.feature-copy {
  font-size: 1.02rem;
  line-height: 1.85;
}

.section-header {
  max-width: 760px;
  margin-bottom: 56px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.copy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  padding: 15px 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(79, 125, 243, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(79, 125, 243, 0.28);
}

.btn-secondary,
.btn-ghost,
.copy-btn {
  padding: 14px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--border), var(--shadow-sm);
  font-size: 0.94rem;
  font-weight: 600;
}

.btn-secondary:hover,
.btn-ghost:hover,
.copy-btn:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12), 0 16px 36px rgba(15, 23, 42, 0.08);
}

.btn-sm {
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 90;
  padding: 24px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.scrolled {
  padding: 14px 0;
  background: rgba(247, 245, 242, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
}

.hero-brand-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.nav-brand-copy,
.hero-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.brand-wordmark {
  display: inline-block;
  font-family: "Playfair Display", serif;
  color: var(--brand-wordmark);
  font-size: 3.35rem;
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.06em;
}

.brand-caption,
.nav-brand-copy small,
.hero-brand-text small {
  color: var(--text-secondary);
  font-size: 0.84rem;
  font-weight: 500;
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-link {
  color: var(--text-secondary);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text);
}

.float-wa {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 92;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px 12px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.3s ease;
}

.float-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.12);
}

.float-wa-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa);
}

.float-wa-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-wa-label {
  font-size: 0.88rem;
  font-weight: 700;
}

.float-wa-sub {
  color: var(--text-secondary);
  font-size: 0.74rem;
}

.hero {
  position: relative;
  padding: 164px 0 96px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  top: 70px;
  left: 5%;
  background: rgba(91, 140, 255, 0.15);
}

.hero::after {
  width: 420px;
  height: 420px;
  top: 40px;
  right: 4%;
  background: rgba(237, 228, 212, 0.72);
}

.hero-shell {
  position: relative;
  max-width: 860px;
}

.hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 44px;
}

.hero-brand-pill,
.hero-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-soft);
}

.hero-brand-pill {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.hero-brand-pill .brand-wordmark {
  font-size: 3rem;
}

.hero-status-pill {
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 0 0 6px rgba(79, 125, 243, 0.1);
}

.hero-copy {
  max-width: 760px;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(4rem, 8vw, 6.4rem);
  line-height: 0.92;
}

.hero-text {
  max-width: 720px;
  margin: 28px 0 32px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.hero-badges span,
.service-tag,
.spec-tags span,
.feature-note,
.form-shell-badge,
.lead-form-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px var(--border-soft), var(--shadow-sm);
  color: #4d5a6a;
  font-size: 0.85rem;
  font-weight: 600;
}

.feature-card {
  padding: 20px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
}

.feature-card-inner {
  padding: 34px;
  border-radius: 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fcfbf8 100%);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.feature-title {
  max-width: 10ch;
  font-size: clamp(2.35rem, 4vw, 3.3rem);
  line-height: 1.02;
  font-weight: 800;
}

.feature-copy {
  max-width: 640px;
  margin: 16px 0 28px;
}

.feature-why {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 14px;
  align-items: start;
  padding: 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.feature-why-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.feature-why p {
  padding: 10px 12px 0 0;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

section {
  position: relative;
  padding: 110px 0;
}

.services {
  padding-top: 28px;
}

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

.service-card,
.spec-card,
.step,
.contact-link {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-md);
}

.service-card,
.spec-card,
.step {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 100%;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.service-card {
  min-height: 300px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover,
.spec-card:hover,
.step:hover,
.contact-link:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.08);
}

.service-chip,
.spec-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-icon,
.spec-icon,
.step-num,
.success-check {
  display: grid;
  place-items: center;
}

.service-icon,
.spec-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.16), rgba(79, 125, 243, 0.08));
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(79, 125, 243, 0.08);
}

.service-card h3,
.spec-title,
.step-content h3,
.success-title {
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.2;
}

.service-card p,
.spec-desc,
.step-content p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.service-tag {
  margin-top: auto;
  background: #f6f7fb;
}

.why-panel,
.lead-form-shell,
.contact-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.98) 100%);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-lg);
}

.why-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 36px;
  padding: 40px;
}

.why-body {
  margin-top: 18px;
  font-size: 1.01rem;
  line-height: 1.9;
}

.why-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  min-height: 164px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: #fbfaf7;
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.stat-num {
  color: var(--text);
  font-size: 2rem;
  font-weight: 800;
}

.stat-desc {
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.75;
}

.spec-card--featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #ffffff 0%, #faf6ef 100%);
}

.spec-benefit {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.65;
}

.spec-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.spec-tags span {
  background: #f6f7fb;
}

.spec-cta-card {
  justify-content: center;
  background: linear-gradient(180deg, #f8f4ed 0%, #ffffff 100%);
}

.spec-cta-h {
  max-width: 12ch;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.spec-cta-hint {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

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

.step {
  min-height: 240px;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(79, 125, 243, 0.2);
}

.step-content p {
  margin-top: 10px;
}

.lead-form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: 36px;
  padding: 40px;
}

.lead-form-pill {
  margin-bottom: 18px;
  color: var(--primary);
  background: rgba(79, 125, 243, 0.1);
  box-shadow: none;
}

.lead-form-trust {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: #fbfaf7;
  color: #4d5a6a;
  font-size: 0.94rem;
  font-weight: 600;
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.trust-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.form-shell {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #fcfbf8;
  box-shadow: inset 0 0 0 1px var(--border-soft);
}

.form-shell-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.form-shell-badge {
  background: #ffffff;
}

.lead-form,
.form-success {
  display: grid;
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 10px;
}

.form-label {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

.req {
  color: var(--primary);
}

.optional {
  color: var(--text-secondary);
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-input::placeholder {
  color: #a0a7b3;
}

.form-input:focus {
  outline: none;
  border-color: rgba(79, 125, 243, 0.32);
  box-shadow: 0 0 0 6px rgba(79, 125, 243, 0.12), 0 12px 26px rgba(15, 23, 42, 0.06);
}

.form-input.error {
  border-color: rgba(217, 75, 75, 0.45);
  box-shadow: 0 0 0 6px rgba(217, 75, 75, 0.1);
}

.form-input.valid {
  border-color: rgba(34, 197, 94, 0.45);
}

.input-prefix-wrap,
.select-wrap {
  position: relative;
}

.input-prefix {
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
  color: var(--text-secondary);
  font-weight: 600;
}

.input-with-prefix {
  padding-left: 56px;
}

.form-select {
  appearance: none;
  padding-right: 48px;
}

.select-chevron {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

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

.form-error {
  min-height: 1.1em;
  color: #d94b4b;
  font-size: 0.82rem;
  padding-left: 4px;
}

.btn-form-submit {
  width: 100%;
  min-height: 58px;
  border-radius: var(--radius-sm);
}

.form-hint-bottom {
  text-align: center;
  font-size: 0.9rem;
}

.form-submit-note {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(79, 125, 243, 0.08);
  color: #3558b0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.6;
}

.form-submit-note.is-error {
  background: rgba(217, 75, 75, 0.1);
  color: #b33a3a;
}

.form-spinner {
  display: inline-flex;
}

.hidden {
  display: none !important;
}

.success-check {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: rgba(79, 125, 243, 0.12);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(79, 125, 243, 0.1);
}

.success-title {
  font-size: 1.8rem;
}

.success-body {
  line-height: 1.8;
}

.success-hint {
  font-size: 0.9rem;
}

.btn-wa-success {
  width: fit-content;
}

.contact-panel {
  padding: 40px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(249, 244, 235, 0.96) 100%);
}

.contact-sub {
  max-width: 640px;
  margin: 20px 0 32px;
}

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

.contact-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-link svg {
  flex-shrink: 0;
  color: var(--primary);
}

.contact-primary {
  background: linear-gradient(135deg, rgba(91, 140, 255, 0.14), rgba(79, 125, 243, 0.08));
}

.copy-btn {
  padding-inline: 18px;
}

.copy-btn.copied {
  color: var(--primary);
}

.footer {
  padding: 32px 0 48px;
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 26px;
  border-top: 1px solid var(--border-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--brand-wordmark);
}

.footer-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
}

.footer-brand .brand-wordmark {
  font-size: 2.75rem;
}

.footer-copy {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

@media (max-width: 1100px) {
  .services-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 960px) {
  section {
    padding: 92px 0;
  }

  .nav-link {
    display: none;
  }

  .why-panel,
  .lead-form-shell {
    grid-template-columns: 1fr;
  }

  .hero-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .spec-card--featured {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 36px, 1180px);
  }

  .hero {
    padding: 134px 0 78px;
  }

  .hero-title {
    max-width: 11ch;
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .feature-card,
  .feature-card-inner,
  .why-panel,
  .lead-form-shell,
  .contact-panel {
    padding: 22px;
  }

  .feature-why {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }

  .feature-why p {
    padding: 0 10px 8px;
  }

  .services-grid,
  .spec-grid,
  .steps,
  .why-stats,
  .contact-links {
    grid-template-columns: 1fr;
  }

  .feature-actions a,
  .contact-actions a,
  .contact-actions button {
    width: 100%;
  }

  .float-wa {
    right: 18px;
    bottom: 18px;
  }

  .footer .container {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 560px) {
  .float-wa-text {
    display: none;
  }

  .brand-wordmark {
    font-size: 2.7rem;
  }

  .hero-brand-pill .brand-wordmark,
  .footer-brand .brand-wordmark {
    font-size: 2.45rem;
  }

  .hero-badges,
  .feature-actions,
  .why-actions,
  .contact-actions {
    gap: 10px;
  }

  .float-wa {
    padding: 12px;
  }
}
