:root {
  --red: #ec1c24;
  --red-dark: #b81219;
  --red-soft: #fff0f1;
  --navy: #0f2438;
  --navy-2: #183552;
  --ink: #213142;
  --muted: #6d7886;
  --line: #e7edf4;
  --bg: #f6f9fc;
  --white: #ffffff;
  --cyan: #29b2fe;
  --mint: #71cbcc;
  --gold: #f4b740;
  --shadow-sm: 0 10px 30px rgba(15, 36, 56, 0.08);
  --shadow-md: 0 20px 60px rgba(15, 36, 56, 0.14);
  --shadow-red: 0 18px 42px rgba(236, 28, 36, 0.26);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 104px 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(231, 237, 244, 0.9);
  backdrop-filter: blur(18px);
}

.topbar {
  color: rgba(255, 255, 255, 0.82);
  background: linear-gradient(90deg, var(--navy), #071421);
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 40px;
}

.topbar p {
  margin: 0;
  font-weight: 800;
}

.topbar a {
  color: var(--mint);
  font-weight: 900;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.topbar-contact a:first-child {
  padding: 6px 12px;
  color: var(--white);
  border-radius: 999px;
  background: var(--red);
}

.navbar {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  width: 132px;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 850;
}

.nav-links a {
  position: relative;
  transition: color 180ms ease;
}

.nav-links a:not(.nav-cta)::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transition: width 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--red);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  width: 100%;
}

.nav-cta {
  padding: 13px 20px;
  color: var(--white) !important;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow-red);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 0;
  border-radius: 14px;
  background: var(--bg);
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 0 118px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96) 48%, rgba(235, 247, 255, 0.94)),
    radial-gradient(circle at 84% 22%, rgba(41, 178, 254, 0.22), transparent 30%);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(15, 36, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 36, 56, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.hero-shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.shape-red {
  width: 520px;
  height: 520px;
  right: -150px;
  top: 130px;
  background: rgba(236, 28, 36, 0.1);
}

.shape-blue {
  width: 230px;
  height: 230px;
  left: 8%;
  bottom: 96px;
  background: rgba(113, 203, 204, 0.22);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.76fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 38px;
  height: 2px;
  content: "";
  background: currentColor;
}

.eyebrow.light {
  color: var(--mint);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
}

h1 {
  max-width: 820px;
  margin-bottom: 26px;
  font-size: clamp(3.25rem, 6.7vw, 6.15rem);
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 4.1vw, 3.75rem);
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.24rem;
  letter-spacing: -0.02em;
}

p {
  color: var(--muted);
}

.hero-copy p {
  max-width: 720px;
  margin-bottom: 34px;
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 950;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow-red);
}

.btn.secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn.light {
  color: var(--red);
  background: var(--white);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags span {
  padding: 10px 14px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  font-weight: 900;
}

.hero-panel {
  position: relative;
  padding: 32px;
  color: var(--white);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 10%, rgba(236, 28, 36, 0.44), transparent 26%),
    linear-gradient(145deg, rgba(15, 36, 56, 0.98), rgba(24, 53, 82, 0.98));
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.panel-top span {
  color: var(--mint);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.panel-top strong {
  color: var(--white);
}

.service-status {
  margin-bottom: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.service-status div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 13px;
}

.service-status span {
  color: var(--mint);
  font-weight: 950;
}

.service-status strong {
  color: var(--white);
  font-size: 0.93rem;
  text-align: right;
}

.bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red), var(--gold));
}

.panel-note {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.panel-note span {
  color: rgba(255, 255, 255, 0.72);
}

.quick-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--line);
  box-shadow: var(--shadow-md);
}

