:root {
  --bg: #0b1622;
  --surface: rgba(18, 30, 46, 0.82);
  --surface-strong: #17304a;
  --surface-dark: #08121d;
  --text: #f4f8fb;
  --muted: #bfd0df;
  --line: rgba(244, 248, 251, 0.12);
  --primary: #13385c;
  --primary-deep: #ffb067;
  --accent: #f36a21;
  --accent-soft: rgba(243, 106, 33, 0.18);
  --hero-photo: url("../images/deverhuiscompany-bakwagen-building-hero.png");
  --shadow: 0 24px 62px rgba(3, 8, 15, 0.24);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(31, 83, 140, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(243, 106, 33, 0.22), transparent 30%),
    linear-gradient(180deg, #101c29 0%, #132434 42%, #0c1722 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-shell {
  overflow: clip;
}

.site-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  height: 4px;
  pointer-events: none;
}

.site-progress__bar {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 0 24px rgba(243, 106, 33, 0.28);
}

.topbar {
  background: rgba(13, 25, 39, 0.95);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.topbar__inner,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.topbar__links a {
  color: #ffffff;
}

.topbar__links a:last-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(243, 106, 33, 0.96), rgba(255, 149, 82, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(243, 106, 33, 0.18);
}

.topbar__inner {
  justify-content: space-between;
  min-height: 48px;
}

.topbar p {
  margin: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(249, 251, 253, 0.95);
  border-bottom: 1px solid rgba(243, 106, 33, 0.12);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: Bahnschrift, "Segoe UI Variable Display", sans-serif;
  flex-shrink: 1;
  min-width: 0;
  padding: 0.48rem 0.78rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(22, 100, 173, 0.1);
  box-shadow: 0 16px 34px rgba(13, 38, 63, 0.12);
  overflow: hidden;
}

.brand__logo {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(260px, calc(100vw - 132px));
  border-radius: 12px;
  filter: none;
}

.brand--footer .brand__logo {
  width: auto;
  height: 56px;
  max-width: min(252px, 100%);
}

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

.brand__mark {
  width: 46px;
  aspect-ratio: 1;
  border-radius: 14px;
  background:
    linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 58%, #082c39 100%);
  position: relative;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.brand__mark::before,
.brand__mark::after {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 10px;
}

.brand__mark::before {
  border: 2px solid rgba(255, 255, 255, 0.88);
  border-left-color: transparent;
  transform: skewX(-14deg);
}

.brand__mark::after {
  inset: auto 9px 12px 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 -8px 0 rgba(255, 255, 255, 0.88);
}

.brand__text {
  display: flex;
  flex-direction: column;
}

.brand__mark-image {
  width: 52px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.22));
}

.brand__text--compact {
  gap: 0.08rem;
}

.brand__text strong {
  font-size: 1.02rem;
  letter-spacing: 0.02em;
  text-transform: none;
  line-height: 1.05;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand--footer .brand__text strong {
  font-size: 1.08rem;
}

.brand--footer .brand__mark-image {
  width: 58px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav a:not(.button) {
  color: #24415c;
  position: relative;
  padding-bottom: 0.2rem;
  transition: color 160ms ease;
}

.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.18rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 180ms ease;
}

.nav a:hover:not(.button),
.nav a:focus-visible:not(.button),
.nav a.is-active:not(.button) {
  color: #0b2138;
}

.nav a:hover:not(.button)::after,
.nav a:focus-visible:not(.button)::after,
.nav a.is-active:not(.button)::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(12, 45, 82, 0.1);
  background: #ffffff;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #17304a;
  margin: 5px auto;
  transition: transform 160ms ease, opacity 160ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.4rem;
  background: linear-gradient(135deg, var(--accent) 0%, #ff934d 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 18px 36px rgba(243, 106, 33, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(243, 106, 33, 0.34);
}

.button--sm {
  padding: 0.8rem 1.2rem;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}

.button--dark {
  background: #112132;
  color: #ffffff;
  box-shadow: none;
}

.hero {
  position: relative;
  padding: 5.75rem 0 4.5rem;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 21, 35, 0.92) 0%, rgba(8, 21, 35, 0.84) 44%, rgba(8, 21, 35, 0.72) 100%),
    url("../images/deverhuiscompany-bakwagen-building-hero.png") center/cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 3rem auto auto -12rem;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  background: rgba(243, 106, 33, 0.18);
  filter: blur(16px);
  z-index: -1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  background: linear-gradient(180deg, rgba(8, 21, 35, 0) 0%, rgba(8, 21, 35, 0.58) 100%);
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.75;
  animation: heroFloat 12s ease-in-out infinite;
}

.hero__orb--one {
  top: 4rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  background: radial-gradient(circle, rgba(243, 106, 33, 0.24) 0%, rgba(243, 106, 33, 0) 72%);
}

.hero__orb--two {
  left: 18%;
  bottom: 2rem;
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(255, 176, 103, 0.22) 0%, rgba(255, 176, 103, 0) 74%);
  animation-duration: 14s;
  animation-delay: -3s;
}

.hero__orb--three {
  right: 38%;
  top: 8rem;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(31, 58, 87, 0.12) 0%, rgba(31, 58, 87, 0) 74%);
  animation-duration: 10s;
  animation-delay: -5s;
}

