/* =======================================
   Agentic Law — Corporate Legal Tech Site
   Palette:
     Deep navy #0B1F3A
     Rich gold #C9A227
     Cream     #FAF8F3
     Charcoal  #1A202C
     Slate     #4A5568
   ======================================= */

:root {
  --navy-900: #061528;
  --navy-800: #0B1F3A;
  --navy-700: #152A48;
  --navy-600: #1E3A60;
  --gold-600: #B58E28;
  --gold-500: #C9A227;
  --gold-400: #D9B84A;
  --cream: #FAF8F3;
  --white: #FFFFFF;
  --charcoal: #1A202C;
  --slate: #4A5568;
  --muted: #718096;
  --border: #E2E2DF;
  --success: #276749;
  --danger: #C53030;

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(6, 21, 40, 0.08);
  --shadow-md: 0 8px 24px rgba(6, 21, 40, 0.12);
  --shadow-lg: 0 20px 50px rgba(6, 21, 40, 0.18);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy-800); text-decoration: none; }
a:hover { color: var(--gold-600); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin: 0 0 0.6em;
  line-height: 1.2;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.02em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); }
p { margin: 0 0 1.2em; }
.lead { font-size: 1.15rem; color: var(--slate); }

.container {
  width: min(1200px, 92%);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--navy-800);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 10000;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn--primary:hover { background: var(--gold-400); border-color: var(--gold-400); color: var(--navy-900); }
.btn--secondary { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.btn--secondary:hover { background: var(--navy-700); border-color: var(--navy-700); color: var(--white); }
.btn--light { background: var(--white); color: var(--navy-900); border-color: var(--white); }
.btn--light:hover { background: var(--cream); border-color: var(--cream); color: var(--navy-900); }
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); color: var(--white); }
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 0.95rem 1.8rem; font-size: 1rem; }
.btn--full { width: 100%; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-600);
  margin-bottom: 0.8rem;
}

/* Topbar */
.topbar {
  background: var(--navy-800);
  color: var(--white);
  text-align: center;
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
}
.topbar a { color: var(--gold-400); text-decoration: underline; text-underline-offset: 2px; }
.topbar a:hover { color: var(--white); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--navy-900);
}
.logo__mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--navy-900);
  color: var(--gold-500);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  font-weight: 700;
}
.logo__word span { color: var(--gold-600); }

.site-nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--slate);
  transition: color var(--transition);
}
.site-nav a:hover { color: var(--navy-900); }

.nav-actions { display: flex; align-items: center; gap: 1rem; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 840px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('/static/images/hero.jpg') center 60% / cover no-repeat;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(6,21,40,0.93) 0%, rgba(6,21,40,0.85) 45%, rgba(6,21,40,0.55) 100%);
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(circle at 2px 2px, rgba(255,255,255,0.9) 1px, transparent 0);
  background-size: 34px 34px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding-block: 8rem 6rem;
}
.hero__text h1 { color: var(--white); margin-bottom: 1.2rem; }
.hero__lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.2rem; }
.hero__ticks { list-style: none; padding: 0; margin: 0; }
.hero__ticks li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem;
  margin-bottom: 0.55rem;
}
.hero__ticks svg {
  width: 18px;
  height: 18px;
  color: var(--gold-500);
  flex-shrink: 0;
}

.hero__visual { display: flex; justify-content: flex-end; }
.hero__card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(100%, 340px);
  box-shadow: var(--shadow-lg);
}
.hero__stat { padding: 1.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero__stat:last-child { border-bottom: none; }
.hero__stat-number, .hero__stat-suffix {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold-400);
  line-height: 1;
}
.hero__stat p { margin: 0.5rem 0 0; color: rgba(255,255,255,0.75); font-size: 0.92rem; }

/* Trust */
.trust {
  background: var(--white);
  padding: 2.6rem 1rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.trust__label {
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.trust__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
}
.trust__item {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--navy-800);
  font-size: 1.05rem;
  opacity: 0.85;
}

/* Sections */
.section { padding: 6rem 0; }
.section--pale { background: var(--cream); }
.section--dark { background: var(--navy-800); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--cta {
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.section__intro { max-width: 680px; margin-bottom: 3.5rem; }
.section__intro--center { text-align: center; margin-inline: auto; }
.section__intro--light .eyebrow { color: var(--gold-400); }
.section__intro-text { font-size: 1.08rem; color: var(--slate); margin-top: 1rem; }

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card__media { height: 180px; overflow: hidden; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.service-card:hover .service-card__media img { transform: scale(1.05); }
.service-card__body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.service-card__body h3 { margin-bottom: 0.6rem; }
.service-card__body p { color: var(--slate); font-size: 0.95rem; flex: 1; }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-800);
  margin-top: 1rem;
}
.service-card__link span { transition: transform var(--transition); }
.service-card__link:hover span { transform: translateX(4px); }

.service-card--highlight {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
  justify-content: center;
}
.service-card--highlight h3, .service-card--highlight p, .service-card--highlight a { color: var(--white); }
.service-card__list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.service-card__list li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.92rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.8);
}
.service-card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 700;
}

