/* ===========================================================
   BT Elektro GmbH — Stylesheet
   Colors preserved from the original bt-elektro.ch template:
   Primary blue #017AD0, charcoal #454046, greys
   =========================================================== */

:root {
  --blue: #017ad0;
  --blue-dark: #01528c;
  --blue-light: #0186e5;
  --charcoal: #454046;
  --grey-900: #262626;
  --grey-700: #595959;
  --grey-500: #7e7e7e;
  --grey-300: #a0a0a0;
  --grey-100: #dedede;
  --grey-50: #f4f5f6;
  --accent: #0186e5;
  --white: #ffffff;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(38, 38, 38, 0.06);
  --shadow-md: 0 10px 30px rgba(1, 82, 140, 0.12);
  --shadow-lg: 0 20px 50px rgba(38, 38, 38, 0.18);
  --container: 1180px;
  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--grey-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  scroll-margin-top: 84px;
}

h1, h2, h3, h4 {
  margin: 0 0 0.5em 0;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--blue);
  display: inline-block;
}

.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}

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

.section-head p {
  color: var(--grey-700);
  font-size: 1.05rem;
}

.section-pad {
  padding: 88px 0;
}

.bg-grey {
  background: var(--grey-50);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(1, 82, 140, 0.22);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--grey-100);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

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

.brand img {
  height: 46px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--grey-700);
  transition: background var(--transition), color var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--blue);
  background: rgba(1, 122, 208, 0.08);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.header-phone svg {
  color: var(--blue);
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--charcoal);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 168px 0 110px;
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 55%, var(--blue-light) 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.hero::before {
  width: 620px;
  height: 620px;
  background: rgba(255, 255, 255, 0.06);
  top: -220px;
  right: -160px;
}

.hero::after {
  width: 420px;
  height: 420px;
  background: rgba(255, 255, 255, 0.05);
  bottom: -220px;
  left: -120px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 7px 16px 7px 8px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero h1 span {
  color: #d9ecff;
}

.hero p.lead {
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
  margin-bottom: 32px;
}

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

.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.hero-stats .stat strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
}

.hero-stats .stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

.hero-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--grey-900);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}

.hero-card h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card h3 svg {
  color: var(--blue);
}

.hero-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-top: 1px solid var(--grey-100);
  font-size: 0.94rem;
  color: var(--grey-700);
}

.hero-card ul li:first-child {
  border-top: none;
}

.hero-card ul li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- Intro / About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.about-figure {
  background: linear-gradient(160deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-radius: var(--radius);
  padding: 40px 30px;
  color: var(--white);
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 100px;
}

.about-figure .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-figure h4 {
  color: var(--white);
  font-size: 1.3rem;
}

.about-figure p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.about-figure .signature {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
}

.about-figure .signature span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
}

.about-text p {
  color: var(--grey-700);
  margin-bottom: 18px;
  font-size: 1.02rem;
}

.about-text strong {
  color: var(--charcoal);
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.service-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(1, 122, 208, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background var(--transition), color var(--transition);
}

.service-card:hover .icon {
  background: var(--blue);
  color: var(--white);
}

.service-card h4 {
  font-size: 1.04rem;
  margin-bottom: 8px;
}

.service-card p {
  color: var(--grey-700);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Inspection panel ---------- */
.panel {
  background: var(--charcoal);
  border-top: 6px solid var(--blue);
  border-radius: var(--radius);
  padding: 46px;
  color: var(--white);
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.panel h3 {
  color: var(--white);
  font-size: 1.35rem;
}

.panel > .panel-intro p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.96rem;
}

.panel-col h5 {
  color: #cfe6fb;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 0 0 14px 0;
}

.panel-col ul li {
  display: flex;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.88);
}

.panel-col ul li svg {
  color: #cfe6fb;
  flex-shrink: 0;
  margin-top: 3px;
}

.panel-note {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 24px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
}

.panel-note strong {
  color: rgba(255, 255, 255, 0.9);
}

/* ---------- Rental (Mietmaterial) ---------- */
.rental-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.rental-text p {
  color: var(--grey-700);
  font-size: 1.03rem;
  margin-bottom: 26px;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.event-tags span {
  background: var(--white);
  border: 1px solid var(--grey-100);
  color: var(--charcoal);
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.event-tags span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}

.rental-visual {
  background: linear-gradient(150deg, var(--blue-light), var(--blue-dark));
  border-radius: var(--radius);
  padding: 42px;
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.rental-visual .icon-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 24px;
}

.rental-visual .icon-row div {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rental-visual p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- References & Partners ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.ref-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--grey-100);
  color: var(--grey-700);
  font-size: 0.98rem;
}

.ref-list li:last-child {
  border-bottom: none;
}

.ref-list li svg {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 3px;
}

.partner-box {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 32px;
}

.partner-box .quote {
  font-size: 1.08rem;
  color: var(--charcoal);
  font-weight: 600;
  border-left: 3px solid var(--blue);
  padding-left: 16px;
  margin-bottom: 26px;
}

.partner-logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.partner-logos .partner-chip {
  background: var(--grey-50);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  font-weight: 700;
  color: var(--blue-dark);
  font-size: 1.02rem;
  border: 1px solid var(--grey-100);
  transition: transform var(--transition), box-shadow var(--transition);
}

.partner-logos .partner-chip:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.partner-logos .partner-chip span {
  display: block;
  font-weight: 400;
  font-size: 0.76rem;
  color: var(--grey-500);
  margin-top: 4px;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--charcoal);
  color: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-md);
}