.hero__grid,
.split,
.quote-block,
.contact-grid {
  display: grid;
  gap: 2rem;
}

.hero__grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.hero__location {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(243, 106, 33, 0.12);
  border: 1px solid rgba(243, 106, 33, 0.24);
  color: #ffd4b5;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--primary-deep);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
}

.hero h1,
.section-heading h2,
.split h2,
.quote-block h2,
.contact-copy h2 {
  margin: 0;
  font-family: Bahnschrift, "Segoe UI Variable Display", sans-serif;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.7rem, 4.8vw, 5.1rem);
  max-width: 14ch;
}

.hero__lead {
  max-width: 60ch;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero__pulse {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.pulse-card {
  position: relative;
  min-width: 13rem;
  padding: 0.95rem 1rem 0.95rem 2.45rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 28px rgba(5, 10, 18, 0.16);
  backdrop-filter: blur(8px);
  animation: pulseCardFloat 8s ease-in-out infinite;
}

.pulse-card:nth-child(2) {
  animation-delay: -2.4s;
}

.pulse-card:nth-child(3) {
  animation-delay: -4.8s;
}

.pulse-card strong,
.pulse-card small {
  display: block;
}

.pulse-card strong {
  font-size: 0.98rem;
}

.pulse-card small {
  margin-top: 0.25rem;
  color: var(--muted);
  line-height: 1.5;
}

.pulse-card__dot {
  position: absolute;
  left: 1rem;
  top: 1.18rem;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 0 rgba(243, 106, 33, 0.32);
  animation: pulseDot 2.6s ease-out infinite;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.3rem;
  padding: 0.95rem 1.1rem;
  max-width: 32rem;
  border-radius: 24px;
  background: linear-gradient(135deg, #091522 0%, #11283b 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 40px rgba(15, 33, 51, 0.14);
}

.cert-badge:hover,
.cert-badge:focus-visible {
  transform: translateY(-2px);
}

.cert-badge__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 84px;
  height: 52px;
  padding: 0.6rem 0.7rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.cert-badge__logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cert-badge__logo--image {
  padding: 0.55rem 0.75rem;
  background: #ffffff;
}

.cert-badge__logo--image img {
  max-width: 100%;
  max-height: 2.45rem;
}

.cert-badge__logo--text {
  color: #ffffff;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.cert-badge__copy {
  display: grid;
  gap: 0.2rem;
}

.cert-badge__copy strong {
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.cert-badge__copy small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  line-height: 1.45;
}

.hero__trust,
.check-list,
.price-card ul,
.contact-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.hero__trust li {
  animation: chipFloat 7s ease-in-out infinite;
}

.hero__trust li:nth-child(2) {
  animation-delay: -1.6s;
}

.hero__trust li:nth-child(3) {
  animation-delay: -3.2s;
}

.hero__trust li:nth-child(4) {
  animation-delay: -4.8s;
}

.hero__trust li,
.area-grid span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #d7e6f3;
}

.hero-card,
.service-card,
.price-card,
.profile-card,
.benefit-card,
.process-card,
.testimonial-card,
.material-card,
.contact-card {
  border-radius: var(--radius-lg);
  background: rgba(20, 34, 50, 0.84);
  border: 1px solid rgba(244, 248, 251, 0.1);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.hero-card::before,
.service-card::before,
.price-card::before,
.profile-card::before,
.benefit-card::before,
.process-card::before,
.testimonial-card::before,
.material-card::before,
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
      rgba(255, 255, 255, 0.11) 0%,
      rgba(255, 255, 255, 0) 48%
    );
  opacity: 0;
  transition: opacity 180ms ease;
  pointer-events: none;
  z-index: 0;
}

.hero-card > *,
.service-card > *,
.price-card > *,
.profile-card > *,
.benefit-card > *,
.process-card > *,
.testimonial-card > *,
.material-card > *,
.contact-card > * {
  position: relative;
  z-index: 1;
}

.hero-card {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(13, 26, 41, 0.9) 0%, rgba(13, 26, 41, 0.82) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -4rem -5rem auto;
  width: 13rem;
  height: 13rem;
  border-radius: 50%;
  background: rgba(243, 106, 33, 0.14);
  filter: blur(10px);
}

.hero-card__label,
.material-card__badge,
.price-card__tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  background: var(--accent-soft);
  color: #ffd1ad;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h2,
.profile-card h3,
.material-card h3,
.contact-card h3 {
  margin: 1rem 0 0;
  font-size: clamp(1.6rem, 2vw, 2.25rem);
  line-height: 1.08;
}

.hero-card p,
.section-heading p,
.split p,
.process-card p,
.benefit-card p,
.price-card p,
.material-card p,
.contact-copy p,
.contact-card li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-card__features,
.hero-card__stats,
.service-grid,
.pricing-grid,
.benefit-grid,
.process-grid,
.area-grid,
.footer__inner {
  display: grid;
  gap: 1rem;
}

.hero-card__features {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.hero-card__features article {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(244, 248, 251, 0.08);
}

.hero-card__features span,
.service-card__index,
.process-card span {
  color: var(--primary-deep);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-card__features h3,
.service-card h3,
.price-card h3,
.benefit-card h3,
.process-card h3 {
  margin: 0.55rem 0 0;
  font-size: 1.2rem;
}

.hero-card__features p,
.hero-card__stats span,
.service-card p,
.price-card ul,
.testimonial-card span {
  font-size: 0.95rem;
}

.hero-card__stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1.3rem;
}

.hero-card__stats div,
.profile-card__stats div {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(244, 248, 251, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.hero-card__stats strong,
.profile-card__stats strong {
  display: block;
  font-size: 1.3rem;
}

.stat-value {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}

.stat-value small {
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.section {
  padding: 5.5rem 0;
}

.section--compact {
  padding: 0 0 2rem;
}

.section--tinted {
  background: rgba(255, 255, 255, 0.035);
}

.hero__bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 1rem;
  margin-top: 1.6rem;
  padding: 1.15rem 1.4rem;
  border-radius: 22px;
  background: rgba(8, 21, 35, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero__bar span {
  color: #d7e6f3;
  font-weight: 600;
  text-align: center;
  line-height: 1.45;
}

.section--dark {
  background:
    radial-gradient(circle at top left, rgba(18, 57, 99, 0.28), transparent 28%),
    linear-gradient(180deg, #040b13 0%, #09131e 100%);
  color: #ffffff;
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(243, 106, 33, 0.08) 0%, rgba(18, 57, 99, 0.14) 100%);
}

.ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 999px;
  background: rgba(10, 18, 29, 0.9);
  border: 1px solid rgba(234, 240, 246, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.12) 50%, transparent 76%);
  transform: translateX(-130%);
  animation: ribbonSweep 8s linear infinite;
  pointer-events: none;
}

.ribbon p {
  margin: 0;
  font-weight: 700;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: 2.2rem;
}

.section-heading h2,
.split h2,
.quote-block h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 3.8vw, 3.8rem);
}

.section-heading p:last-child {
  margin-top: 1rem;
}

.service-grid,
.benefit-grid,
.process-grid,
.area-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.benefit-card,
.process-card {
  padding: 1.8rem;
}

.service-card {
  background:
    linear-gradient(180deg, rgba(13, 25, 39, 0.96) 0%, rgba(8, 16, 26, 0.96) 100%);
}

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

.price-card {
  padding: 2rem;
}

.price-card--featured {
  background: linear-gradient(180deg, #13263a 0%, #0b1724 100%);
  color: #ffffff;
  transform: translateY(-10px);
}

.price-card--featured p,
.price-card--featured ul {
  color: rgba(255, 255, 255, 0.8);
}

.price-card ul {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 1.8rem;
}

.split {
  grid-template-columns: 1fr 0.92fr;
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.94fr 1.06fr;
}

.check-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.check-list li,
.contact-card li {
  position: relative;
  padding-left: 1.4rem;
}

.check-list li::before,
.contact-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
}

.profile-card,
.material-card,
.contact-card {
  padding: 2rem;
}

.profile-card {
  background:
    linear-gradient(180deg, rgba(12, 34, 59, 0.98) 0%, rgba(5, 12, 20, 0.98) 100%);
  color: #ffffff;
}

.profile-card__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  font-weight: 700;
}

.profile-card__stats {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-card {
  background: rgba(11, 21, 33, 0.88);
}

.process-card {
  position: relative;
}

.process-card::after {
  content: "";
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: rgba(243, 106, 33, 0.14);
}

.section-heading--light p,
.section-heading--light .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial-card {
  min-width: 100%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.08);
}

.testimonial-card p {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
  line-height: 1.75;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 0.3rem;
}

.testimonial-card span {
  color: rgba(255, 255, 255, 0.66);
}

.slider-button {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  cursor: pointer;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.slider-dots button.is-active {
  background: var(--accent);
  transform: scale(1.25);
}

.area-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font-weight: 700;
}

.calculator-shell {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 1.25rem;
  align-items: start;
}

.calculator-copy,
.calculator-card {
  padding: 1.6rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(234, 240, 246, 0.08);
  box-shadow: var(--shadow);
}

.calculator-copy {
  display: grid;
  gap: 1rem;
  background:
    linear-gradient(180deg, rgba(11, 20, 31, 0.92), rgba(11, 20, 31, 0.8)),
    radial-gradient(circle at top left, rgba(243, 106, 33, 0.22), transparent 55%);
}

.calculator-copy > p:last-of-type {
  color: var(--muted);
}

.calculator-copy__highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.calculator-copy__highlights span {
  padding: 0.48rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 106, 33, 0.22);
  background: rgba(243, 106, 33, 0.1);
  color: #ffd1ad;
  font-size: 0.84rem;
  font-weight: 700;
}

