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

:root {
  --navy:       #1a2b45;
  --navy-mid:   #243654;
  --teal:       #1eb8b8;
  --teal-dark:  #179898;
  --teal-glow:  rgba(30,184,184,0.18);
  --teal-light: #e4f6f6;
  --white:      #ffffff;
  --offwhite:   #f5f7fa;
  --ink:        #1a2b45;
  --body:       #3d4f63;
  --mid:        #6b7c93;
  --border:     #d8e6e6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--body);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

.container { max-width: 1360px; margin: 0 auto; padding: 0 48px; }

.label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.22);
}
/* push nav below WordPress admin bar when logged in */
.admin-bar nav { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar nav { top: 46px; } }
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  line-height: 1.2;
  flex-shrink: 0;
}
.nav-logo em {
  display: block;
  font-style: normal;
  color: var(--teal);
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-phone {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}
.nav-phone:hover { color: var(--teal); }
.nav-phone svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--teal); }

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: transform 0.22s, opacity 0.22s;
}
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* dropdown */
.nav-item { position: relative; display: flex; align-items: center; }
.nav-arrow {
  display: inline-block;
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid rgba(255,255,255,0.5);
  margin-left: 6px;
  transition: transform 0.2s;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); border-top-color: var(--teal); }
.nav-dropdown {
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid);
  border: 1px solid rgba(30,184,184,0.2);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
  min-width: 190px;
  padding: 8px 0;
  z-index: 300;
  transition: opacity 0.15s, visibility 0s 0.25s;
}
/* bridges the 8px gap so mouse movement to dropdown doesn't break hover */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-item:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.15s, visibility 0s 0s;
}
.nav-dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-dropdown a:hover,
.nav-dropdown a.active {
  color: var(--teal);
  background: rgba(30,184,184,0.08);
}

.nav-right { display: flex; align-items: center; gap: 28px; }
.nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 11px 24px;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* ── TRUST STRIP ── */
.trust {
  background: var(--navy-mid);
  border-top: 1px solid rgba(30,184,184,0.15);
  border-bottom: 1px solid rgba(30,184,184,0.15);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 180px;
  background: radial-gradient(ellipse, rgba(30,184,184,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.trust-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 38px 48px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex: 1;
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: 40px;
  color: var(--teal);
  line-height: 1;
}
.trust-label {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.trust-icon { display: none; }
.trust-divider { display: none; }

/* ── PAIN SECTION ── */
.pain {
  background: var(--white);
  padding: 96px 0;
}
.pain-head { margin-bottom: 52px; }
.pain h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 16px;
}
.pain-intro { font-size: 17px; color: var(--mid); max-width: 580px; line-height: 1.75; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  border-left: 3px solid var(--teal);
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover {
  box-shadow: 0 8px 28px rgba(30,184,184,0.14);
  transform: translateY(-2px);
}
.pain-icon { font-size: 26px; line-height: 1; margin-bottom: 14px; }
.pain-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
}
.pain-card p { font-size: 15px; line-height: 1.7; color: var(--body); }

/* ── REVIEW CARDS ── */
.reviews {
  background: var(--white);
  padding: 96px 0;
}
.reviews-head { margin-bottom: 52px; }
.reviews h2 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 12px;
}
.reviews-sub { font-size: 16px; color: var(--mid); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px;
  transition: background 0.2s;
  position: relative;
  overflow: hidden;
}
.review-card:hover { background: var(--navy-mid); }
.review-stars { color: #f5b731; font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  font-style: italic;
  margin-bottom: 0;
}
.review-divider {
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin: 22px 0;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-initials {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}
.review-name { font-size: 14px; font-weight: 600; color: #fff; line-height: 1.3; }
.review-via { font-size: 12px; color: rgba(255,255,255,0.45); }
.review-author { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0.3px; }

/* ── LEAD CAPTURE / FORMS ── */
.lead {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.lead::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(30,184,184,0.1) 0%, transparent 65%);
  pointer-events: none;
}
.lead-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.lead-left h2 {
  font-family: 'Fraunces', serif;
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 50px);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}
.lead-left h2 em { font-style: italic; color: var(--teal); }
.lead-left p {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 36px;
}
.lead-promises { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.lead-promises li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}
.lead-promises li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: transparent;
  color: var(--teal);
  border-radius: 0;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.lead-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 44px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.lead-form-card h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 6px;
}
.lead-form-card .form-sub {
  font-size: 14px;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  border: 2px solid #dde8ee;
  border-radius: 8px;
  padding: 12px 15px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--offwhite);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,184,184,0.1);
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  background: var(--teal);
  color: #fff;
  border: none;
  padding: 17px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  box-shadow: 0 6px 24px rgba(30,184,184,0.35);
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(30,184,184,0.42);
}
.form-note {
  font-size: 12px;
  color: var(--mid);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: #111e30;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 36px;
}
.footer-inner {
  max-width: 1360px;
  margin: 0 auto 48px;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
}
.footer-brand h3 {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: #fff;
  margin-bottom: 4px;
}
.footer-brand .tagline {
  color: var(--teal);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p { font-size: 14px; line-height: 1.75; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--teal);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.58); }
.footer-bottom {
  max-width: 1360px;
  margin: 0 auto;
  padding: 24px 48px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-item { padding: 28px 24px; }
  .trust-num { font-size: 32px; }
}
@media (max-width: 860px) {
  .nav-burger { display: flex; }
  .nav-phone { display: none; }
  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--navy-mid);
    flex-direction: column;
    padding: 12px 0 20px;
    border-top: 1px solid rgba(30,184,184,0.2);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    z-index: 199;
    gap: 0;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links > a,
  .nav-item > a { padding: 14px 28px; font-size: 15px; width: 100%; }
  .nav-links > a { border-bottom: 1px solid rgba(255,255,255,0.06); }
  /* mobile dropdown — accordion style */
  .nav-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-item > a { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-item:hover .nav-dropdown { opacity: 0; visibility: hidden; pointer-events: none; transition: none; }
  .nav-item.dropdown-open .nav-dropdown {
    position: static;
    transform: none;
    min-width: unset;
    width: 100%;
    border-radius: 0;
    border: none;
    box-shadow: none;
    background: rgba(0,0,0,0.2);
    padding: 4px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .nav-dropdown a { padding: 11px 44px; }
  .nav-arrow { margin-left: auto; margin-right: 28px; }
  /* keep CTA visible in nav bar */
  .nav-right { gap: 0; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .lead-inner { padding: 0 20px; }
  .footer-inner { padding: 0 20px; }
  .footer-bottom { padding: 24px 20px 0; }
  .nav-inner { padding: 0 20px; }
  .trust-inner { padding: 0; flex-wrap: wrap; }
  .trust-item { flex: 1 1 45%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 24px 16px; }
  .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .trust-num { font-size: 30px; }
  .pain-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lead-form-card { padding: 28px 22px; }
  .gform_wrapper input[type="text"],
  .gform_wrapper input[type="email"],
  .gform_wrapper input[type="tel"],
  .gform_wrapper input[type="number"],
  .gform_wrapper input[type="url"],
  .gform_wrapper select,
  .gform_wrapper textarea { padding: 8px 12px; font-size: 15px; }
}

@media (max-width: 430px) {
  .nav-cta { display: none; }
}
