/* assets/styles.css */
:root {
  --bg: #f6f8fb;
  --bg2: #eef3f8;
  --card: rgba(255, 255, 255, 0.78);
  --card-solid: #ffffff;
  --text: #0d1b2a;
  --muted: #445468;
  --muted2: #60748f;
  --line: rgba(13, 27, 42, 0.10);
  --shadow: 0 18px 50px rgba(13, 27, 42, 0.12);
  --shadow2: 0 10px 28px rgba(13, 27, 42, 0.10);

  /* Brand-ish */
  --navy: #0f2a44;
  --navy2: #183b5f;
  --navy3: #0b2136; /* darker for header */
  --green: #9ad46a;
  --green2: #7fc84a;

  --radius: 22px;
  --radius2: 16px;

  --container: 1160px;

  --font: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --serif: "Fraunces", ui-serif, Georgia, serif;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% -10%, rgba(154, 212, 106, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 80% 0%, rgba(15, 42, 68, 0.18), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Topbar (dark for white logo) */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.topbar--dark{
  background: rgba(11, 33, 54, 0.78);
}

.topbar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__logo { display: block; width: auto; }

/* Banner-shaped logo: constrain height so it behaves like a normal header logo */
.brand__logo--banner{
  height: 34px;
  max-height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.25));
  opacity: 0.98;
}

/* Nav on dark header */
.nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav--dark .btn { border-color: rgba(255,255,255,0.14); }

.nav__link {
  font-weight: 600;
  font-size: 14px;
  padding: 10px 8px;
  border-radius: 12px;
}
.nav__link--dark{
  color: rgba(255, 255, 255, 0.86);
}
.nav__link--dark:hover {
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.topbar__cta {
  display: flex;
  justify-content: flex-end;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 6px 18px rgba(13, 27, 42, 0.08);
  font-size: 13px;
  white-space: nowrap;
}
.pill--dark{
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.90);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}
.pill__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, var(--green), #ffffff);
  box-shadow: 0 0 0 4px rgba(154, 212, 106, 0.16);
}

/* Buttons */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(15, 42, 68, 0.14);
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2px;
  box-shadow: var(--shadow2);
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.18);
  filter: brightness(1.02);
}
.btn:active { transform: translateY(0px); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy);
  border: 1px solid rgba(15, 42, 68, 0.18);
  box-shadow: 0 8px 18px rgba(13, 27, 42, 0.08);
}
.btn--ghost:hover {
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.14);
}

.btn--small { padding: 10px 12px; font-size: 14px; }
.btn--wide { width: 100%; padding: 14px 16px; }

.btn__shine {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.22) 35%, transparent 65%);
  transform: translateX(-120%);
  transition: transform 650ms ease;
  pointer-events: none;
}
.btn:hover .btn__shine { transform: translateX(120%); }

.card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