.calculator-points {
  display: grid;
  gap: 0.7rem;
  width: 100%;
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.calculator-points li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 68px;
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.2rem;
  border-radius: 18px;
  border: 1px solid rgba(234, 240, 246, 0.06);
  background: rgba(255, 255, 255, 0.035);
  line-height: 1.35;
}

.calculator-points li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  transform: translateY(-50%);
}

.calculator-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.78fr);
  gap: 1rem 1.1rem;
  background: rgba(11, 20, 31, 0.92);
}

.calculator-card__intro {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid rgba(234, 240, 246, 0.08);
}

.calculator-card__intro h3 {
  margin-top: 0.35rem;
  font-size: 1.32rem;
}

.calculator-card__intro > p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.calculator-card__eyebrow {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.volume-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
  align-items: start;
  min-height: 88px;
  padding: 0.85rem 0.9rem;
  border-radius: 16px;
  border: 1px solid rgba(234, 240, 246, 0.08);
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.volume-item:hover {
  transform: translateY(-2px);
  border-color: rgba(243, 106, 33, 0.22);
  background: rgba(255, 255, 255, 0.045);
}

.volume-item strong,
.volume-item small {
  display: block;
}

.volume-item strong {
  margin-bottom: 0.24rem;
  font-size: 1rem;
}

.volume-item small {
  color: var(--muted);
  font-size: 0.84rem;
}

.volume-item input {
  width: 100%;
  max-width: 84px;
  margin: 0;
  padding: 0.72rem 0.55rem;
  border-radius: 14px;
  border: 1px solid rgba(234, 240, 246, 0.1);
  background: #0d1723;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  justify-self: start;
}

.volume-item input:focus {
  outline: none;
  border-color: rgba(243, 106, 33, 0.4);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 0 0 4px rgba(243, 106, 33, 0.12);
}

.volume-item input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.volume-item input[type="number"]::-webkit-outer-spin-button,
.volume-item input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calculator-total {
  display: grid;
  align-self: start;
  gap: 0.9rem;
  padding: 1.15rem 1.15rem 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(243, 106, 33, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025)),
    rgba(11, 20, 31, 0.92);
}

