/* =========================================================
   Root Variables
   ========================================================= */
:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --border: #e5e7eb;
  --borderf: #9b9a9a36;
  --text: #0f141b;
  --muted: #6b7280;

  --primary: #1e88e5;
  --title: #276295;
  --primary-soft: #e9f4fc;

  --radius: 14px;
  --nav-h: 100px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.15);

  /* Slogan colors (kept) */
  --slogan-blue: #5297f8;
  --slogan-green: #21dd5c;
  --slogan-bg: #090422;
}

/* Make sure main padding isn’t accidentally injected elsewhere */
main {
  padding: 0;
}

/* =========================================================
   Header / Navigation
   ========================================================= */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

/* Left cluster */
.lefts-cluster {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: -18px; /* keeps your current alignment */
}

/* Menu button */
.menu-btn {
  min-width: 48px;
  min-height: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.05s ease, background 0.2s ease;
}

.menu-btn:hover {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
  background: #f9fafb;
}

.menu-btn:active {
  transform: scale(0.97);
}

.menu-btn:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.5);
  outline-offset: 2px;
}

.menu-icon {
  width: 18px;
  height: 12px;
  position: relative;
  display: block;
}

.menu-icon span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 5px; }
.menu-icon span:nth-child(3) { top: 10px; }

/* Company (logo + title image) */
.company {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  text-decoration: none;
}

.site-logo {
  width: auto;
  height: 70px;
  object-fit: contain;
}

.site-title {
  width: auto;
  height: 100px;
  padding: 0;
  object-fit: contain;
}

/* Right actions */
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Buttons */
.btn {
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: #f9fafb;
}

.btn:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: rgba(30, 136, 229, 0.4);
}

.btn-primary:hover {
  background: #1976d2;
}

.btn-primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* =========================================================
   Slogan (desktop pill next to logo/title)
   ========================================================= */
.slogan {
  display: inline-flex;
  align-items: center;
}

/* shared pill look (also used in mobile section) */
.slogan-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f3f4f6;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 10px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}

