:root {
  --bg: #eef3f8;
  --bg-deep: #0c1d2d;
  --bg-darker: #08131f;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --surface-dark: rgba(12, 29, 45, 0.9);
  --text: #142231;
  --muted: #5d6f81;
  --line: rgba(20, 34, 49, 0.1);
  --line-strong: rgba(20, 34, 49, 0.18);
  --primary: #0f67b7;
  --primary-deep: #0b4b86;
  --accent: #f47d20;
  --accent-soft: #ffe2c8;
  --success: #dcf2e7;
  --shadow: 0 24px 70px rgba(7, 22, 37, 0.12);
  --shadow-soft: 0 14px 40px rgba(7, 22, 37, 0.08);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1200px;
  --font-body: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Eurostile", "Eurostile Extended", "Microgramma D Extended", "Microgramma", "Square 721 Extended", "Bank Gothic", "Arial Black", sans-serif;
  --font-brand: "Eurostile", "Eurostile Extended", "Microgramma D Extended", "Microgramma", "Square 721 Extended", "Bank Gothic", "Arial Black", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(15, 103, 183, 0.15), transparent 28%),
    radial-gradient(circle at 100% 12%, rgba(244, 125, 32, 0.13), transparent 20%),
    linear-gradient(180deg, #f8fbfe 0%, #edf3f8 56%, #e7eef5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 88%);
}

a {
  color: inherit;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ui-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  shape-rendering: geometricPrecision;
}

.page-shell {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.topbar {
  background:
    linear-gradient(90deg, var(--bg-darker), #10283d 50%, var(--bg-darker));
  color: #edf5ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  font-size: 0.94rem;
}

.topbar-inner p {
  margin: 0;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.topbar-links a {
  text-decoration: none;
  color: #f1f7ff;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 18px 0 0;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(250, 252, 255, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 56px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.brand-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: var(--font-brand);
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-text small {
  font-family: var(--font-brand);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 24px;
}

.social-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-links-header {
  margin-left: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(15, 103, 183, 0.08);
  border: 1px solid rgba(20, 34, 49, 0.08);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.social-link-light {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

.social-icon {
  width: 18px;
  height: 18px;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
}

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

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

.site-nav a.is-active {
  color: var(--primary-deep);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: white;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  box-shadow: 0 18px 32px rgba(15, 103, 183, 0.2);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 38px rgba(15, 103, 183, 0.24);
}

.button-secondary,
.button-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  border-color: var(--line);
  box-shadow: none;
}

.button-secondary:hover,
.button-ghost:hover {
  box-shadow: var(--shadow-soft);
}

.section {
  padding: 42px 0;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 150px);
  padding-top: 18px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.81rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.section-mark {
  width: 14px;
  height: 14px;
  color: currentColor;
}

h1,
h2,
h3,
blockquote {
  margin: 0;
  letter-spacing: -0.045em;
}

h1,
h2 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.5rem, 7vw, 6.6rem);
  line-height: 0.92;
}

h2 {
  max-width: 14ch;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.97;
}

h3 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.42rem;
  line-height: 1.08;
}

.page-title {
  max-width: 14ch;
  font-size: clamp(3rem, 6vw, 5.3rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
}

.page-intro,
.hero-text,
.panel p,
.promise-card p,
.timeline-item p,
.faq-item p,
.contact-copy p,
.site-footer p,
.stat-label,
.metric-label,
.quote-attribution,
.coverage-card p,
.info-block span,
.form-intro {
  color: var(--muted);
  line-height: 1.75;
  text-transform: capitalize;
}

.page-intro {
  max-width: 64ch;
  margin: 18px 0 0;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-text {
  max-width: 62ch;
  margin: 22px 0 30px;
  color: #42566a;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 20px;
}

.hero-strip span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(20, 34, 49, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffb06d);
  box-shadow: 0 0 0 6px rgba(244, 125, 32, 0.1);
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  color: var(--primary-deep);
  background: rgba(15, 103, 183, 0.08);
  box-shadow: none;
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  border-radius: 10px;
  color: var(--primary-deep);
  background: rgba(15, 103, 183, 0.08);
  box-shadow: none;
}

.card-icon-soft {
  background: linear-gradient(135deg, rgba(15, 103, 183, 0.08), rgba(244, 125, 32, 0.08));
  color: var(--text);
}

.hero-card {
  position: relative;
  min-height: 500px;
  display: grid;
  gap: 18px;
}

.hero-card::before,
.hero-card::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}

.hero-card::before {
  top: 18px;
  right: 22px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 32% 32%, rgba(255, 255, 255, 0.7), rgba(15, 103, 183, 0.6));
}

.hero-card::after {
  left: 24px;
  bottom: 56px;
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.7), rgba(244, 125, 32, 0.55));
}

