/* ==========================================================================
   Social Upgrades: Plumbers & HVAC landing page
   Design tokens and layout recreated from the approved design reference.
   ========================================================================== */

:root {
  /* Surfaces */
  --dark: #141414;
  --dark-card: #1c1c1c;
  --dark-input: #1b1b1b;
  --hero-base: #0d1030;
  --light: #f4f4f2;
  --white: #fff;
  --light-card-alt: #fafaf8;

  /* Text */
  --ink: #1a1a1a;
  --ink-2: #4a4a46;
  --ink-list: #2a2a28;
  --on-dark: #fff;
  --on-dark-2: #bfc4bf;
  --on-dark-muted: #8a8a84;
  --on-dark-list: #d6d6d0;

  /* Brand */
  --green: #1a7f4e;
  --mint: #5fd68a;
  --mint-light: #8ef0b0;
  --chip-bg: #e7f6ec;
  --chip-ink: #15743f;
  --grad: linear-gradient(135deg, #1d9e50, #2f45e0);

  /* Rules & borders */
  --rule-light: #d8d8d2;
  --rule-light-2: #ddddd8;
  --rule-dark: rgba(255, 255, 255, .18);
  --card-border-light: #e4e4e0;

  /* Layout */
  --section-pad: clamp(48px, 7vw, 88px);
}

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

html, body { margin: 0; padding: 0; background: #111; }

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  min-width: 320px;
}

a { color: var(--green); text-decoration: none; }
a:hover { color: #2b3fd6; }

h1, h2, h3, p, ul { margin: 0; }
ul { list-style: none; padding: 0; }

img, svg { max-width: 100%; }

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #fff;
  color: #111;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 0 0 5px 0;
}
.skip-link:focus { left: 0; color: #111; }

/* Netlify honeypot */
.hp { position: absolute; left: -9999px; opacity: 0; }

/* ---------- Shared layout ---------- */

.wrap { max-width: 1120px; margin: 0 auto; }
.wrap--wide { max-width: 1180px; }
.wrap--narrow { max-width: 760px; }

.section { padding: var(--section-pad) 24px; }
.section--light { background: var(--light); }
.section--white { background: var(--white); }
.section--dark { background: var(--dark); color: var(--on-dark); }

.section__head { margin-bottom: 44px; }
.section__head--center { text-align: center; }

.eyebrow {
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 600;
  margin-bottom: 10px;
}
.eyebrow--green { color: var(--green); margin-bottom: 14px; }
.eyebrow--mint { color: var(--mint); }

.h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.05;
}
.h2--dark { color: var(--on-dark); }
.h2--mb { margin-bottom: 12px; }
.h2--center { text-align: center; font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 40px; }

.h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 10px;
}

.section__lede {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0 auto;
  max-width: 560px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  border-radius: 5px;
  white-space: nowrap;
  transition: background-color .15s ease, color .15s ease;
}
.btn--sm { padding: 10px 22px; font-size: 13px; letter-spacing: .04em; }
.btn--lg { padding: 16px 36px; font-size: 15px; letter-spacing: .06em; }

.btn--white { background: var(--white); color: #111; font-weight: 700; }
.btn--white:hover { background: #e8e8e4; color: #111; }

.btn--outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .55);
  font-weight: 600;
}
.btn--lg.btn--outline { border-color: rgba(255, 255, 255, .6); }
.btn--outline:hover { background: rgba(255, 255, 255, .12); color: #fff; }

/* ==========================================================================
   1. Hero
   ========================================================================== */

.hero {
  background-color: var(--hero-base);
  background-image:
    linear-gradient(160deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, 0) 45%),
    linear-gradient(65deg, rgba(255, 255, 255, .05) 25%, transparent 25.5%),
    linear-gradient(-48deg, rgba(0, 0, 0, .22) 33%, transparent 33.5%),
    linear-gradient(115deg, #1d9e50 0%, #157a3c 30%, #2f45e0 72%, #131743 100%);
  color: #fff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px clamp(20px, 5vw, 56px);
  max-width: 1280px;
  margin: 0 auto;
}
.nav__brand { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.nav__wordmark { font-weight: 800; letter-spacing: .12em; font-size: 16px; }
.nav__tag { font-size: 11px; letter-spacing: .18em; opacity: .75; font-weight: 600; }
.nav__actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(48px, 9vw, 110px) 24px clamp(56px, 9vw, 110px);
}

.hero__badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 11px;
  letter-spacing: .22em;
  font-weight: 600;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(40px, 7.5vw, 84px);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: .01em;
  margin: 0 0 24px;
  text-transform: uppercase;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 12px;
  opacity: .92;
}