/* Split section */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split__image { position: relative; }
.split__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.split__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 1.2rem 1.6rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-md);
}
.split__badge strong { font-family: var(--font-heading); font-size: 2.2rem; line-height: 1; }
.split__badge span { font-size: 0.8rem; font-weight: 600; line-height: 1.3; }
.features-list { display: flex; flex-direction: column; gap: 1.6rem; margin-top: 2rem; }
.feature-item { display: flex; gap: 1rem; }
.feature-item__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  color: var(--gold-600);
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item h3 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.feature-item p { color: var(--slate); font-size: 0.95rem; margin: 0; }

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.process__step {
  position: relative;
  z-index: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.4rem;
  text-align: center;
}
.process__num {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 1.2rem;
}
.process__step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process__step p { color: rgba(255,255,255,0.7); font-size: 0.92rem; margin: 0; }

/* Results */
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.result-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.6rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.result-card__number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.8rem;
}
.result-card p { margin: 0; color: var(--slate); font-size: 0.92rem; }
.result-card p em { font-style: normal; color: var(--muted); }

/* Cases */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.case-card__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-600);
  background: rgba(201,162,39,0.11);
  padding: 0.3rem 0.7rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.case-card h3 { font-size: 1.2rem; margin-bottom: 0.8rem; }
.case-card p { color: var(--slate); font-size: 0.95rem; margin-bottom: 1.5rem; }
.case-card__footer {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.case-card__footer div { display: flex; flex-direction: column; }
.case-card__footer strong { color: var(--navy-900); font-size: 1.1rem; }
.case-card__footer span { color: var(--muted); font-size: 0.8rem; }

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  position: relative;
}
.testimonials__track {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}
.testimonials__track::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 40%;
  background: linear-gradient(90deg, transparent 0%, var(--white) 100%);
  pointer-events: none;
}
.testimonial {
  display: none;
  grid-template-columns: 180px 1fr;
  gap: 2.5rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 0;
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.5s;
}
.testimonial.is-active { display: grid; }
@keyframes fadeIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.testimonial__media { border-radius: var(--radius-md); overflow: hidden; height: 200px; }
.testimonial__media img { width: 100%; height: 100%; object-fit: cover; }
.testimonial__content p {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--navy-900);
  margin-bottom: 1.2rem;
}
.testimonial__content footer { color: var(--slate); }
.testimonial__content strong { display: block; color: var(--navy-900); }

.carousel__btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy-900);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.carousel__btn:hover { background: var(--navy-800); color: var(--white); border-color: var(--navy-800); }
.carousel__dots { display: flex; justify-content: center; gap: 0.6rem; margin-top: 1.6rem; }
.carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
}
.carousel__dot.is-active { background: var(--gold-500); }

/* FAQ */
.faq-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 4rem; align-items: flex-start; }
.faq__list { display: flex; flex-direction: column; gap: 1rem; }
.faq__item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.faq__item summary {
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold-600);
  line-height: 1;
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p { padding: 0 1.4rem 1.2rem; color: var(--slate); margin: 0; }

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact__info h2 { margin-bottom: 1.2rem; }
.contact__details { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.2rem; }
.contact__detail strong { display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 0.25rem; }
.contact__detail a, .contact__detail span { color: var(--navy-900); font-weight: 500; }

.contact__form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; gap: 1rem; margin-bottom: 1rem; }
.form-row--2 { grid-template-columns: 1fr 1fr; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field span { font-size: 0.88rem; font-weight: 500; color: var(--slate); }
.field span small { color: var(--danger); }
.field input, .field select, .field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201,162,39,0.12);
}
.field--checkbox { flex-direction: row; align-items: flex-start; gap: 0.6rem; }
.field--checkbox input { width: 18px; height: 18px; accent-color: var(--navy-800); margin-top: 2px; }
.field--checkbox span { font-size: 0.85rem; color: var(--slate); }
.form-status { margin-top: 1rem; font-size: 0.9rem; min-height: 1.4em; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--danger); }

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 2rem;
}
.footer__brand .logo { color: var(--white); margin-bottom: 1rem; }
.footer__brand .logo__mark { background: var(--gold-500); color: var(--navy-900); }
.footer__brand p { max-width: 300px; font-size: 0.92rem; }
.footer__nav strong { color: var(--white); display: block; margin-bottom: 1rem; font-size: 0.9rem; }
.footer__nav ul { list-style: none; padding: 0; margin: 0; }
.footer__nav li { margin-bottom: 0.55rem; }
.footer__nav a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer__nav a:hover { color: var(--white); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
  .services-grid, .cases, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .faq-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .contact { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(78vw, 320px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 6rem 2rem 2rem;
    transform: translateX(110%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; gap: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-actions .btn { display: none; }
  .hero__content { grid-template-columns: 1fr; gap: 2.5rem; padding-block: 5rem 3rem; }
  .hero__visual { justify-content: flex-start; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split__badge { right: 10px; }
  .services-grid, .cases, .results-grid, .process { grid-template-columns: 1fr; }
  .testimonial { grid-template-columns: 1fr; }
  .testimonial__media { height: 160px; }
  .testimonial__content p { font-size: 1.1rem; }
  .carousel__btn { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }
  .form-row--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }
}

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