/* HERO */
.hero {
  position: relative;
  padding: 42px 0 26px;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::after{
  content:"";
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(900px 500px at 15% 30%, rgba(154, 212, 106, 0.35), transparent 55%),
    radial-gradient(900px 500px at 80% 25%, rgba(15, 42, 68, 0.38), transparent 60%),
    linear-gradient(180deg, rgba(246,248,251,0.74), rgba(246,248,251,0.92));
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.hero__copy {
  padding: 14px 0;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.eyebrow__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  color: rgba(15, 42, 68, 0.92);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 42, 68, 0.14);
  background: rgba(255, 255, 255, 0.68);
}
.eyebrow__text {
  color: rgba(13, 27, 42, 0.72);
  font-weight: 650;
  font-size: 13px;
}

.hero__title {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-weight: 700;
  line-height: 1.04;
  font-size: clamp(34px, 4.3vw, 56px);
  letter-spacing: -0.8px;
  color: rgba(13, 27, 42, 0.94);
  text-shadow: 0 12px 30px rgba(13, 27, 42, 0.14);
}
.hero__title-accent {
  display: inline-block;
  background: linear-gradient(90deg, var(--navy), var(--green2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.hero__title-accent::after{
  content:"";
  position:absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  height: 12px;
  border-radius: 999px;
  background: rgba(154, 212, 106, 0.24);
  z-index: -1;
}

.hero__subhead {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(13, 27, 42, 0.74);
  max-width: 62ch;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 18px;
}
.trust {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(13, 27, 42, 0.10);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 28px rgba(13, 27, 42, 0.10);
}
.trust__icon{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: rgba(255,255,255,0.96);
  background: linear-gradient(135deg, var(--navy), rgba(15, 42, 68, 0.70));
  box-shadow: 0 10px 24px rgba(15, 42, 68, 0.22);
}
.trust__text strong { display:block; font-size: 13px; }
.trust__text span { display:block; font-size: 12px; color: rgba(13,27,42,0.68); }

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.fineprint {
  margin: 14px 0 0;
  font-size: 12.5px;
  color: rgba(13, 27, 42, 0.62);
}

/* Form card */
.form-card {
  padding: 18px;
  background: rgba(255, 255, 255, 0.78);
}
.form-card__head { margin-bottom: 12px; }
.form-card__title {
  margin: 0 0 6px;
  font-size: 22px;
  letter-spacing: -0.3px;
}
.form-card__subtitle {
  margin: 0;
  font-size: 13px;
  color: rgba(13,27,42,0.68);
}
.form-card__subtitle a { font-weight: 800; color: var(--navy); text-decoration: none; }
.form-card__subtitle a:hover { text-decoration: underline; }

.accent { color: var(--navy); }
.accent::after{
  content:"";
  display:inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-radius: 999px;
  background: var(--green2);
  box-shadow: 0 0 0 4px rgba(154, 212, 106, 0.18);
  vertical-align: middle;
}

.form .grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field { display: grid; gap: 7px; }
.field span {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(13,27,42,0.76);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(13,27,42,0.14);
  background: rgba(255,255,255,0.92);
  color: var(--text);
  outline: none;
  box-shadow: 0 10px 18px rgba(13, 27, 42, 0.06);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(154, 212, 106, 0.55);
  box-shadow: 0 0 0 5px rgba(154, 212, 106, 0.20);
}
.field--full { grid-column: 1 / -1; }

.recaptcha { padding: 4px 0 2px; }

.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: rgba(13,27,42,0.70);
}
.check input { margin-top: 3px; }
.form-card__foot { margin-top: 4px; }
.mini { padding-top: 4px; border-top: 1px dashed rgba(13,27,42,0.14); }
.mini strong { display:block; font-size: 12.5px; margin-top: 10px; }
.mini__links { display:flex; gap: 10px; flex-wrap: wrap; font-size: 12.5px; color: rgba(13,27,42,0.68); }
.mini__links a { font-weight: 800; color: var(--navy); text-decoration: none; }
.mini__links a:hover { text-decoration: underline; }

/* Sections */
.section { padding: 56px 0; }
.section--tint {
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.55), rgba(255,255,255,0.0));
}
.section__head { margin-bottom: 18px; }
.section__title {
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.6px;
}
.section__subhead {
  margin: 0;
  color: rgba(13, 27, 42, 0.70);
  max-width: 70ch;
  line-height: 1.65;
}
.section__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* Services cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.service { padding: 18px; }
.service__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(154, 212, 106, 0.18);
  border: 1px solid rgba(154, 212, 106, 0.30);
  margin-bottom: 12px;
  font-size: 20px;
}
.service h3 { margin: 0 0 8px; font-size: 16px; }
.service p { margin: 0; color: rgba(13,27,42,0.70); line-height: 1.6; font-size: 14px; }

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px;
}
.step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 16px;
  border-radius: var(--radius2);
  border: 1px solid rgba(13,27,42,0.10);
  background: rgba(255,255,255,0.70);
  box-shadow: 0 14px 32px rgba(13,27,42,0.08);
}
.step__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  margin-top: 6px;
  background: radial-gradient(circle at 30% 30%, var(--green), var(--navy));
  box-shadow: 0 0 0 5px rgba(154, 212, 106, 0.16);
}
.step__body h3 {
  margin: 0 0 6px;
  font-size: 15px;
}
.step__body p {
  margin: 0;
  color: rgba(13,27,42,0.72);
  line-height: 1.6;
  font-size: 14px;
}