.slogan-part-blue { color: #2863b7; font-weight: 700; }
.slogan-part-green { color: #1ea84a; font-weight: 700; }

.slogan-mobile-text {
  display: inline;
  font-size: 0.85rem;
  font-weight: 650;
}

.slogan-desktop-text {
  display: none;
  font-size: 0.95rem;
  font-weight: 650;
}

/* =========================================================
   Drawer
   ========================================================= */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #ffffff;
  border-right: 1px solid var(--border);
  box-shadow: var(--shadow);
  transform: translateX(-103%);
  transition: transform 0.25s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.drawer-header {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
}

.drawer-title {
  font-size: 1rem;
  font-weight: 800;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
}

.drawer-close:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  outline-offset: 2px;
}

.drawer-body {
  padding: 14px;
  overflow-y: auto;
}

.drawer-nav {
  display: grid;
  gap: 8px;
}

.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  font-weight: 650;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.drawer-link:hover {
  background: #f4f9ff;
  border-color: rgba(30, 136, 229, 0.4);
}

.drawer-link:focus-visible {
  outline: 3px solid rgba(30, 136, 229, 0.35);
  outline-offset: 2px;
}

.drawer-link.active {
  background: var(--primary-soft);
  border-color: rgba(30, 136, 229, 0.6);
}

.drawer-cta {
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.drawer-cta p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Open state */
body.drawer-open {
  overflow-y: hidden;
}

body.drawer-open .drawer-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open .drawer {
  transform: translateX(0);
}

/* =========================================================
   Mobile slogan section (below nav)
   ========================================================= */
.slogan-mobile-section {
  display: none;
  text-align: center;
  background: #0000008a;
  font-weight: 700;
  font-size: 0.85rem;
  max-height: fit-content;
}

@media (max-width: 499px) {
  .container {
    text-align: center;
  }

  .slogan {
    display: none; /* desktop pill hidden on mobile */
  }

  .slogan-mobile-section {
    display: block;
    padding: 6px;
    text-align: center;
  }

  .slogan-mobile-section .slogan-pill {
    display: inline;
    background: transparent;
    color: #ffffff;
    border: 0;
    border-radius: 0;
    padding: 12px;
    justify-content: center;
  }

  .slogan-mobile-section .slogan-part-blue {
    color: var(--slogan-blue);
  }
  
  .slogan-mobile-section .slogan-part-green {
    color: var(--slogan-green);
  }

}
@media (min-width: 350px) and (max-width: 499px) {
  .topbar-actions .btn {
    min-height: 30px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 10px;
    max-width: 125px;
    max-height: 45px;
  }
}

@media (min-width: 500px) and (max-width: 554px) {
  .topbar-actions .btn {
    min-height: 30px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 10px;
    max-width: 65px;
    max-height: 45px;
  }
}
@media (min-width: 555px) and (max-width: 767px) {
  .topbar-actions .btn {
    min-height: 30px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 10px;
    max-width: 125px;
    max-height: 45px;
  }
}
@media (min-width: 768px) and (max-width: 782px) {
  .topbar-actions .btn {
    min-height: 30px;
    padding: 0.3rem 0.6rem;
    font-size: 0.9rem;
    border-radius: 10px;
    max-width: 125px;
    max-height: 45px;
  }
}
/* =========================================================
   Responsive tweaks (match your current behavior)
   ========================================================= */
@media (min-width: 768px) {

  .container {
    text-align: center;
  }

  .site-logo {
    height: 70px;
  }

  /* match your existing “bigger on desktop” slogan text */
  .slogan-mobile-text { display: none; }
  .slogan-desktop-text { display: inline; }
}

@media (min-width: 500px) and (max-width: 767px) {
  .site-logo { height: 65px; }

  /* match your existing “bigger on desktop” slogan text */
  .slogan-mobile-text { display: none; }
  .slogan-desktop-text { 
    display: inline; 
    font-size: 0.65rem;
    font-weight: 550;
  }
}

@media (min-width: 350px) and (max-width: 767px) {
    
  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
  }

  .topbar-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }

  .menu-btn {
    min-width: 20px;
    min-height: 20px;
    width: 38px;
    height: 48px;
    border-radius: 12px;
  }

  .menu-icon {
    width: 16px;
    height: 12px;
  }

  .company {
    gap: 0px;
    margin: auto;
  }

  .topbar-actions {
    display: flex;
    align-items: center;
    gap: 0px;
  }

  .lefts-cluster {
    gap: 6px;
    margin-left: 0px;
  }

  .site-title {
    height: 60px;
    width: auto;
    padding: 0;
  }  

  .site-logo {
    height: 50px;
    width: auto;
    padding: 0;
  }   
}

@media (max-width: 349px) {

  .topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
  }

  .topbar-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
  }

  .menu-btn {
    min-width: 20px;
    min-height: 20px;
    width: 28px;
    height: 48px;
    border-radius: 12px;
  }

  .menu-icon {
    width: 12px;
    height: 10px;
  }

  .company {
    gap: 0px;
    margin: auto;
  }

  .topbar-actions {
    display: flex;
    align-items: center;
    gap: 0px;
  }

  .topbar-actions .btn {
    min-height: 30px;
    min-width: 50px;
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    border-radius: 10px;
    max-width: 65px;
    max-height: 45px;
  }

  .lefts-cluster {
    gap: 3px;
    margin-left: 0px;
  }

  .site-title {
    height: 50px;
    width: auto;
    padding: 0;
  }  

  .site-logo {
    height: 40px;
    width: auto;
    padding: 0;
  }   
}

/* =========================================================
   Footer (left as-is but cleaned very lightly)
   ========================================================= */
.footer {
  position: relative;
  padding: 40px 0 60px;
  background: #ffffff;
  border-top: 1px solid var(--borderf);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0px;
  align-items: center;
  justify-items: center;
}

.footer__center {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: center;
  height: auto;
}

.footer__nav {
  display: grid;
  grid-template-columns: auto-fit minmax(100px, 1fr);
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.footer__brand .brand__mark {
  width: auto;
  height: 50px;
  align-items: center;
  color: #000000;
}

.footer__links {
  display: inline-flex;
  gap: 22px;
  flex-wrap: wrap;
  color: #7bb0fa;
  font-size: 14px;
  font-weight: 500;
}

.footer__note {
  text-align: center;
  margin-bottom: 18px;
  color: #040510;
  font-size: 16px;
  font-weight: 550;
}

@media (min-width: 768px) {
  .footer__brand .brand__mark {
    color: #d2ffcd;
  }
  
  .footer__links {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .footer__brand .brand__mark {
    height: 25px;
    color: #d2ffcd;
  }

  .footer__links {
    font-size: 12px;
    gap: 8px;
  }

  .footer__note {
    font-size: 14px;
  }

}

/* =========================================================
   Style CSS Page
   ========================================================= */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;

}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Inter', sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

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

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

button {
  font-family: inherit;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --border: #e5e7eb;
  --text: #0f141b;
  --muted: #6b7280;

  --primary: #1e88e5;
  --title: #276295;
  --primary-soft: #e9f4fc;

  --radius: 14px;
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.15);
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
  text-align: center;
}