.hero-panel,
.highlight-band,
.panel,
.promise-card,
.timeline-item,
.review-shell,
.faq-item,
.contact-card {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.hero-photo {
  position: relative;
  z-index: 2;
  overflow: hidden;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 19, 31, 0.02), rgba(8, 19, 31, 0.12));
  pointer-events: none;
}

.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(244, 125, 32, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(239, 247, 255, 0.84));
}

.hero-blueprint {
  position: relative;
  margin: 18px 0 22px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: rgba(12, 29, 45, 0.94);
  overflow: hidden;
}

.blueprint-line {
  width: 100%;
  height: 2px;
  margin-bottom: 14px;
  background: linear-gradient(90deg, rgba(99, 188, 255, 0.2), rgba(99, 188, 255, 0.95), rgba(99, 188, 255, 0.2));
}

.blueprint-line-short {
  width: 72%;
  margin-bottom: 0;
}

.blueprint-badge {
  position: absolute;
  right: 18px;
  top: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #edf6ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: none;
}

.card-label,
.panel-index,
.timeline-step,
.coverage-title {
  color: var(--primary-deep);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: none;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 22px 0 26px;
}

.hero-metrics > div,
.review-stat {
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 34, 49, 0.08);
}

.metric-value,
.stat-number {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 800;
}

.coverage-card {
  padding: 22px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(15, 103, 183, 0.09), rgba(244, 125, 32, 0.14));
  border: 1px solid rgba(20, 34, 49, 0.06);
}

.coverage-card p {
  margin: 8px 0 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: white;
  border: 1px solid rgba(20, 34, 49, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.highlight-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(242, 248, 255, 0.84));
}

.highlight-item {
  padding-right: 12px;
}

.highlight-item .stat-number {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.section-actions {
  margin-top: 24px;
}

.showcase-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(9, 26, 40, 0.96), rgba(15, 43, 68, 0.94));
  color: #eff7ff;
  box-shadow: var(--shadow);
}

.showcase-band .eyebrow {
  color: #86c7ff;
}