.quick-grid a {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: center;
  padding: 18px;
  color: var(--navy);
  background: var(--white);
  font-weight: 950;
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.quick-grid a:hover {
  color: var(--white);
  background: var(--red);
}

.intro-grid,
.solution-grid,
.faq-grid,
.contact-card {
  display: grid;
  grid-template-columns: 0.88fr 1fr;
  gap: 70px;
  align-items: center;
}

.intro-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.check-list span {
  position: relative;
  padding: 14px 14px 14px 42px;
  border-radius: 14px;
  background: var(--bg);
  font-weight: 900;
}

.check-list span::before {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(236, 28, 36, 0.12);
}

.services,
.towns,
.faq {
  background:
    radial-gradient(circle at 12% 8%, rgba(113, 203, 204, 0.14), transparent 24%),
    var(--bg);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 50px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  min-height: 290px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 36, 56, 0.03);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.service-card::after {
  position: absolute;
  width: 94px;
  height: 94px;
  right: -42px;
  bottom: -44px;
  content: "";
  border-radius: 50%;
  background: rgba(236, 28, 36, 0.08);
  transition: transform 200ms ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(236, 28, 36, 0.22);
  box-shadow: var(--shadow-md);
}

.service-card:hover::after {
  transform: scale(1.35);
}

.service-card.featured {
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(145deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow-red);
}

.featured h3,
.featured p,
.featured .service-no,
.featured a {
  color: var(--white);
}

.service-no {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  color: var(--red);
  border-radius: 50%;
  background: var(--red-soft);
  font-weight: 950;
}

.service-card p {
  margin-bottom: 0;
}

.service-card a {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 950;
}

.solutions {
  color: var(--white);
  background:
    radial-gradient(circle at 15% 18%, rgba(113, 203, 204, 0.2), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(236, 28, 36, 0.2), transparent 24%),
    linear-gradient(135deg, var(--navy), #071421);
}

.solutions h2,
.solutions h3,
.solutions p {
  color: var(--white);
}

.solution-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 30px;
}

.solution-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-list div {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
}

.solution-list strong,
.solution-list span {
  display: block;
}

.solution-list strong {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.12rem;
}

.solution-list span {
  color: rgba(255, 255, 255, 0.7);
}

.town-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.town-grid span {
  padding: 16px;
  color: var(--navy);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 36, 56, 0.03);
  font-weight: 900;
  text-align: center;
}