.calculator-total > span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.calculator-total strong {
  font-size: clamp(2.35rem, 4vw, 3.15rem);
  line-height: 1;
}

.calculator-total p {
  margin: 0;
  color: var(--muted);
}

.calculator-total .button {
  width: 100%;
  justify-content: center;
}

.calculator-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.calculator-breakdown span {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(243, 106, 33, 0.24);
  background: rgba(243, 106, 33, 0.12);
  color: var(--text);
  font-size: 0.84rem;
}

.quote-block {
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.quote-form {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: rgba(11, 20, 31, 0.92);
  border: 1px solid rgba(234, 240, 246, 0.08);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-weight: 700;
}

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

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(234, 240, 246, 0.1);
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.quote-form select option {
  color: #0f2133;
  background: #ffffff;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(159, 176, 193, 0.9);
}

.quote-form [data-volume-display] {
  color: #ffd1ad;
  font-weight: 700;
}

.form-feedback {
  min-height: 1.5rem;
  margin: 0.85rem 0 0;
  color: #ffd1ad;
  font-weight: 700;
}

.form-feedback--success {
  color: #94e3b0;
}

.form-feedback--warning {
  color: #ffd1ad;
}

.form-feedback--error {
  color: #ffb4b4;
}

.contact-grid {
  grid-template-columns: 1fr 0.95fr;
  align-items: start;
}

.contact-card ul {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.footer {
  padding: 2rem 0 3rem;
}

.footer__inner {
  grid-template-columns: 1.25fr 1fr 0.85fr 1fr;
  align-items: start;
  border-top: 1px solid rgba(234, 240, 246, 0.08);
  padding-top: 2rem;
}

.footer__main {
  max-width: 28rem;
}

.footer__details h3,
.footer__cert strong {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: 1.08rem;
}

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

.footer__details li {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  line-height: 1.55;
}

.footer__details strong {
  color: #ffffff;
}

.footer__links {
  display: grid;
  gap: 0.6rem;
}

.footer__copyright {
  grid-column: 1 / -1;
  color: var(--muted);
}

.footer__meta {
  margin-top: 0.8rem;
  font-size: 0.94rem;
  color: rgba(191, 208, 223, 0.82);
}

.footer__cert {
  display: grid;
  justify-items: start;
  gap: 0.6rem;
  padding: 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__cert-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 142px;
  height: 76px;
  padding: 1rem;
  border-radius: 14px;
  background: #ffffff;
}

.footer__cert-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.footer__cert p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 500ms ease, transform 500ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.js-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .hero-card:hover,
  .service-card:hover,
  .price-card:hover,
  .tariff-card:hover,
  .tariff-row:hover,
  .tariff-note:hover,
  .profile-card:hover,
  .benefit-card:hover,
  .process-card:hover,
  .testimonial-card:hover,
  .material-card:hover,
  .contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 64px rgba(15, 33, 51, 0.16);
    border-color: rgba(243, 106, 33, 0.2);
  }

  .price-card--featured:hover {
    transform: translateY(-14px);
  }

  .hero-card:hover::before,
  .service-card:hover::before,
  .price-card:hover::before,
  .tariff-card:hover::before,
  .tariff-note:hover::before,
  .profile-card:hover::before,
  .benefit-card:hover::before,
  .process-card:hover::before,
  .testimonial-card:hover::before,
  .material-card:hover::before,
  .contact-card:hover::before {
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .calculator-card__intro {
    align-items: start;
    flex-direction: column;
  }

  .calculator-card__intro > p {
    max-width: none;
    text-align: left;
  }

  .calculator-shell,
  .hero__grid,
  .split,
  .split--reverse,
  .quote-block,
  .contact-grid,
  .pricing-grid,
  .service-grid,
  .benefit-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero h1 {
    max-width: 15ch;
  }

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

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

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

@media (max-width: 820px) {
  .calculator-copy__highlights {
    display: grid;
    grid-template-columns: 1fr;
  }

  .topbar__inner,
  .topbar__links,
  .ribbon,
  .hero__bar,
  .calculator-card__grid,
  .hero-card__features,
  .hero-card__stats,
  .service-grid,
  .pricing-grid,
  .benefit-grid,
  .process-grid,
  .area-grid,
  .hero__grid,
  .split,
  .split--reverse,
  .quote-block,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .topbar__inner {
    padding: 0.75rem 0;
    align-items: flex-start;
  }

  .topbar__inner,
  .topbar__links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(18, 32, 51, 0.08);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .nav.is-open {
    display: flex;
  }

  .section {
    padding: 4.25rem 0;
  }

  .hero {
    padding-top: 4.25rem;
    background-position: 62% center;
  }

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

  .hero__pulse {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__orb--one {
    right: -8rem;
    top: 3rem;
    width: 14rem;
    height: 14rem;
  }

  .hero__orb--two {
    left: -1rem;
    bottom: 5rem;
  }

  .cert-badge {
    max-width: none;
  }

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

  .slider-button {
    display: none;
  }
}

@media (max-width: 560px) {
  .header__inner {
    min-height: 78px;
  }

  .brand__logo {
    height: 54px;
    max-width: min(228px, calc(100vw - 96px));
  }

  .brand__mark-image {
    width: 44px;
  }

  .pulse-card {
    padding-right: 0.9rem;
  }

  .hero h1,
  .section-heading h2,
  .split h2,
  .quote-block h2,
  .contact-copy h2 {
    line-height: 1.02;
  }

  .hero-card,
  .service-card,
  .price-card,
  .profile-card,
  .benefit-card,
  .process-card,
  .testimonial-card,
  .material-card,
  .calculator-copy,
  .calculator-card,
  .quote-form,
  .contact-card {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .quote-form__grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero__trust li,
  .area-grid span {
    width: 100%;
    justify-content: center;
  }

  .cert-badge {
    align-items: flex-start;
  }

  .cert-badge__logo {
    width: 76px;
    height: 48px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes chipFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes pulseCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes pulseDot {
  0% {
    box-shadow: 0 0 0 0 rgba(243, 106, 33, 0.35);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(243, 106, 33, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(243, 106, 33, 0);
  }
}

@keyframes ribbonSweep {
  0% {
    transform: translateX(-130%);
  }

  100% {
    transform: translateX(130%);
  }
}

/* Homepage refresh based on approved orange reference */
body {
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
  color: #17324b;
}

.site-chrome {
  position: sticky;
  top: 0;
  z-index: 35;
  box-shadow: 0 14px 34px rgba(13, 38, 63, 0.12);
}

.topbar {
  background: #1664ad;
  color: #ffffff;
}

.topbar__inner {
  min-height: 46px;
}

.topbar__links {
  gap: 0.95rem;
  font-size: 0.9rem;
  font-weight: 800;
}

.topbar__links > a:not(.topbar__whatsapp) {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: rgba(255, 255, 255, 0.96);
}

.topbar__links a:last-child {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.topbar__links .topbar__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 32px;
  padding: 0.28rem 0.85rem 0.28rem 0.42rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-weight: 900;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(37, 211, 102, 0.24);
}

.topbar__links .topbar__whatsapp:hover,
.topbar__links .topbar__whatsapp:focus-visible {
  background: #1fbd59;
  color: #ffffff;
}

.topbar__whatsapp-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 999px;
  background: #ffffff;
  color: #25d366;
  font-size: 0.57rem;
  font-weight: 1000;
  letter-spacing: -0.04em;
  flex: 0 0 auto;
}

.topbar__whatsapp-icon::before {
  content: "WA";
}

.topbar__whatsapp-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 1px;
  width: 6px;
  height: 6px;
  background: #ffffff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  transform: rotate(12deg);
}

.header {
  position: relative;
  top: auto;
  z-index: 1;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #dbe6f0;
}

.header__inner {
  min-height: 92px;
}

.nav {
  gap: 0.9rem;
}

.nav a:not(.button) {
  color: #1f405f;
  font-weight: 700;
}

.button {
  border-radius: 14px;
  box-shadow: none;
}

.button--sm {
  padding: 0.95rem 1.3rem;
}

.button--secondary {
  background: #1664ad;
  color: #ffffff;
}

.button--secondary:hover,
.button--secondary:focus-visible {
  box-shadow: none;
}

.button--whatsapp {
  background: #25d366;
  color: #ffffff;
}

.button--whatsapp:hover,
.button--whatsapp:focus-visible {
  background: #1fbd59;
  color: #ffffff;
  box-shadow: none;
}

.hero {
  padding: 1.35rem 0 1.9rem;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.08)),
    var(--hero-photo) center/cover no-repeat;
}

.hero::before,
.hero::after,
.hero__backdrop,
.hero__orb {
  display: none !important;
}

.hero__grid {
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.92fr);
  align-items: start;
  gap: 1.75rem;
}

.hero__content {
  padding: 2.25rem 3.85rem 2rem 2.25rem;
  background: linear-gradient(180deg, #ff6f1c 0%, #ff6315 100%);
  border-radius: 0;
  clip-path: polygon(0 0, 80% 0, 99% 28%, 99% 100%, 0 100%);
  box-shadow: 0 24px 54px rgba(255, 102, 20, 0.22);
  color: #ffffff;
}

.hero .eyebrow {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.96);
}

.hero__location {
  background: rgba(132, 62, 25, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff3e8;
}

.hero h1 {
  max-width: 9.3ch;
  color: #ffffff;
  font-size: clamp(3rem, 4.65vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
  overflow-wrap: normal;
  hyphens: manual;
}

.hero__lead {
  max-width: none;
  margin-top: 1.45rem;
  color: rgba(255, 255, 255, 0.94);
}

.hero__content .button--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
}

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

.pulse-card {
  min-width: 0;
  padding: 1.05rem 1rem 1rem 2.3rem;
  border-radius: 18px;
  background: #30354b;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  animation: none;
}

.pulse-card strong {
  color: #ffffff;
}

.pulse-card small {
  color: rgba(255, 255, 255, 0.82);
}

.pulse-card__dot {
  top: 1.05rem;
  width: 0.75rem;
  height: 0.75rem;
  box-shadow: none;
  animation: none;
  background: linear-gradient(135deg, #ffb067 0%, #1664ad 100%);
}

.hero__trust {
  margin-top: 1.4rem;
  gap: 0.75rem;
}

.hero__trust li {
  animation: none;
  background: rgba(146, 72, 28, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff3ea;
}

.niwo-badge {
  margin-top: 1rem;
  background: #153d69;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 36px rgba(15, 53, 91, 0.18);
}

.niwo-badge .cert-badge__logo {
  width: 104px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(17, 63, 104, 0.08);
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(27, 47, 77, 0.12);
  color: #17324b;
  backdrop-filter: blur(10px);
}

.hero-card::before,
.hero-card::after {
  display: none !important;
}

.hero-card__label {
  background: #fbe7dc;
  color: #df7d33;
}

.hero-card h2 {
  margin-top: 1.2rem;
  color: #1f6aba;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.hero-card p {
  color: #5e7892;
  line-height: 1.65;
}

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

.hero-card__features article {
  background: #f3f7fb;
  border: 1px solid #dce7f1;
  border-radius: 22px;
}

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

.hero-card__features h3 {
  color: #1d3651;
}

.hero-card__features p {
  color: #63809a;
}

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

.hero-card__stats div {
  background: #14589f;
  border: 0;
  border-radius: 18px;
  color: #ffffff;
}

.hero-card__stats strong,
.hero-card__stats span {
  color: #ffffff;
}

.hero-card__stats span {
  margin-top: 0.4rem;
  line-height: 1.35;
}

.hero__bar {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.45rem;
  margin-top: 1.35rem;
  padding: 0.45rem;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid #dbe6f0;
  box-shadow: 0 14px 36px rgba(18, 43, 71, 0.08);
  backdrop-filter: none;
}

.hero__bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0.6rem 1rem;
  border-radius: 16px;
  color: #1f5f9d;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.hero__bar a:hover,
.hero__bar a:focus-visible {
  background: #f3f7fb;
}

.hero-stats {
  padding: 1rem 0 0;
}

.hero-stats__band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem 2.3rem;
  background: #153d69;
  border-radius: 28px;
  box-shadow: 0 28px 54px rgba(15, 38, 68, 0.18);
}

.hero-stat {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 0.55rem;
  color: #ffffff;
}

.hero-stat__icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  color: var(--accent);
  font-size: 1.6rem;
  font-weight: 700;
}

.hero-stat strong {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.hero-stat p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

.section {
  padding: 4.8rem 0;
  color: #17324b;
  scroll-margin-top: 8.5rem;
}

.section--tinted {
  background: linear-gradient(180deg, #f7fafc 0%, #edf3f8 100%);
}

.section--accent {
  background: linear-gradient(180deg, #f6faff 0%, #eef5fb 100%);
}

.section-heading .eyebrow,
.contact-copy .eyebrow {
  color: var(--accent);
}

.section-heading h2,
.split h2,
.quote-block h2,
.contact-copy h2 {
  color: #163a60;
}

.section-heading p,
.contact-copy p {
  color: #617b95;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
}

.service-card,
.benefit-card,
.contact-card,
.quote-form,
.calculator-copy,
.calculator-card,
.price-card,
.tariff-card,
.tariff-note,
.material-card {
  background: #ffffff;
  border: 1px solid #e0ebf5;
  box-shadow: 0 16px 34px rgba(17, 49, 84, 0.08);
}

.service-card,
.benefit-card {
  padding: 1.8rem;
}

.service-card::before,
.benefit-card::before,
.contact-card::before,
.calculator-copy::before,
.calculator-card::before {
  display: none;
}

.service-card h3,
.benefit-card h3,
.tariff-card h3,
.contact-card h3 {
  color: #183d63;
}

.service-card p,
.benefit-card p,
.tariff-card p,
.tariff-card small,
.tariff-note p,
.contact-card li {
  color: #67819c;
  line-height: 1.65;
}

.service-card__index {
  color: var(--accent);
}

.area-grid span {
  background: #ffffff;
  border: 1px solid #dbe7f1;
  color: #1f5f9d;
}

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

.tariff-card {
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.55rem;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.tariff-card::before {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 9rem;
  height: 9rem;
  border-radius: 50%;
  background: rgba(243, 106, 33, 0.1);
}

.tariff-card > * {
  position: relative;
  z-index: 1;
}

.tariff-card__label {
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(243, 106, 33, 0.12);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tariff-card h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.18;
}

.tariff-card p {
  margin: 0;
}

.tariff-card__price {
  display: grid;
  gap: 0.2rem;
  margin-top: 0.25rem;
  color: #153d69;
  font-size: clamp(1.75rem, 2.3vw, 2.35rem);
  line-height: 1;
}

.tariff-card__price span {
  color: #67819c;
  font-size: 0.9rem;
  font-weight: 700;
}

.tariff-card small {
  display: block;
  font-weight: 700;
}

.tariff-card--featured {
  background: linear-gradient(180deg, #153d69 0%, #0c2237 100%);
  border-color: rgba(21, 61, 105, 0.35);
  box-shadow: 0 22px 46px rgba(21, 61, 105, 0.22);
}

.tariff-card--featured h3,
.tariff-card--featured .tariff-card__price,
.tariff-card--featured small {
  color: #ffffff;
}

.tariff-card--featured p,
.tariff-card--featured .tariff-card__price span {
  color: rgba(255, 255, 255, 0.78);
}

.tariff-note {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 1.2rem;
  padding: 1.2rem;
  border-radius: 24px;
}

.tariff-note strong {
  display: block;
  margin-bottom: 0.3rem;
  color: #183d63;
}

.tariff-note p {
  margin: 0;
  font-size: 0.95rem;
}

.tariff-heading {
  max-width: 56rem;
  margin-inline: auto;
  text-align: center;
}

.tariff-list {
  display: grid;
  gap: 2rem;
  max-width: 62rem;
  margin-inline: auto;
}

.tariff-group {
  display: grid;
  gap: 0.8rem;
}

.tariff-group h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.15rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #d9e6f1;
  color: #54799b;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tariff-group h3 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #5aa4e6;
  color: #ffffff;
  font-size: 0.85rem;
  line-height: 1;
}

.tariff-row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem 1.55rem;
  border: 1px solid #dbe9f5;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(17, 49, 84, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tariff-row--popular {
  background: #eaf6ff;
  border-color: #62a9ef;
}

.tariff-row__badge {
  position: absolute;
  top: -1px;
  right: 1.15rem;
  padding: 0.28rem 0.72rem;
  border-radius: 0 0 10px 10px;
  background: #62a9ef;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.tariff-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: #f1f8ff;
  border: 1px solid #cfe5f8;
  color: #0b3558;
  font-size: 0.88rem;
  font-weight: 900;
}

.tariff-row--popular .tariff-row__icon {
  background: #0b3558;
  border-color: #0b3558;
  color: #ffffff;
}

.tariff-row__copy {
  min-width: 0;
}

.tariff-row__copy h4 {
  margin: 0 0 0.3rem;
  color: #07243d;
  font-size: 1.03rem;
  line-height: 1.25;
}

.tariff-row__copy p {
  margin: 0;
  color: #5d7896;
  font-size: 0.92rem;
  line-height: 1.55;
}

.tariff-row__price {
  display: grid;
  gap: 0.15rem;
  min-width: 9.5rem;
  color: #07243d;
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  line-height: 1.1;
  text-align: right;
}

.tariff-row__price span {
  color: #5d7896;
  font-size: 0.78rem;
  font-weight: 900;
}

.tariff-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.3rem 0 0;
  color: #5d7896;
  font-size: 0.92rem;
  text-align: center;
}

.tariff-disclaimer::before {
  content: "i";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #5aa4e6;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 900;
  flex: 0 0 auto;
}

.calculator-copy {
  background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
}

.calculator-copy > p:last-of-type,
.calculator-points,
.calculator-points li,
.calculator-card__intro > p,
.calculator-card__eyebrow,
.volume-item small,
.calculator-total p,
.quote-form label,
.calculator-total > span {
  color: #67819c;
}

.calculator-points li {
  background: #f7fafc;
  border: 1px solid #e5eef6;
}

.calculator-card {
  background: #ffffff;
}

.volume-item {
  background: #f8fbfd;
  border: 1px solid #e1eaf3;
}

.volume-item input,
.quote-form input,
.quote-form select,
.quote-form textarea {
  background: #ffffff;
  border: 1px solid #d4e0eb;
  color: #17324b;
  box-shadow: none;
}

.calculator-total {
  background: linear-gradient(180deg, #f7fbff 0%, #f1f7fc 100%);
  border: 1px solid #dce8f2;
}

.quote-form {
  background: #ffffff;
}

#quote.section--accent {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(21, 61, 105, 0.1);
  border-bottom: 1px solid rgba(21, 61, 105, 0.1);
}

#quote.section--accent::before {
  content: none;
}

#quote .quote-block {
  position: relative;
  z-index: 1;
}

#quote .eyebrow {
  color: var(--accent);
}

#quote .quote-block h2 {
  color: #12385c;
}

#quote .quote-block p {
  color: #4d6883;
}