.showcase-band .eyebrow::before {
  background: linear-gradient(90deg, #86c7ff, var(--accent));
}

.showcase-band h2,
.showcase-band p {
  color: #eff7ff;
}

.showcase-copy p:last-child {
  color: rgba(239, 247, 255, 0.78);
}

.showcase-stats {
  display: grid;
  gap: 14px;
}

.showcase-tile {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-tile strong {
  font-size: 1.1rem;
}

.showcase-tile span {
  color: rgba(239, 247, 255, 0.78);
  line-height: 1.6;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 28px;
}

.service-grid,
.promise-grid,
.timeline,
.faq-list,
.service-area-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.promise-grid,
.timeline {
  grid-template-columns: repeat(3, 1fr);
}

.faq-list,
.service-area-grid {
  grid-template-columns: repeat(2, 1fr);
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
}

.panel,
.promise-card,
.timeline-item,
.faq-item,
.contact-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.panel,
.promise-card,
.timeline-item,
.faq-item {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.panel:hover,
.promise-card:hover,
.timeline-item:hover,
.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(7, 22, 37, 0.14);
  border-color: rgba(20, 34, 49, 0.12);
}

.panel h3,
.promise-card h3,
.timeline-item h3,
.faq-item h3 {
  margin: 14px 0 12px;
}

.review-section {
  padding-top: 58px;
}

.review-shell {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(244, 125, 32, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 248, 255, 0.82));
}

blockquote {
  max-width: 18ch;
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  line-height: 1.03;
}

.page-hero {
  padding-top: 56px;
  padding-bottom: 22px;
}

.review-stats,
.contact-details {
  display: grid;
  gap: 16px;
}

.review-stat,
.info-block {
  padding: 20px;
  border-radius: 20px;
  background: white;
  border: 1px solid rgba(20, 34, 49, 0.08);
}

.info-block {
  display: grid;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 18px;
}

.info-icon {
  margin-bottom: 6px;
}

.contact-note {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(20, 34, 49, 0.08);
}

.contact-note strong {
  color: var(--text);
}

.contact-note span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(15, 103, 183, 0.08), rgba(244, 125, 32, 0.11)),
    rgba(255, 255, 255, 0.9);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  font-weight: 800;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(20, 34, 49, 0.12);
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(15, 103, 183, 0.42);
  box-shadow: 0 0 0 4px rgba(15, 103, 183, 0.08);
}

.form-field textarea {
  resize: vertical;
}

.form-field-full {
  grid-column: 1 / -1;
}

.map-frame {
  overflow: hidden;
  margin-top: 22px;
  border-radius: 24px;
  border: 1px solid rgba(20, 34, 49, 0.1);
  min-height: 360px;
  box-shadow: var(--shadow-soft);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  margin-top: 22px;
  padding: 0 0 56px;
  border-top: 1px solid rgba(20, 34, 49, 0.08);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 26px;
  padding: 36px 0 28px;
}

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

.footer-brand {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(244, 125, 32, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(12, 29, 45, 0.97), rgba(16, 40, 61, 0.94));
  color: #edf5ff;
  box-shadow: var(--shadow);
}

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

.footer-brand-copy {
  display: grid;
  gap: 6px;
}