.seo-block {
  padding: 32px;
  border-left: 6px solid var(--red);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.seo-block p {
  margin-bottom: 0;
}

.answer-section {
  background: var(--white);
}

.answer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.answer-card,
.answer-list {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.answer-card {
  padding: 30px;
}

.answer-card h3 {
  margin-bottom: 14px;
}

.answer-card p,
.answer-list p {
  margin-bottom: 0;
}

.answer-list {
  margin-top: 24px;
  padding: 32px;
  border-left: 6px solid var(--red);
  background: var(--bg);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-grid div {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.process-grid span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--white);
  border-radius: 14px;
  background: var(--red);
  font-weight: 950;
}

.faq-grid {
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: 150px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

details {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(15, 36, 56, 0.03);
}

summary {
  position: relative;
  padding: 24px 56px 24px 24px;
  color: var(--navy);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  right: 24px;
  top: 24px;
  color: var(--red);
  content: "+";
  font-size: 1.4rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: -8px 24px 24px;
}

.contact-section {
  padding: 112px 0;
  background:
    linear-gradient(180deg, var(--bg) 0%, var(--bg) 50%, var(--navy) 50%, var(--navy) 100%);
}

.contact-card {
  grid-template-columns: 0.86fr 1fr;
  padding: 50px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 11% 20%, rgba(113, 203, 204, 0.2), transparent 24%),
    linear-gradient(135deg, var(--navy), #071421);
  box-shadow: var(--shadow-md);
}

.contact-copy h2,
.contact-copy p,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p {
  opacity: 0.76;
  font-size: 1.06rem;
}

.contact-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-points span {
  padding: 14px 16px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fbfdff;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(236, 28, 36, 0.5);
  box-shadow: 0 0 0 4px rgba(236, 28, 36, 0.09);
}

.site-footer {
  padding: 68px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.65fr 0.65fr;
  gap: 44px;
}

.footer-brand img {
  width: 128px;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer a:hover {
  color: var(--white);
}

.footer-brand address {
  display: grid;
  gap: 6px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.footer-brand address a {
  display: inline-flex;
  margin-bottom: 0;
  color: var(--mint);
  font-weight: 900;
}

.copyright {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
}

.copyright a {
  color: var(--mint);
  font-weight: 900;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(246, 249, 252, 0.96) 48%, rgba(235, 247, 255, 0.94)),
    radial-gradient(circle at 84% 22%, rgba(41, 178, 254, 0.22), transparent 30%);
}

.contact-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(15, 36, 56, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 36, 56, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.contact-hero-grid,
.contact-page-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 60px;
  align-items: center;
}

.contact-hero-copy p {
  max-width: 680px;
  font-size: 1.12rem;
}

.office-card {
  padding: 38px;
  color: var(--white);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 88% 12%, rgba(236, 28, 36, 0.42), transparent 26%),
    linear-gradient(145deg, rgba(15, 36, 56, 0.98), rgba(24, 53, 82, 0.98));
  box-shadow: var(--shadow-md);
}

.office-card h2,
.office-card address {
  color: var(--white);
}

.office-card address {
  margin: 0 0 28px;
  font-size: 1.1rem;
  font-style: normal;
}

.office-actions,
.info-list {
  display: grid;
  gap: 14px;
}

.office-actions a {
  padding: 15px 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.contact-page-section {
  background: var(--bg);
}

.contact-page-grid {
  align-items: start;
}

.contact-info-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.info-list {
  margin-top: 28px;
}

.info-list div {
  padding: 18px;
  border-radius: 16px;
  background: var(--bg);
}

.info-list strong,
.info-list span {
  display: block;
}

.info-list strong {
  margin-bottom: 6px;
  color: var(--navy);
}

.info-list a {
  color: var(--red);
  font-weight: 900;
}

.map-placeholder {
  padding: 0 0 104px;
  background: var(--bg);
}

.map-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 42px;
  border-radius: var(--radius-xl);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.map-card p {
  margin-bottom: 0;
}

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: flex;
  align-items: stretch;
  gap: 10px;
}

.floating-call,
.whatsapp-chat {
  display: inline-grid;
  gap: 2px;
  min-width: 118px;
  padding: 13px 18px 14px;
  color: var(--white);
  border-radius: 999px;
  font-weight: 950;
  line-height: 1.1;
  text-align: center;
}

.floating-call {
  min-width: 178px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: var(--shadow-red);
  animation: callPulse 1800ms ease-in-out infinite;
}

.whatsapp-chat {
  background: #25d366;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
}

.floating-call span,
.whatsapp-chat span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.86;
}

@keyframes callPulse {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: var(--shadow-red);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 22px 52px rgba(236, 28, 36, 0.36);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .intro-grid,
  .solution-grid,
  .faq-grid,
  .contact-card,
  .contact-hero-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .quick-grid,
  .service-grid,
  .answer-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .town-grid,
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .faq-copy {
    position: static;
  }
}

@media (max-width: 780px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .topbar {
    display: block;
  }

  .topbar-inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .topbar p {
    text-align: center;
  }

  .topbar-contact {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.78rem;
  }

  .navbar {
    min-height: 74px;
  }

  .brand {
    width: 112px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 74px 14px auto 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-cta {
    text-align: center;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 84px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .quick-strip {
    margin-top: 0;
    padding-top: 18px;
    background: var(--bg);
  }

  .quick-grid,
  .service-grid,
  .solution-list,
  .answer-grid,
  .town-grid,
  .process-grid,
  .footer-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .quick-grid a {
    min-height: 64px;
  }

  .contact-card {
    padding: 30px;
  }

  .contact-hero {
    padding: 74px 0;
  }

  .office-card,
  .contact-info-panel,
  .map-card {
    padding: 28px;
  }

  .map-card {
    grid-template-columns: 1fr;
  }

  .floating-contact {
    right: 14px;
    bottom: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .floating-call,
  .whatsapp-chat {
    min-width: 0;
    padding-right: 14px;
    padding-left: 14px;
  }
}

@media (max-width: 480px) {
  .hero-panel,
  .service-card,
  .intro-card,
  .seo-block,
  .contact-form {
    padding: 24px;
  }

  .service-status div:first-child {
    display: grid;
  }

  .service-status strong {
    text-align: left;
  }
}