.note-card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  padding: 18px;
  margin-top: 16px;
  background: rgba(255,255,255,0.70);
}
.note-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display:grid;
  place-items:center;
  background: linear-gradient(135deg, rgba(154, 212, 106, 0.18), rgba(15, 42, 68, 0.12));
  border: 1px solid rgba(13,27,42,0.10);
  font-size: 22px;
}
.note-card__body h3 { margin: 0 0 8px; font-size: 16px; }
.bullets { margin: 0; padding-left: 18px; color: rgba(13,27,42,0.76); line-height: 1.7; }
.bullets li { margin: 4px 0; }

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 16px;
}
.gallery__item {
  grid-column: span 6;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(13,27,42,0.12);
  background: rgba(255,255,255,0.72);
  box-shadow: 0 18px 42px rgba(13,27,42,0.10);
}
.gallery__item--wide { grid-column: span 12; }
.gallery__item--tall { grid-column: span 6; }
.gallery img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}
.gallery__item:hover img { transform: scale(1.02); }

/* Reviews */
.reviews {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}
.review {
  padding: 18px;
  background: rgba(255,255,255,0.74);
}
.review__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.stars {
  font-weight: 900;
  color: rgba(15, 42, 68, 0.92);
  letter-spacing: 1px;
  font-size: 14px;
}
.review__meta strong { display:block; font-size: 14px; }
.review__meta span { display:block; font-size: 12px; color: rgba(13,27,42,0.62); }
.review p { margin: 0; color: rgba(13,27,42,0.72); line-height: 1.7; font-size: 14px; }

/* Meet Kevin split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  align-items: start;
}
.bio { padding: 18px; background: rgba(255,255,255,0.72); }
.bio__kicker {
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(15,42,68,0.84);
  margin-bottom: 10px;
}
.bio p { margin: 0 0 10px; color: rgba(13,27,42,0.72); line-height: 1.7; }
.bio__facts {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(13,27,42,0.14);
}
.fact { display: grid; gap: 4px; }
.fact__label { font-size: 12px; color: rgba(13,27,42,0.60); font-weight: 700; }
.fact__value { font-weight: 900; color: var(--navy); }
.fact__value:hover { text-decoration: underline; }

.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.media { overflow: hidden; background: rgba(255,255,255,0.72); }
.media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.microcta {
  margin-top: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.72);
}
.microcta__title { font-weight: 900; font-size: 14px; margin-bottom: 10px; }
.microcta__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.microcta__fine { margin-top: 10px; font-size: 12.5px; color: rgba(13,27,42,0.64); }

/* Footer CTA */
.footer-cta {
  padding: 44px 0;
  background:
    radial-gradient(900px 400px at 20% 50%, rgba(154, 212, 106, 0.22), transparent 60%),
    radial-gradient(900px 400px at 80% 50%, rgba(15, 42, 68, 0.22), transparent 60%),
    linear-gradient(135deg, rgba(15, 42, 68, 0.10), rgba(255,255,255,0.60));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.footer-cta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}
.footer-cta__copy h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.5px;
}
.footer-cta__copy p {
  margin: 0;
  color: rgba(13,27,42,0.72);
  line-height: 1.6;
}
.footer-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Footer */
.footer {
  padding: 28px 0 70px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.footer__logo { height: 34px; width: auto; display: block; margin-bottom: 10px; }
.footer__logo--dark{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.22));
}
.footer__small {
  margin: 0 0 8px;
  color: rgba(13,27,42,0.70);
  line-height: 1.6;
  font-size: 13px;
}
.footer__links { display: flex; gap: 12px; justify-content: flex-end; flex-wrap: wrap; }
.link {
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
}
.link:hover { text-decoration: underline; }
.footer__right { display: grid; gap: 10px; justify-items: end; }
.footer__bottom {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(13,27,42,0.10);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(13,27,42,0.62);
  font-size: 12.5px;
}
.footer__dot { opacity: 0.6; }

/* Sticky mobile bar */
.sticky {
  position: fixed;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  z-index: 60;
  display: none;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  border: 1px solid rgba(13,27,42,0.14);
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 50px rgba(13,27,42,0.18);
}
.sticky__btn {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 13px;
  border: 1px solid rgba(13,27,42,0.14);
  background: rgba(255,255,255,0.85);
  text-decoration: none !important;
}
.sticky__btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: #fff;
  border-color: rgba(15,42,68,0.16);
}

/* Responsive */
@media (max-width: 1020px) {
  .topbar__inner { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__right { justify-items: start; }
  .footer__links { justify-content: flex-start; }
  .sticky { display: flex; }
}

@media (max-width: 620px) {
  .form .grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .gallery__item { grid-column: span 12; }
  .media-grid { grid-template-columns: 1fr; }
  .media img { height: 240px; }
}