#quote .quote-form {
  background:
    linear-gradient(180deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid #d8e6f2;
  box-shadow: 0 24px 58px rgba(18, 56, 92, 0.12);
}

#quote .quote-form label {
  color: #5d7894;
}

#quote .quote-form input,
#quote .quote-form select,
#quote .quote-form textarea {
  background: #ffffff;
  border-color: #cdddea;
  color: #12385c;
}

#quote .quote-form input:focus,
#quote .quote-form select:focus,
#quote .quote-form textarea:focus {
  outline: 0;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(243, 106, 33, 0.14);
}

#quote .quote-form input::placeholder,
#quote .quote-form textarea::placeholder {
  color: #9aacbd;
}

#quote .quote-form [data-volume-display] {
  color: #12385c;
}

#quote .button--dark {
  background: linear-gradient(135deg, #f36a21 0%, #ff7a2b 100%);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(243, 106, 33, 0.22);
}

#quote .button--dark:hover,
#quote .button--dark:focus-visible {
  background: linear-gradient(135deg, #df5918 0%, #f36a21 100%);
}

.quote-block--simple {
  display: grid;
  grid-template-columns: minmax(0, 34rem);
  justify-content: center;
}

.quote-form.quote-form--simple {
  width: 100%;
  padding: 1.85rem;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(15, 33, 51, 0.96) 0%, rgba(16, 40, 62, 0.94) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 28px 70px rgba(15, 33, 51, 0.28);
}

