﻿:root {
  --bg: #edf3ef;
  --surface: #ffffff;
  --surface-soft: #f7fbf8;
  --surface-alt: #e8f1ec;
  --text: #10231d;
  --muted: #5f706a;
  --line: #d3e1da;
  --line-strong: #c1d2ca;
  --primary: #1c8a63;
  --primary-dark: #0f5c44;
  --accent: #1f5f53;
  --accent-dark: #10352d;
  --accent-soft: #ecf6f1;
  --shadow: 0 24px 56px rgba(16, 35, 29, 0.12);
  --shadow-soft: 0 10px 28px rgba(16, 35, 29, 0.07);
  --radius-xl: 22px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Instrument Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(28, 138, 99, 0.16) 0%, rgba(28, 138, 99, 0) 28%),
    radial-gradient(circle at 85% 12%, rgba(31, 95, 83, 0.12) 0%, rgba(31, 95, 83, 0) 24%),
    linear-gradient(180deg, #f9fcfa 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48), rgba(0, 0, 0, 0.02));
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 252, 250, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(211, 225, 218, 0.9);
  box-shadow: 0 10px 24px rgba(16, 35, 29, 0.04);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.9rem 0;
}

.logo-link {
  flex: 0 0 auto;
}

.logo-link img {
  width: 190px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
  color: var(--muted);
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--accent-dark);
}

.nav-cta {
  margin-left: 1rem;
}

.hero-section,
.about-section,
.services-section,
.process-section,
.calculator-section,
.cae-section,
.technical-section,
.faq-section,
.location-section,
.contact-section {
  padding: 5.2rem 0;
}

.hero-section {
  position: relative;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: min(44vw, 540px);
  height: min(44vw, 540px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28, 138, 99, 0.14) 0%, rgba(28, 138, 99, 0) 70%);
  pointer-events: none;
  filter: blur(8px);
}

.credibility-strip {
  padding: 0 0 3.8rem;
}

.soft-section {
  position: relative;
}

.soft-section::before {
  content: "";
  position: absolute;
  inset: 1rem 0;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(247, 251, 248, 0.92) 100%);
  pointer-events: none;
}

.soft-section > .container {
  position: relative;
  z-index: 1;
}

.section-kicker,
.step-kicker,
.cae-kicker,
.hero-floating-kicker,
.technical-tag,
.service-index,
.process-step,
.step-badge {
  display: inline-flex;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
}

.section-kicker,
.step-kicker {
  color: var(--primary-dark);
  font-size: 0.78rem;
  margin: 0 0 0.8rem;
}

h1,
h2,
h3,
summary,
.hero-floating-card strong,
.estimate-box strong {
  margin: 0;
  font-family: "Syne", sans-serif;
}