/* style.css (optional utility) */
.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;
}

.section {
  padding: 64px 0;
}

.section-lg {
  padding: 96px 0;
}

.section-light {
  background: #ffffff;
}

.section-video {
  background: #f8fafc;
}

.section-soft {
  background: var(--primary-soft);
}

.section-inner {
  width: min(1100px, 92%);
  margin: auto;
}

@media (min-width: 768px) {
  .container {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 48px 0;
  }

  .section-lg {
    padding: 72px 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.75em;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  font-weight: 680;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.4rem);
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

h5 {
  font-size: 2.0rem;
  text-align: center;
  font-weight: 600;
  color: var(--text);
}

@media (max-width: 767px) {

  h1 {
    font-size: clamp(1.9rem, 4vw, 2.25rem);
  }

  h2 {
    font-size: clamp(1.9rem, 4vw, 2.25rem);
  }

  h3 {
    font-size: clamp(1.0rem, 4vw, 2.25rem);
  }

}

.feature-image-seven {
  padding: 10px 0;
  background: transparent;
}



@media (max-width: 767px) {

  .feature-image-seven {
    display: inline;
    height: 160px;
    padding: 0 60px 60px 60px;
    background: transparent;
    margin-top: -40px;
    margin-bottom: 15px;
    width: 100%;
  }

}


/* =========================================================
   Homepage Styles
   ========================================================= */

.home-hero {
  background-image: url("/images/home_img1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: #ffffff;
  min-height: 550px;
  display: flex;
  align-items: center;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.home-hero .section-inner {
  position: relative;
  z-index: 1;
}

.home-hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .home-hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.home-hero-content h1 {
  color: #ffffff;
  max-width: 620px;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 520px;
  margin-top: 16px;
  color: #e5e7eb;
}

.home-hero-card {
  background: #ffffff;
  color: var(--text);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (min-width: 768px) {
  .home-hero-card {
    padding: 32px;
  }
}

@media (max-width: 768px) {
  .home-hero-content h1 {
    font-size: clamp(1.9rem, 4vw, 2.25rem);
  }
}

.home-hero-card h3 {
  margin-bottom: 12px;
}

.home-hero-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.home-hero-card .btn {
  margin-top: 8px;
}

.home-hero h6 {
  font-size: clamp(2.25rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
}

.home-sections {
  display: flex;
  flex-direction: column;
  gap: 0px;
  padding: 0px 0;
}

.home-feature {
  border-radius: 18px;
  overflow: hidden;
  content-visibility: auto;
  contain-intrinsic-size: 700px;
}

.feature-inner {
  display: flex;
  flex-direction: column;
}

.feature-content {
  padding: 28px;
  text-align: center;
}

.feature-content h2 {
  margin-bottom: 12px;
}

.feature-content p {
  margin-bottom: 20px;
  color: var(--muted);
}

.feature-image {
  width: 100%;
}

.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .feature-image {
    padding: 12px 0 4px;
  }

  .feature-image img {
    max-width: 82%;
    margin: 0 auto;
    border-radius: 12px;
  }

  .feature-content {
    padding: 24px 20px 8px;
  }
}

@media (min-width: 768px) {
  .home-feature {
    padding: 48px 0;
  }

  .feature-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .feature-content {
    flex: 1;
    text-align: left;
    padding: 0;
    padding-right: 20px;
  }

  .feature-image {
    flex: 1;
    display: flex;
    align-items: stretch;
    position: relative;
    justify-self: end;
  }

  .feature-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: cover;
    border-radius: 14px;
  }
}

.feature-water-test {
  background: #e3f2fd;
}

.feature-manage-leads {
  background: #eafff1ba;
}

.feature-questions {
  background: #e3f2fd;
}

.feature-next-steps {
  background: #eafff1ba;
}

/* =========================================================
   Video Section Styles
   ========================================================= */

   .how-it-works {
  padding-top: 12px;
  padding-bottom: 12px;
}

.video-wrapper {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive video */
.video-wrapper video {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #000;
  box-shadow: var(--shadow);
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .video-wrapper {
    margin-top: 32px;
  }
}


/* =========================================================
   Form Section
   ========================================================= */
   /* =========================================================
   GoHighLevel Form Embed + Skeleton Loader
   Scoped to avoid site-wide side effects
   ========================================================= */

/* Wrapper around the embedded iframe */
.ghl-form-wrapper {
  width: 100%;
  max-width: 720px;
  margin: 2.5rem auto 0;
  padding: 0;
  background: transparent;
  border-radius: 12px;
  contain: layout size;
  min-height: 656px;
  aspect-ratio: 720 / 656;
  position: relative;
}

.ghl-form-wrapper.loading {
  background: #f5f7fa;
}

.ghl-form-wrapper iframe {
  width: 100%;
  height: 656px;
  border: none;
  display: block;
  background: transparent;
  will-change: contents;
}

/* ---------------------------------------------------------
   Helper wrapper (fix typo + support both class names)
   --------------------------------------------------------- */
.feature-section-inner,
.feature-sectioninner {
  position: relative;
  margin-top: 0;
}

/* ---------------------------------------------------------
   Form subtitle styling (SAFE replacement for global h6)
   Use <p class="form-subtitle">...</p> or <h3 class="form-subtitle">...</h3>
   --------------------------------------------------------- */
.form-subtitle {
  font-size: 1.05rem;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  margin: 0.25rem 0 0;
}

/* Backward-friendly: if you still have an h6 in a form section,
   it will look correct BUT only within known form wrappers. */
.feature-section-inner h6,
.feature-sectioninner h6,
.section-inner h6 {
  font-size: 1.05rem;
  text-align: center;
  font-weight: 600;
  color: var(--text);
  margin: 0.25rem 0 0;
}

.feature-section-inner h1,
.feature-sectioninner h1 {
  font-size: 2rem;
  text-align: center;
  font-weight: 650;
  color: var(--text);
  margin: 0 0;
  margin-bottom: 10px;
}

/* ---------------------------------------------------------
   Skeleton Loader
   --------------------------------------------------------- */
.form-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f5f7fa;
  border-radius: 12px;
  padding: 2rem;
  pointer-events: none;
}

.form-skeleton::before,
.form-skeleton::after {
  content: "";
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 16px;
  background: linear-gradient(
    90deg,
    #e0e4e8 0%,
    #f0f2f5 50%,
    #e0e4e8 100%
  );
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.form-skeleton::before {
  top: 2rem;
  width: 60%;
}

.form-skeleton::after {
  top: 5rem;
  width: 100%;
  height: 48px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.form-skeleton .skeleton-field {
  position: absolute;
  left: 2rem;
  right: 2rem;
  height: 48px;
  background: linear-gradient(
    90deg,
    #e0e4e8 0%,
    #f0f2f5 50%,
    #e0e4e8 100%
  );
  background-size: 200% 100%;
  border-radius: 8px;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.form-skeleton .skeleton-field:nth-child(1) { top: 9rem; }
.form-skeleton .skeleton-field:nth-child(2) { top: 13rem; }
.form-skeleton .skeleton-field:nth-child(3) { top: 17rem; width: 48%; }
.form-skeleton .skeleton-field:nth-child(4) { top: 17rem; right: 2rem; left: auto; width: 48%; }
.form-skeleton .skeleton-field:nth-child(5) { top: 21rem; height: 120px; }

/* ---------------------------------------------------------
   Responsive heights (embed forms are often fixed-height)
   --------------------------------------------------------- */
@media (max-width: 768px) {
  .ghl-form-wrapper {
    max-width: 100%;
    margin-top: 2rem;
    min-height: 720px;
    aspect-ratio: auto;
  }

  .ghl-form-wrapper iframe {
    height: 720px;
  }
}

@media (max-width: 480px) {
  .ghl-form-wrapper {
    min-height: 800px;
  }

  .ghl-form-wrapper iframe {
    height: 800px;
  }
}