.contact-info-card h3 {
  color: var(--white);
}

.contact-info-card > p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  margin-bottom: 26px;
}

.contact-row {
  display: flex;
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-row:first-of-type {
  border-top: none;
}

.contact-row .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #cfe6fb;
}

.contact-row strong {
  display: block;
  font-size: 0.92rem;
}

.contact-row a,
.contact-row span.value {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.map-embed {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.map-embed iframe {
  width: 100%;
  height: 180px;
  border: 0;
  display: block;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.field {
  margin-bottom: 18px;
}

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

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 7px;
}

.field label .req {
  color: var(--blue);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--grey-100);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--grey-900);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(1, 122, 208, 0.12);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--grey-700);
  margin-bottom: 22px;
}

.consent input {
  margin-top: 3px;
}

.consent a {
  color: var(--blue);
  font-weight: 600;
}

.form-note {
  font-size: 0.82rem;
  color: var(--grey-500);
  margin-top: 12px;
  text-align: center;
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--blue-dark), var(--blue));
  color: var(--white);
  border-radius: var(--radius);
  padding: 54px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: var(--container);
  box-shadow: var(--shadow-md);
}

.cta-band h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.82);
  padding-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
  background: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.88rem;
  max-width: 260px;
}

.site-footer h5 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.site-footer .foot-list li {
  padding: 6px 0;
  font-size: 0.92rem;
}

.site-footer .foot-list a:hover {
  color: var(--white);
}

.site-footer .foot-map iframe {
  width: 100%;
  height: 120px;
  border: 0;
  border-radius: var(--radius-sm);
  filter: grayscale(0.3);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom .legal-links {
  display: flex;
  gap: 20px;
}

.footer-bottom .legal-links a:hover {
  color: var(--white);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity var(--transition), transform var(--transition), background var(--transition);
  z-index: 900;
}

.to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.to-top:hover {
  background: var(--blue-dark);
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Password gate ---------- */
.pw-gate {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background:
    linear-gradient(135deg, rgba(1, 82, 140, 0.94), rgba(69, 64, 70, 0.97)),
    repeating-linear-gradient(115deg, var(--charcoal) 0 90px, var(--blue-dark) 90px 180px, var(--grey-900) 180px 270px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.pw-gate.unlocked {
  display: none;
}

.pw-gate-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pw-gate-logo {
  height: 40px;
  width: auto;
  margin: 0 auto 26px;
  display: block;
}

.pw-gate-card h1 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.pw-gate-card p {
  font-size: 0.92rem;
  color: var(--grey-700);
  margin-bottom: 22px;
}

.pw-gate-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pw-gate-card input {
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--grey-100);
  font-size: 0.95rem;
  font-family: inherit;
  text-align: center;
  background: var(--grey-50);
  color: var(--grey-900);
}

.pw-gate-card input:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(1, 122, 208, 0.15);
}

.pw-gate-card .btn {
  justify-content: center;
}

.pw-gate-card p.pw-gate-error {
  color: var(--blue-dark);
  font-size: 0.85rem;
  margin: 0;
  font-weight: 600;
}

body.gate-active {
  overflow: hidden;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid,
  .about-grid,
  .rental-wrap,
  .ref-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-figure {
    position: static;
  }

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

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

@media (max-width: 860px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-header.open .main-nav {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 10px 24px 20px;
    box-shadow: var(--shadow-sm);
    gap: 2px;
  }

  .site-header.open .main-nav a {
    padding: 13px 16px;
  }

  .hero {
    padding-top: 132px;
  }

  .cta-band {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
}

@media (max-width: 600px) {
  .section-pad {
    padding: 62px 0;
  }

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

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

  .hero-stats {
    gap: 24px;
  }

  .panel {
    padding: 30px 24px;
  }

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