h1 {
  max-width: 11.5ch;
  margin-bottom: 1rem;
  font-size: clamp(2.55rem, 5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.95rem, 3vw, 3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

h3,
summary {
  font-size: 1.3rem;
  line-height: 1.15;
}

p {
  margin: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 2.6rem;
  display: grid;
  gap: 0.75rem;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head p,
.hero-lead,
.hero-benefits span,
.about-content p,
.services-grid p,
.process-grid p,
.calculator-aside p,
.step-lead,
.choice-card small,
.technical-card p,
.faq-item p,
.location-copy p,
.contact-copy p,
.footer-grid p,
.callback-legal-text,
.cookie-description,
.cookie-copy p,
.hero-floating-card span,
.estimate-box small {
  color: var(--muted);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  gap: 0.45rem;
  padding: 0.95rem 1.45rem;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, color 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #0f5c44 0%, #17835f 55%, #23a77a 100%);
  color: #fff;
  border-color: rgba(11, 82, 58, 0.2);
  box-shadow: 0 14px 28px rgba(23, 131, 95, 0.22);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--primary-dark);
  border-color: rgba(17, 98, 71, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(23, 131, 95, 0.28);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(17, 98, 71, 0.38);
  box-shadow: 0 12px 22px rgba(18, 36, 58, 0.08);
}

.btn-dark {
  background: linear-gradient(135deg, var(--accent-dark) 0%, var(--accent) 100%);
  color: #fff;
}

.btn-muted {
  background: #f4f6f8;
  border: 1px solid var(--line);
  color: #5b697d;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.hidden {
  display: none !important;
}

.hero-grid,
.about-shell,
.location-shell,
.calculator-layout,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: 2.35rem;
  position: relative;
}

.hero-copy,
.about-content,
.service-card,
.process-card,
.calculator-shell,
.technical-card,
.faq-item,
.location-card,
.contact-shell,
.cookie-modal {
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.hero-copy {
  position: relative;
  padding: 2.9rem;
  border-radius: var(--radius-xl);
  border-top: 4px solid var(--primary);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -16% -42% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 167, 122, 0.12) 0%, rgba(35, 167, 122, 0) 72%);
  pointer-events: none;
}

.hero-copy::before {
  display: none;
}

.hero-actions,
.form-actions,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-actions {
  margin-top: 1.5rem;
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.proof-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.95rem 1rem;
  min-height: 132px;
  border-radius: 16px;
  background: linear-gradient(180deg, #f8fcfa 0%, #ffffff 100%);
  border: 1px solid rgba(23, 131, 95, 0.12);
}

.proof-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 14px;
  background: rgba(23, 131, 95, 0.1);
  color: var(--primary-dark);
}

.proof-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.proof-item strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.98rem;
  line-height: 1.2;
  text-wrap: balance;
}

.proof-item span:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.coverage-note {
  margin-top: 1rem;
  padding: 1rem 1.05rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--accent-soft);
}

.coverage-note strong {
  display: block;
  margin-bottom: 0.28rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
}

.coverage-note span {
  color: var(--muted);
  line-height: 1.65;
}

.proof-item,
.credibility-grid article,
.about-metrics article,
.calculator-side-notes article {
  min-width: 0;
}

.proof-item strong,
.credibility-grid strong,
.about-metrics strong,
.calculator-side-notes strong,
.location-card strong,
.footer-grid h3 {
  display: block;
  margin-bottom: 0.3rem;
}

.hero-photo-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(28, 138, 99, 0.14), rgba(31, 95, 83, 0.06)),
    #eaf1f0;
  min-height: 100%;
}

.hero-photo-card img {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-floating-card {
  margin-top: 1rem;
  padding: 1.2rem 1.25rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.hero-floating-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 131, 95, 0.16);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.1);
}

.hero-floating-kicker {
  color: var(--primary-dark);
  font-size: 0.74rem;
  margin-bottom: 0.4rem;
}

.hero-floating-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1.95rem;
  line-height: 1;
}

.price-card {
  border-radius: 16px;
}