.hero__offer {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.5;
  max-width: 640px;
  margin: 0 auto;
  font-weight: 600;
  color: var(--mint-light);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 36px;
}

.hero__trust {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 12px 32px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: .2em;
  opacity: .7;
  font-weight: 600;
}

.hero__stats {
  max-width: 1120px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, .2);
  padding: 30px 24px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(150px, 100%), 1fr));
  gap: 20px;
  text-align: center;
}
.stat__value { font-size: clamp(22px, 3vw, 30px); font-weight: 800; }
.stat__label {
  font-size: 10px;
  letter-spacing: .16em;
  opacity: .65;
  font-weight: 600;
  margin-top: 4px;
  text-transform: uppercase;
}

/* ==========================================================================
   2. The Offer
   ========================================================================== */

.offer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}

.offer__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 400px;
}

.offer__list { display: flex; flex-direction: column; }

.offer-item {
  display: flex;
  gap: 22px;
  padding: 26px 0;
  border-top: 1px solid var(--rule-light);
}
.offer-item__n {
  font-size: 15px;
  font-weight: 800;
  color: var(--green);
  flex-shrink: 0;
  padding-top: 3px;
}
.offer-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.offer-item__title { font-weight: 700; font-size: 17px; }
.offer-item__body { font-size: 14px; line-height: 1.65; color: var(--ink-2); }

.chip {
  background: var(--chip-bg);
  color: var(--chip-ink);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ==========================================================================
   3. How It Works
   ========================================================================== */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: clamp(28px, 4vw, 48px);
}
.step {
  border-top: 1px solid var(--rule-dark);
  padding-top: 24px;
  text-align: center;
}
.step__n {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin: 0 auto 18px;
}
.step__title {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 10px;
}
.step__body { font-size: 13.5px; line-height: 1.7; color: var(--on-dark-2); }

/* ==========================================================================
   4. Choose Your Plan
   ========================================================================== */

.section--white .section__head--center { margin-bottom: 40px; }

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 20px;
}

.plan {
  border: 1px solid var(--card-border-light);
  border-radius: 16px;
  padding: 32px 28px;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.plan--featured { background: var(--light-card-alt); }

.plan__badge {
  align-self: flex-start;
  background: var(--grad);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
/* Cards without a badge reserve the same vertical slot (a hidden copy of the
   badge) so all three plan names sit on one line. That copy is hidden with an
   INLINE style, not a rule here, on purpose: the element and its hiding must
   ship in the same file. When they were split, a cached stylesheet paired with
   fresh HTML rendered "MOST POPULAR" on all three cards. */

.plan__name { font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.plan__blurb {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
  margin-bottom: 22px;
  min-height: 62px;
}
.plan__price { margin-bottom: 6px; }
.plan__amount { font-size: 38px; font-weight: 800; }
.plan__per { font-size: 13px; color: var(--ink-2); }
.plan__buyout { font-size: 12px; color: var(--ink-2); margin-bottom: 22px; }

.pill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111;
  color: #fff;
  border-radius: 999px;
  padding: 12px 8px 12px 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
  margin-bottom: 24px;
  transition: background-color .15s ease;
}
.pill:hover { background: #2b2b2b; color: #fff; }
.pill__icon {
  background: #fff;
  color: #111;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.features { display: flex; flex-direction: column; gap: 10px; }
.features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-list);
}
.check { color: var(--green); font-weight: 800; flex-shrink: 0; }

.plans__foot {
  text-align: center;
  margin-top: 28px;
  font-size: 13px;
  color: var(--ink-2);
}

/* ==========================================================================
   5. Add-On Services
   ========================================================================== */

.addons__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.addons__note {
  font-size: 14px;
  color: var(--on-dark-2);
  max-width: 380px;
  line-height: 1.6;
}

.addons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 0 clamp(28px, 4vw, 56px);
}
.addon {
  border-top: 1px solid rgba(255, 255, 255, .16);
  padding: 24px 0;
}
.addon__title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 6px;
}
.addon__plus { color: var(--mint); font-weight: 800; }
.addon__body {
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--on-dark-2);
  padding-left: 21px;
}

