/* =========================================================
   AmenityWorks — Brand Design System
   Blue · Yellow · White  |  Local property services
   ========================================================= */

:root {
  /* Brand */
  --navy: #0a1628;
  --navy-2: #10233d;
  --navy-3: #163255;
  --blue: #0d8ecf;
  --blue-bright: #1aa3e8;
  --blue-soft: #e8f6fd;
  --yellow: #ffcc00;
  --yellow-deep: #e6b800;
  --yellow-soft: #fff6cc;
  --white: #ffffff;
  --off-white: #f7f9fc;
  --slate: #4a5568;
  --slate-light: #718096;
  --border: rgba(10, 22, 40, 0.08);
  --shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --max: 1180px;
  --header-h: 76px;
  --font-display: "Anton", system-ui, sans-serif;
  --font-body: "Epilogue", system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(10, 22, 40, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 204, 0, 0.15);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--yellow);
}

.logo-text span {
  color: var(--white);
}

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

.nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--navy);
  background: var(--yellow);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-phone {
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  margin: 4px 0;
  transition: 0.2s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
  box-shadow: 0 8px 24px rgba(255, 204, 0, 0.28);
}

.btn-primary:hover {
  background: var(--yellow-deep);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

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

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

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

.btn-blue:hover {
  background: var(--blue-bright);
}

.btn-lg {
  padding: 1.05rem 1.7rem;
  font-size: 1rem;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--navy);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.94) 0%, rgba(10, 22, 40, 0.78) 48%, rgba(13, 142, 207, 0.35) 100%),
    radial-gradient(circle at 85% 20%, rgba(255, 204, 0, 0.18), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 4rem;
  max-width: 720px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 204, 0, 0.14);
  border: 1px solid rgba(255, 204, 0, 0.35);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 1.1rem;
  text-transform: uppercase;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

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

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-meta strong {
  color: var(--yellow);
  font-weight: 700;
}

/* ---------- Sections ---------- */
.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.5rem 0;
}

.section-alt {
  background: var(--off-white);
}

.section-navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: var(--white);
}

.section-head {
  max-width: 680px;
  margin-bottom: 2.5rem;
}

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

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-navy .section-label {
  color: var(--yellow);
}

.section-head h2,
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.section-head p,
.lead {
  color: var(--slate);
  font-size: 1.05rem;
}

.section-navy .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--yellow);
  color: var(--navy);
  padding: 1.1rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2.5rem;
  font-weight: 700;
  font-size: 0.95rem;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* ---------- Cards / Services ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.05);
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(13, 142, 207, 0.25);
}

.service-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--navy-2);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.05);
}

.service-card-body {
  padding: 1.35rem 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: var(--navy);
}

.service-card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  flex: 1;
}

.card-link {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.92rem;
}

.card-link:hover {
  color: var(--navy);
}

/* Icon feature cards */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  height: 100%;
  transition: 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(255, 204, 0, 0.55);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--blue-soft), #fff);
  border: 1px solid rgba(13, 142, 207, 0.15);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.feature-card p {
  color: var(--slate);
  font-size: 0.95rem;
}

.feature-card.dark {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.feature-card.dark p {
  color: rgba(255, 255, 255, 0.75);
}

.feature-card.dark .feature-icon {
  background: rgba(255, 204, 0, 0.12);
  border-color: rgba(255, 204, 0, 0.25);
}

/* ---------- Split / About ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  min-height: 380px;
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
}

.split-badge {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  background: var(--yellow);
  color: var(--navy);
  font-weight: 800;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-width: 220px;
  line-height: 1.3;
}

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.split-copy p {
  color: var(--slate);
  margin-bottom: 1rem;
}

.check-list {
  display: grid;
  gap: 0.55rem;
  margin: 1.25rem 0 1.5rem;
}

.check-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-weight: 600;
  color: var(--navy-2);
}

.check-list li::before {
  content: "✓";
  color: var(--blue);
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- Process ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.process-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--yellow);
  display: block;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
}

.process-step h3 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

/* ---------- Areas ---------- */
.area-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.pill {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  padding: 0.7rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.04);
}

.pill strong {
  color: var(--blue);
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 4px);
  padding: 3rem 2.5rem;
  background: linear-gradient(125deg, var(--navy) 0%, var(--navy-3) 55%, #0b6fa0 100%);
  color: var(--white);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 204, 0, 0.2), transparent 35%),
    url("../assets/images/cta-bg.jpg") center/cover;
  opacity: 0.18;
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

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

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-panel {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.cta-panel h3 {
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.cta-panel a {
  display: block;
  font-weight: 700;
  margin-bottom: 0.45rem;
}

.cta-panel a:hover {
  color: var(--yellow);
}

/* ---------- Page hero ---------- */
.page-hero {
  background:
    linear-gradient(120deg, rgba(10, 22, 40, 0.94), rgba(13, 142, 207, 0.55)),
    url("../assets/images/hero-apartment.jpg") center/cover;
  color: var(--white);
  padding: 4.5rem 0 3.5rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 620px;
  font-size: 1.05rem;
}

/* ---------- Service detail ---------- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.service-detail:last-child {
  border-bottom: 0;
}

.service-detail.reverse .service-detail-copy {
  order: 2;
}

.service-detail.reverse .service-detail-media {
  order: 1;
}

.service-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow);
}

.service-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: 1.9rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.service-detail p {
  color: var(--slate);
  margin-bottom: 0.85rem;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.tag {
  background: var(--blue-soft);
  color: var(--navy-2);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Form ---------- */
.form-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

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

.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy-2);
}

.form-field input,
.form-field select,
.form-field textarea {
  border: 1.5px solid #d7dee8;
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--navy);
  transition: 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13, 142, 207, 0.15);
}

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

.form-note {
  font-size: 0.85rem;
  color: var(--slate-light);
  margin-top: 0.75rem;
}

.form-success {
  display: none;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-success.show {
  display: block;
}

.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #991b1b;
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-error a {
  color: #991b1b;
  text-decoration: underline;
}

/* Honeypot: hidden from humans, present for Netlify bots filter */
.hidden-honeypot {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.side-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.side-card h3 {
  color: var(--yellow);
  margin-bottom: 0.75rem;
}

.side-card p,
.side-card li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.65rem;
}

.side-card a {
  color: var(--yellow);
  font-weight: 700;
}

.side-card ul {
  margin: 1rem 0;
}

.side-card li {
  padding-left: 1rem;
  position: relative;
}

.side-card li::before {
  content: "•";
  color: var(--yellow);
  position: absolute;
  left: 0;
}

/* ---------- FAQ ---------- */
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 860px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--slate);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-text {
  margin-bottom: 0.85rem;
  display: inline-block;
}

.footer-brand p {
  max-width: 320px;
  font-size: 0.95rem;
  margin: 0.75rem 0 1rem;
}

.footer-col h4 {
  color: var(--yellow);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}

.footer-col a {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.95rem;
}

.footer-col a:hover {
  color: var(--yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

/* ---------- Utilities ---------- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.yellow { color: var(--yellow); }
.blue { color: var(--blue); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .form-wrap,
  .service-detail,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-detail.reverse .service-detail-copy,
  .service-detail.reverse .service-detail-media {
    order: initial;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(255, 204, 0, 0.15);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: 0.25s ease;
  }

  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 1rem;
    border-radius: 10px;
  }

  .header-phone {
    display: none;
  }

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

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

@media (max-width: 560px) {
  .grid-4,
  .process,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-band {
    padding: 2rem 1.25rem;
  }
}