.footer-brand-copy strong {
  font-family: var(--font-brand);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.footer-brand-copy p,
.footer-intro {
  margin: 0;
  color: rgba(237, 245, 255, 0.82);
}

.footer-brand-copy p {
  font-family: var(--font-brand);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.footer-logo-wrap {
  flex: 0 0 auto;
  width: 132px;
  height: 64px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-actions .button-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(20, 34, 49, 0.08);
  box-shadow: var(--shadow-soft);
}

.footer-heading {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-links a,
.footer-links span {
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
}

.footer-contact {
  display: grid;
  gap: 12px;
  align-content: start;
}

.footer-contact a {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.footer-note {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 34, 49, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 18px 0 12px;
  border-radius: 999px;
  background: #25d366;
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 18px 34px rgba(17, 84, 45, 0.28);
}

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

.whatsapp-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 0.95rem;
  font-weight: 900;
}

.whatsapp-text {
  line-height: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 220ms;
}

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

@media (max-width: 980px) {
  .hero,
  .service-grid,
  .promise-grid,
  .timeline,
  .faq-list,
  .review-shell,
  .contact-card,
  .highlight-band,
  .service-area-grid,
  .contact-grid,
  .showcase-band {
    grid-template-columns: 1fr;
  }

  .footer-top,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
    justify-content: stretch;
  }

  .site-header {
    display: grid;
    border-radius: 28px;
    padding: 18px;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .social-links-header {
    margin-left: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 20px;
  }

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

  .hero-card {
    min-height: auto;
  }

  .review-stats,
  .contact-details {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .topbar-inner,
  .topbar-links {
    display: grid;
    gap: 6px;
  }

  .topbar {
    padding: 4px 0;
  }

  .topbar-inner {
    justify-items: start;
    min-height: auto;
    padding: 8px 0;
    font-size: 0.88rem;
  }

  .site-header {
    top: 10px;
    padding: 14px;
    gap: 14px;
    border-radius: 24px;
  }

  .site-nav {
    display: none;
  }

  .brand {
    width: 100%;
    gap: 10px;
    align-items: center;
  }

  .brand-logo-wrap {
    width: 82px;
    height: 42px;
    flex: 0 0 auto;
  }

  .brand-text strong {
    font-size: 0.92rem;
  }

  .brand-text small {
    font-size: 0.68rem;
    line-height: 1.2;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.6rem);
    line-height: 0.96;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  h3 {
    font-size: 1.28rem;
  }

  .page-title {
    max-width: 100%;
    font-size: clamp(2.3rem, 10vw, 3.3rem);
  }

  .section {
    padding: 30px 0;
  }

  .hero {
    gap: 22px;
  }

  .hero-text,
  .page-intro {
    font-size: 1rem;
    margin-top: 16px;
  }

  .hero-strip {
    gap: 8px;
    margin-bottom: 16px;
  }

  .hero-strip span {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 0.85rem;
    padding: 10px 12px;
  }

  .hero-points {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-points li {
    font-size: 0.95rem;
    padding-left: 26px;
  }

  .hero-panel,
  .highlight-band,
  .panel,
  .promise-card,
  .timeline-item,
  .faq-item,
  .review-shell,
  .contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .hero-blueprint {
    padding: 14px 14px 16px;
  }

  .blueprint-badge {
    position: static;
    display: inline-flex;
    margin-top: 10px;
  }

  .hero-metrics {
    gap: 12px;
    margin: 18px 0 20px;
  }

  .hero-metrics > div,
  .review-stat,
  .info-block {
    padding: 16px;
  }

  .highlight-item .stat-number,
  .metric-value,
  .stat-number {
    font-size: 1.8rem;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .showcase-band {
    padding: 22px;
    gap: 16px;
  }

  .showcase-tile {
    padding: 16px 18px;
  }

  .review-stats,
  .contact-details {
    grid-template-columns: 1fr;
  }

  .button,
  .button-secondary,
  .button-ghost {
    width: 100%;
    min-height: 50px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-field-full {
    grid-column: auto;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    padding: 13px 14px;
    font-size: 0.98rem;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }

  .site-footer {
    padding: 30px 0 40px;
  }

  .footer-top {
    gap: 18px;
    padding: 28px 0 22px;
  }

  .footer-brand,
  .footer-column {
    padding: 22px;
    border-radius: 22px;
  }

  .footer-brand-row {
    align-items: center;
  }

  .footer-logo-wrap {
    width: 104px;
    height: 52px;
  }

  .footer-actions {
    display: grid;
  }

  .social-links {
    flex-wrap: wrap;
  }

  .footer-links,
  .footer-contact {
    gap: 8px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 50px;
    padding: 0 14px 0 10px;
    gap: 8px;
  }

  .whatsapp-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: min(calc(100% - 16px), var(--max-width));
  }

  .site-header {
    padding: 12px;
  }

  .brand-logo-wrap {
    width: 72px;
    height: 38px;
  }

  .brand-text strong {
    font-size: 0.86rem;
  }

  .brand-text small {
    font-size: 0.64rem;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
  }

  .page-title {
    font-size: clamp(2.05rem, 10vw, 2.8rem);
  }

  .hero-panel,
  .highlight-band,
  .panel,
  .promise-card,
  .timeline-item,
  .faq-item,
  .review-shell,
  .contact-card,
  .showcase-band {
    padding: 18px;
  }

  .hero-strip span {
    font-size: 0.8rem;
  }

  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    width: 52px;
    justify-content: center;
    padding: 0;
  }
}