.price-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.price-chip {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(23, 131, 95, 0.1);
  color: var(--primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price-range {
  font-size: clamp(2rem, 4vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.price-copy {
  display: block;
  max-width: 46ch;
}

.price-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.price-points span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #f4f8fc;
  border: 1px solid #e2ebf4;
  color: var(--accent-dark);
  font-size: 0.82rem;
  line-height: 1.2;
}

.price-points span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, #23a77a 0%, #0f5c44 100%);
}

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

.credibility-grid article {
  padding: 1.25rem 1.35rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  min-height: 118px;
  box-shadow: var(--shadow-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.about-shell {
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  align-items: stretch;
  gap: 2.35rem;
}

.about-media {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  padding: 2.4rem;
  border-radius: var(--radius-xl);
}

.about-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.35rem;
}

.about-metrics article {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.services-grid,
.process-grid,
.technical-grid {
  display: grid;
  gap: 1rem;
}

.services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.service-card,
.process-card,
.technical-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card {
  min-height: 232px;
}

.service-card::before,
.process-card::before,
.technical-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(28, 138, 99, 0.15) 100%);
}

.service-card:hover,
.process-card:hover,
.technical-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(28, 138, 99, 0.18);
}

.service-index {
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
}

.process-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.process-step {
  margin-bottom: 0.9rem;
  color: var(--primary-dark);
  font-size: 0.8rem;
}

.calculator-layout {
  grid-template-columns: minmax(300px, 340px) minmax(0, 1fr);
  align-items: start;
}

.calculator-aside {
  position: sticky;
  top: 6rem;
}

.calculator-side-notes {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.25rem;
}

.calculator-side-notes article {
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.calculator-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.calculator-cae-card {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 170px 190px;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, #1e4a86 0%, #177f95 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.calculator-cae-copy h3,
.calculator-cae-copy p,
.calculator-cae-highlight,
.calculator-cae-copy .cae-kicker {
  color: #fff;
}

.calculator-cae-highlight {
  margin: 0.65rem 0;
  font-size: 1.3rem;
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.calculator-cae-media img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  border-radius: 14px;
}

.calculator-cae-action {
  display: flex;
  justify-content: flex-end;
}

.calculator-head {
  padding: 1.15rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.steps-bar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.progress-dot {
  height: 7px;
  border-radius: 999px;
  background: #dde5ef;
}

.progress-dot.active {
  background: linear-gradient(90deg, #1fc86d 0%, var(--primary) 100%);
}

#quote-form {
  padding: 1.55rem;
}

.form-stage {
  position: relative;
  transition: height 0.22s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.step-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.step-badge {
  align-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #ecf8f3;
  color: var(--primary-dark);
  font-size: 0.76rem;
  white-space: nowrap;
}

.choice-grid,
.contact-grid,
.callback-grid {
  display: grid;
  gap: 1rem;
}

.distance-field {
  display: grid;
}

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

.choice-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 136px;
  padding: 1.15rem 1rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.choice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: inherit;
  pointer-events: none;
}

.choice-card::after {
  content: "";
  position: absolute;
  top: 0.95rem;
  left: 1rem;
  width: 2.15rem;
  height: 3px;
  border-radius: 999px;
  background: #d6e2ee;
}

.choice-card:hover {
  transform: translateY(-1px);
  border-color: #cad6e3;
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card strong {
  margin-top: 0.65rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.12rem;
  line-height: 1.15;
}

.choice-card.is-selected {
  background: #f3fbf7;
  border-color: #28c06f;
  box-shadow: 0 10px 22px rgba(40, 192, 111, 0.08);
}

.choice-card.is-selected::before {
  border-color: #28c06f;
}

.choice-card.is-selected::after {
  background: linear-gradient(90deg, #26d16f 0%, var(--primary) 100%);
}

.choice-card.is-hidden {
  display: none !important;
}

.distance-input-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.15rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

.distance-label {
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  color: var(--text);
}

.distance-input-wrap {
  position: relative;
}

.distance-input-wrap input {
  padding-right: 3.3rem;
}

.distance-unit {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-weight: 700;
  color: #5c728b;
}

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

.contact-grid-full,
.callback-full {
  grid-column: 1 / -1;
}

label span,
.callback-grid label span {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  background: #f4f8fc;
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

input:focus,
select:focus,
textarea:focus {
  background: #fff;
  border-color: #99b7d8;
  box-shadow: 0 0 0 4px rgba(30, 75, 132, 0.08);
}

textarea {
  resize: vertical;
}

.legal-box,
.callback-consents {
  margin-top: 1.15rem;
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
}

.legal-intro {
  font-size: 0.98rem;
  line-height: 1.55;
}

.callback-legal-text {
  font-size: 0.98rem;
  line-height: 1.55;
}

.consent-choice,
.callback-choice {
  margin: 0.85rem 0 0;
  padding: 0;
  border: 0;
}

.consent-choice legend,
.callback-choice legend {
  margin-bottom: 0.55rem;
  font-weight: 700;
  line-height: 1.35;
}

.consent-choice label,
.callback-choice label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-right: 1rem;
}

.consent,
.callback-consents .consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.7rem;
}

.consent input,
.callback-choice input,
.consent-choice input {
  width: auto;
  margin-top: 0.1rem;
}

.legal-note,
.callback-note {
  margin-top: 0.45rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.estimate-box {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.22fr);
  gap: 1.25rem;
  align-items: start;
  margin-top: 1.3rem;
  padding: 1.2rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(180deg, #f7fbff 0%, #eef4fb 100%);
  border: 1px solid #d6e1ee;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

#estimate-breakdown {
  display: grid;
  gap: 0.48rem;
  padding-left: 1.1rem;
  border-left: 1px solid #d6e1ee;
  font-size: 0.98rem;
  line-height: 1.55;
}

.estimate-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.5rem;
}

.estimate-bullet {
  color: var(--primary);
  font-weight: 800;
  line-height: 1.35;
}

.estimate-label {
  min-width: 0;
  color: var(--text);
}

.estimate-amount {
  font-weight: 700;
  color: var(--primary-dark);
  white-space: nowrap;
}

.estimate-main p {
  margin-bottom: 0.2rem;
  color: #5c728b;
  font-size: 1rem;
  line-height: 1.35;
}

.estimate-box strong {
  display: block;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.03;
  max-width: 8ch;
}

.form-actions {
  margin-top: 1.25rem;
}

.form-status,
.callback-status {
  margin-top: 0.9rem;
  color: var(--primary);
  font-weight: 700;
}

.cae-kicker {
  font-size: 0.78rem;
  margin-bottom: 0.65rem;
}

.technical-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.technical-tag {
  margin-bottom: 0.8rem;
  color: var(--accent);
  font-size: 0.75rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-wrap {
  max-width: 940px;
  margin: 0 auto;
}

.faq-item {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.35rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 1.35rem 1.25rem;
}

.location-shell {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 2.2rem;
}

.location-card {
  display: grid;
  gap: 0.35rem;
  margin-top: 1.2rem;
  padding: 1.15rem 1.2rem;
  border-radius: 18px;
}

.location-card a {
  color: var(--accent-dark);
  font-weight: 700;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-shell {
  padding: 2.1rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 248, 0.98) 100%);
}

.contact-copy {
  max-width: 820px;
  margin-bottom: 1.4rem;
}

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

.callback-submit {
  margin-top: 1rem;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 2.5rem;
  color: #dce6f2;
  background: linear-gradient(180deg, #162a47 0%, #0d1e35 100%);
}

.footer-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
  padding-bottom: 1.9rem;
}

.footer-grid h3,
.footer-grid a,
.footer-brand p {
  color: #dce6f2;
}

.footer-brand img {
  display: inline-block;
  width: auto;
  max-width: 182px;
  height: auto;
  padding: 0.7rem 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(7, 17, 32, 0.2);
}

.footer-brand {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(220, 230, 242, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #f4f8fc;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex: 0 0 16px;
}

.footer-socials a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(220, 230, 242, 0.3);
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.footer-copy {
  padding: 1rem 0 1.6rem;
  border-top: 1px solid rgba(220, 230, 242, 0.14);
  color: #b8c6d7;
}

.float-stack {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 35;
}

.phone-float {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #25d366 0%, #14a958 100%);
  box-shadow: 0 16px 28px rgba(20, 169, 88, 0.28);
}

.phone-float svg {
  width: 28px;
  height: 28px;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 45;
  width: min(calc(100% - 2rem), 960px);
  padding: 1rem 1.15rem 1.05rem;
  border-radius: 18px;
  display: block;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.cookie-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
  padding-right: 3rem;
  margin-bottom: 0.45rem;
}

.cookie-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  background: #eef4fb;
  color: #28538a;
  border: 1px solid #d5e2f0;
}

.cookie-copy strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.15rem;
  line-height: 1.15;
  font-family: "Manrope", sans-serif;
}

.cookie-description {
  margin: 0 0 0 3.45rem;
  font-size: 0.98rem;
  line-height: 1.5;
}

.cookie-actions {
  justify-content: flex-end;
  margin-top: 0.95rem;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-links {
  margin: 0;
}

.cookie-links a {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.95rem;
}

.cookie-actions .cookie-links {
  margin-right: auto;
}

.cookie-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #f4f7fb;
  color: #90a3bb;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.cookie-actions .btn {
  min-height: 2.9rem;
  padding: 0.8rem 1.25rem;
  border-radius: 13px;
  white-space: nowrap;
}

.cookie-actions .btn-secondary {
  background: #edf3fa;
  border: 1px solid #d8e4f1;
}

.cookie-minimized {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 44;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent-dark);
  box-shadow: var(--shadow-soft);
  font-weight: 700;
}

.cookie-icon {
  font-size: 1rem;
}

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

  .hero-grid,
  .about-shell,
  .calculator-layout,
  .location-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 1;
  }

  .hero-visual {
    order: 2;
  }

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

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

  .calculator-aside {
    position: static;
  }

  .calculator-cae-card {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .calculator-cae-action {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

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

  .nav-wrap {
    gap: 0.7rem;
    padding: 0.7rem 0;
  }

  .logo-link img {
    width: 132px;
  }

  .nav-cta {
    margin-left: auto;
    min-height: 2.8rem;
    padding: 0.72rem 0.95rem;
    font-size: 0.96rem;
  }

  .hero-section,
  .about-section,
  .services-section,
  .process-section,
  .calculator-section,
  .cae-section,
  .technical-section,
  .faq-section,
  .location-section,
  .contact-section {
    padding: 2.5rem 0;
  }

  h1 {
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.45rem);
  }

  .hero-copy,
  .about-content,
  .calculator-shell,
  .contact-shell {
    padding: 1.1rem;
  }

  .hero-proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-item {
    min-height: auto;
  }

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

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

  .hero-photo-card img {
    min-height: 286px;
    max-height: 54vh;
    object-position: 54% center;
  }

  .hero-section::before,
  .hero-copy::before,
  .hero-copy::after,
  .hero-visual::after {
    display: none;
  }

  .hero-visual {
    position: relative;
    display: grid;
    gap: 0.75rem;
  }

  .hero-floating-card {
    margin-top: 0;
    padding: 0.95rem;
    border-radius: 18px;
  }

  .hero-floating-kicker {
    margin-bottom: 0.3rem;
    font-size: 0.82rem;
  }

  .hero-floating-card strong {
    font-size: 1.82rem;
    line-height: 1;
    max-width: none;
  }

  .hero-floating-card span {
    display: block;
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .price-points {
    margin-top: 0.8rem;
    gap: 0.4rem;
  }

  .price-points span {
    font-size: 0.78rem;
    padding: 0.42rem 0.62rem;
  }

  .price-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-points {
    gap: 0.45rem;
  }

  .credibility-grid,
  .about-metrics,
  .services-grid,
  .process-grid,
  .technical-grid,
  .choice-grid-two,
  .choice-grid-three,
  .contact-grid,
  .callback-grid {
    grid-template-columns: 1fr;
  }

  .step-head {
    flex-direction: column;
    align-items: stretch;
  }

  .step-badge {
    align-self: flex-start;
  }

  #quote-form {
    padding: 1rem;
  }

  .calculator-head {
    padding: 1rem 1rem 0;
  }

  .form-stage {
    height: auto !important;
    padding-bottom: 13.2rem;
  }

  .choice-card {
    min-height: auto;
    padding: 1rem 0.95rem;
  }

  .estimate-box {
    position: fixed;
    left: 50%;
    bottom: 5.15rem;
    transform: translateX(-50%);
    z-index: 28;
    width: min(calc(100% - 1rem), 382px);
    grid-template-columns: 1fr;
    gap: 0.7rem;
    margin: 0;
    padding: 1rem 1rem 1.05rem;
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(18, 36, 58, 0.14);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .estimate-box.is-mobile-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .estimate-box.is-final-step {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 1rem;
    opacity: 1;
    pointer-events: auto;
  }

  .estimate-box strong {
    font-size: 2rem;
    line-height: 0.98;
    max-width: 10ch;
  }

  .coverage-note {
    padding: 0.9rem 0.95rem;
  }

  .estimate-box small {
    max-height: 7.8em;
    overflow: auto;
    font-size: 0.96rem;
    line-height: 1.5;
  }

  #estimate-breakdown {
    padding-left: 0.9rem;
    gap: 0.42rem;
  }

  .estimate-item {
    gap: 0.4rem;
  }

  .estimate-label,
  .estimate-amount {
    font-size: 0.92rem;
  }

  .form-actions {
    position: fixed;
    left: 50%;
    bottom: 0.55rem;
    transform: translateX(-50%);
    z-index: 29;
    width: min(calc(100% - 1.6rem), 356px);
    padding: 0.8rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 26px rgba(18, 36, 58, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .form-actions.is-mobile-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .form-actions.is-final-step {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    margin-top: 0.85rem;
    opacity: 1;
    pointer-events: auto;
  }

  .btn,
  .form-actions .btn,
  .callback-submit {
    width: 100%;
  }

  .float-stack {
    right: 0.7rem;
    bottom: 1rem;
    z-index: 27;
  }

  .float-stack.is-calculator-active {
    bottom: 11rem;
  }

  .phone-float {
    width: 48px;
    height: 48px;
  }

  .phone-float svg {
    width: 24px;
    height: 24px;
  }

  .form-status {
    padding-bottom: 10.2rem;
  }

  .legal-box {
    padding: 0.95rem 1rem;
  }

  .legal-intro {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .callback-consents {
    padding: 0.95rem 1rem;
  }

  .callback-legal-text {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .consent-choice legend {
    font-size: 0.98rem;
  }

  .callback-choice legend {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .consent-choice label {
    margin-right: 0.8rem;
  }

  .callback-choice label {
    margin-right: 0.8rem;
  }

  .consent span {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .callback-consents .consent span {
    font-size: 0.96rem;
    line-height: 1.4;
  }

  .legal-note {
    font-size: 0.88rem;
  }

  .callback-note {
    font-size: 0.88rem;
  }

  .cookie-modal {
    width: calc(100% - 1rem);
    left: 50%;
    right: auto;
    bottom: 0.5rem;
    transform: translateX(-50%);
    padding: 0.95rem 0.95rem 1rem;
    border-radius: 20px 20px 16px 16px;
  }

  .cookie-top {
    align-items: flex-start;
    padding-right: 2.2rem;
    margin-bottom: 0.55rem;
  }

  .cookie-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.68rem 1rem;
    border-radius: 12px;
  }

  .cookie-copy strong {
    font-size: 1.05rem;
  }

  .cookie-copy p,
  .cookie-description {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .cookie-description,
  .cookie-links {
    margin-left: 0;
  }

  .cookie-badge {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .cookie-actions .cookie-links {
    order: 3;
    margin-right: 0;
  }

  .cookie-minimized {
    left: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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


/* Caja de beneficio destacada */
.cae-benefit-box {
  background: #f0f9ff; /* Azul muy clarito para resaltar */
  border-left: 4px solid #002d57;
  padding: 12px 16px;
  border-radius: 8px;
  margin: 15px 0;
}

.cae-amount {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: #002d57;
  margin-bottom: 2px;
}

.cae-benefit-box p {
  margin: 0;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.3;
}

/* Imagen alargada con mejor proporción */
.card-image-single {
  width: 100%;
  height: 170px;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px 0 20px 0;
  background: #eef4fb;
}

.card-image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

/* El BOTÓN: Estilo moderno y elegante */
.calculator-cae-action {
  display: flex;
  justify-content: center; /* Centrado queda más elegante en este diseño */
}

.btn-cae-modern {
  display: inline-block;
  background-color: #002d57; /* Azul corporativo oscuro */
  color: #ffffff !important;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 50px; /* Estilo píldora */
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 45, 87, 0.2);
  text-align: center;
  border: none;
}

.btn-cae-modern:hover {
  background-color: #003d7a;
  transform: translateY(-2px); /* Pequeño salto al pasar el ratón */
  box-shadow: 0 6px 15px rgba(0, 45, 87, 0.3);
}

/* Tipografía de la descripción */
.cae-desc {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 10px;
}