.quote-form__head {
  margin-bottom: 1.2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-form__head h2 {
  margin: 0 0 0.45rem;
  color: #ffffff;
  font-size: clamp(1.45rem, 3vw, 1.95rem);
  line-height: 1.1;
}

.quote-form__head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.quote-form--simple .quote-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.72rem;
  align-items: center;
  margin: 0 0 0.62rem;
  padding: 0.72rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.quote-field__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9px;
  background: rgba(98, 169, 239, 0.28);
  color: #a9d7ff;
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-field--message {
  align-items: start;
}

.quote-form--simple .quote-field input,
.quote-form--simple .quote-field select,
.quote-form--simple .quote-field textarea {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  font-weight: 800;
  width: 100%;
}

.quote-form--simple .quote-field select {
  cursor: pointer;
}

.quote-form--simple .quote-field textarea {
  min-height: 4.8rem;
  resize: vertical;
  line-height: 1.45;
}

.quote-form--simple .quote-field select option {
  color: #17324b;
  background: #ffffff;
}

.quote-form--simple .quote-field input::placeholder,
.quote-form--simple .quote-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

.button--quote {
  width: 100%;
  margin-top: 0.55rem;
  justify-content: center;
  border-radius: 16px;
  background: #27a95f;
  color: #ffffff;
  box-shadow: 0 18px 32px rgba(39, 169, 95, 0.26);
}

.button--quote:hover,
.button--quote:focus-visible {
  background: #1f9653;
}

.quote-form--simple .form-feedback {
  min-height: 1.2rem;
  margin-top: 0.8rem;
  color: #bdebd1;
}

.quote-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.2rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.quote-trust span {
  display: inline-flex;
  align-items: center;
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 800;
}

.button--dark {
  background: #153d69;
  color: #ffffff;
}

.footer {
  margin-top: 4rem;
  padding: 2.4rem 0 3rem;
  background: #153d69;
}

.footer__inner {
  border-top: 0;
}

.footer p,
.footer__links a,
.footer__copyright,
.footer__meta {
  color: rgba(255, 255, 255, 0.86);
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  min-height: 3.2rem;
  padding: 0.72rem 1rem 0.72rem 0.72rem;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(12, 88, 45, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #1fbd59;
  box-shadow: 0 22px 50px rgba(12, 88, 45, 0.34);
}

.whatsapp-float__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

@media (max-width: 1100px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__content {
    padding: 2rem;
    clip-path: none;
    border-radius: 28px;
  }

  .hero__pulse,
  .hero-card__features,
  .hero-card__stats,
  .hero-stats__band,
  .service-grid,
  .tariff-grid,
  .tariff-note {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tariff-note .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .topbar__inner,
  .topbar__links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 1rem;
  }

  .hero__content {
    padding: 1.6rem;
  }

  .hero h1 {
    max-width: 8ch;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .hero__pulse,
  .hero-card__features,
  .hero-card__stats,
  .hero__bar,
  .hero-stats__band,
  .service-grid,
  .tariff-grid,
  .tariff-note,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .hero__bar {
    padding: 0.7rem;
  }

  .hero__bar a {
    min-height: 48px;
  }

  .tariff-list {
    gap: 1.45rem;
  }

  .tariff-row {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1rem;
    padding: 1.1rem;
  }

  .tariff-row__price {
    grid-column: 2;
    min-width: 0;
    text-align: left;
  }

  .tariff-row__badge {
    right: 0.9rem;
  }

  .tariff-disclaimer {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .whatsapp-float {
    right: 0.8rem;
    bottom: 0.8rem;
    min-height: 3rem;
    padding: 0.62rem;
  }

  .whatsapp-float__text {
    display: none;
  }

  .tariff-row {
    grid-template-columns: 1fr;
  }

  .tariff-row__icon {
    width: 48px;
    height: 48px;
  }

  .tariff-row__price {
    grid-column: auto;
  }
}