.chatplans-block { margin-top: 80px; }
.chatplans-block .section__head--center { margin-bottom: 36px; }
.chatplans__note {
  font-size: 14px;
  color: var(--on-dark-2);
  margin: 0 auto;
  max-width: 520px;
  line-height: 1.6;
}

.chatplans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 20px;
}
.chatplan {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  padding: 28px 26px;
  background: var(--dark-card);
}
.chatplan__name { font-weight: 700; font-size: 18px; margin-bottom: 6px; }
.chatplan__blurb {
  font-size: 13px;
  color: var(--on-dark-2);
  line-height: 1.6;
  margin-bottom: 18px;
  min-height: 58px;
}
.chatplan__price { margin-bottom: 20px; }
.chatplan__amount { font-size: 32px; font-weight: 800; }
.chatplan__per { font-size: 13px; color: var(--on-dark-muted); }

.features--dark { gap: 9px; }
.features--dark li { color: var(--on-dark-list); }
.check--mint { color: var(--mint); }

/* ==========================================================================
   6. FAQ
   ========================================================================== */

.faq { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid var(--rule-light-2); }

.faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px 4px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  background: none;
  border: 0;
  text-align: left;
  transition: color .15s ease;
}
.faq__q:hover { color: var(--green); }
.faq__mark { font-size: 18px; color: var(--on-dark-muted); flex-shrink: 0; }

.faq__a {
  padding: 0 4px 22px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 640px;
}

/* ==========================================================================
   7. Booking / Contact / Footer
   ========================================================================== */

.booking {
  background: var(--dark);
  color: var(--on-dark);
  padding: var(--section-pad) 24px 40px;
}

.booking__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 44px;
  align-items: start;
}

.booking__title {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  margin: 0 0 24px;
  line-height: 1.2;
}
.booking__lede {
  font-size: 15px;
  line-height: 1.7;
  color: var(--on-dark-2);
  margin: 0 0 28px;
}
.booking__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.booking__links a { color: #fff; }
.booking__links a:hover { color: var(--mint); }

/* Contact form */
.cform {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cform__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(160px, 100%), 1fr));
  gap: 12px;
}
.cform input,
.cform textarea {
  background: var(--dark-input);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  width: 100%;
}
.cform textarea { resize: vertical; }
.cform input::placeholder,
.cform textarea::placeholder { color: #8a8a84; }
.cform input:focus,
.cform textarea:focus { border-color: rgba(255, 255, 255, .35); }

.cform__submit {
  background: #fff;
  color: #111;
  border: none;
  border-radius: 5px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: .04em;
  cursor: pointer;
  font-family: inherit;
  align-self: flex-start;
  transition: background-color .15s ease;
}
.cform__submit:hover { background: #e8e8e4; }

/* cal.com panel */
.calpanel {
  position: relative;
  min-height: 560px;
  background: var(--dark-input);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 16px;
  overflow: hidden;
}
.calpanel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 24px;
}
.calpanel__placeholder[hidden] { display: none; }
.calpanel__title { font-weight: 600; font-size: 15px; }
.calpanel__hint { font-family: monospace; font-size: 12px; color: var(--on-dark-muted); }
.calpanel__embed {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 560px;
  overflow: auto;
}

/* Footer */
.footer {
  max-width: 1120px;
  margin: 64px auto 0;
  text-align: center;
}
.footer__social {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer__social a {
  width: 42px; height: 42px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: border-color .15s ease, color .15s ease;
}
.footer__social a:hover { border-color: var(--mint); color: var(--mint); }

.footer__meta {
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--on-dark-muted);
  margin-bottom: 36px;
}
.footer__meta a { color: var(--on-dark-muted); }
.footer__meta a:hover { color: #fff; }

/* Giant wordmark: scales with the viewport and must never clip.
   "SOCIAL UPGRADES" in Poppins 800 measures ~9.5em wide, so 8.2vw always fits
   inside the 24px section padding. The design's 36px lower bound is deliberately
   dropped because it would overflow below ~380px viewport width. */
.footer__wordmark {
  font-size: min(8.2vw, 110px);
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.3;
  white-space: nowrap;
}

@media print {
  .hero { background: #0d1030; }
}
