/* ================================================
   Vern's Help U Do It Sprinklers
   Color: deep-grass green, water blue, warm sun
   ================================================ */

:root {
  --green-900: #0f3d22;
  --green-700: #1f6b3a;
  --green-600: #2a8a4a;
  --green-500: #36a85b;
  --water-700: #0e4f7a;
  --water-500: #1d8acb;
  --sun-500:  #f3a712;
  --sun-600:  #d18807;
  --ink-900:  #14201a;
  --ink-700:  #354a40;
  --ink-500:  #5a6e64;
  --paper:    #f7f5ef;
  --paper-2:  #ecebe3;
  --white:    #ffffff;
  --line:     #d8d6cc;
  --shadow:   0 10px 30px rgba(15, 61, 34, 0.12);
  --shadow-lg:0 25px 60px rgba(15, 61, 34, 0.22);
  --radius:   14px;
  --radius-lg:22px;
  --maxw:     1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; margin: 0 0 0.4em; }
h2 { font-size: clamp(1.7rem, 2.6vw, 2.4rem); color: var(--green-900); }
h3 { font-size: 1.15rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-700);
  background: rgba(42, 138, 74, 0.1);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.eyebrow--center { display: inline-block; }
.eyebrow--light { color: #c5ecd2; background: rgba(255,255,255,0.12); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--green-600);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(42, 138, 74, 0.35);
}
.btn--primary:hover { background: var(--green-700); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--green-900);
  border-color: var(--green-700);
}
.btn--ghost:hover { background: var(--green-700); color: var(--white); }
.btn--lg  { padding: 15px 28px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ========== TOPBAR ========== */
.topbar {
  background: var(--green-900);
  color: #e8efe8;
  font-size: 0.88rem;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); }
.topbar__phone strong { color: var(--sun-500); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74, 222, 128, .6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74, 222, 128, .55); }
  70%  { box-shadow: 0 0 0 10px rgba(74, 222, 128, 0); }
  100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

/* ========== NAV ========== */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand img {
  height: 46px;
  width: 110px;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 38%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  color: var(--green-900);
  letter-spacing: 0.04em;
}
.brand__sub { font-size: 0.78rem; color: var(--ink-500); font-weight: 600; }
.nav__links { display: flex; gap: 22px; }
.nav__links a {
  font-weight: 600;
  color: var(--ink-700);
  position: relative;
}
.nav__links a:hover { color: var(--green-700); }
.nav__links a::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 0; background: var(--green-600);
  transition: width .2s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: 10px 18px; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-900);
  border-radius: 2px;
  transition: transform .22s ease, opacity .18s ease;
}
.nav__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-active span:nth-child(2) { opacity: 0; }
.nav__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========== HERO ========== */
.hero { position: relative; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(1000px 500px at 90% -10%, rgba(29, 138, 203, 0.18), transparent 60%),
    radial-gradient(900px 600px at -10% 110%, rgba(42, 138, 74, 0.22), transparent 60%),
    linear-gradient(180deg, #f7f5ef 0%, #eaf5ee 100%);
  z-index: -1;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 70px 24px 80px;
}
.hero__copy h1 {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  margin: 8px 0 18px;
}
.h1-top, .h1-mid, .h1-bot { display: block; }
.h1-top { font-size: clamp(3.2rem, 7vw, 5.4rem); color: var(--green-900); line-height: 0.95; }
.h1-mid { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink-700); font-weight: 500; font-family: 'Inter', sans-serif; letter-spacing: 0; }
.h1-bot { font-size: clamp(3.2rem, 7vw, 5.4rem); color: var(--green-600); line-height: 0.95; }
.lede { font-size: 1.1rem; max-width: 540px; }
.lede strong { color: var(--green-900); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin: 8px 0 20px; }
.hero__points {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 22px; flex-wrap: wrap;
  font-size: 0.92rem; font-weight: 600; color: var(--ink-700);
}
.hero__points span { color: var(--green-600); margin-right: 6px; }

.hero__photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  background: var(--paper-2);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge {
  position: absolute; bottom: 18px; left: 18px;
  background: var(--sun-500); color: var(--green-900);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.hero__badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 3rem; line-height: 1; }
.hero__badge-lbl { font-weight: 700; font-size: 0.85rem; letter-spacing: 0.02em; line-height: 1.2; }

/* ========== STRIP ========== */
.strip { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 44px 24px;
}
.strip__item h3 { margin-bottom: 4px; color: var(--green-900); }
.strip__item p  { margin: 0; font-size: 0.94rem; }
.strip__icon { font-size: 1.6rem; margin-bottom: 6px; }

/* ========== SECTION HEADS ========== */
.section-head { text-align: center; max-width: 720px; margin: 0 auto 40px; }
.section-sub  { color: var(--ink-500); font-size: 1.02rem; }

/* ========== SERVICES ========== */
.services { padding: 80px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.service:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--green-500);
}
.service__icon {
  font-size: 1.7rem;
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(42, 138, 74, 0.12);
  margin-bottom: 14px;
}
.service h3 { color: var(--green-900); margin-bottom: 6px; }
.service p  { font-size: 0.96rem; margin: 0; }

/* ========== PROOF ========== */
.proof {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--green-900);
  color: #e9f5ec;
}
.proof__photo img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; }
.proof__copy {
  padding: 64px clamp(24px, 5vw, 64px);
  display: flex; flex-direction: column; justify-content: center;
}
.proof__copy h2 { color: var(--white); }
.proof__copy p  { color: #c5d8cc; max-width: 520px; }
.proof__copy .btn { align-self: flex-start; margin-top: 8px; }

/* ================================================
   SMART CONTROLLER — shared elements
   Used by homepage teaser AND smart-controller.html
   ================================================ */

/* --- Stylized Rachio device illustration --- */
.rachio-device {
  position: relative;
  width: 360px; max-width: 100%;
  aspect-ratio: 9 / 5.6;
  background: linear-gradient(180deg, #ffffff 0%, #e6ecf1 100%);
  border-radius: 20px;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.4),
    inset 0 -4px 10px rgba(0,0,0,0.05);
  display: flex; align-items: center;
  padding: 0 30px;
  z-index: 2;
}
.rachio-device--lg { width: 460px; }
.rachio-device__logo {
  flex: 0 0 auto;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--water-500);
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  font-style: italic;
  box-shadow: 0 6px 14px rgba(29,138,203,0.45);
}
.rachio-device__strip {
  flex: 1;
  height: 6px;
  margin-left: 22px;
  background: linear-gradient(90deg, #1d8acb 0%, #36c0f5 50%, #1d8acb 100%);
  border-radius: 4px;
  box-shadow: 0 0 14px rgba(29,138,203,0.75);
  display: flex; align-items: center; justify-content: space-around;
  position: relative;
}
.rachio-device__strip span {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  box-shadow: 0 0 4px rgba(255,255,255,1);
}
.rachio-device__shine {
  position: absolute;
  top: 10px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
  border-radius: 2px;
}
.rachio-device__label {
  position: absolute;
  bottom: -30px; left: 0; right: 0;
  text-align: center;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
}

.rachio-badge {
  position: absolute;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--sun-500);
  color: var(--green-900);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  transform: rotate(-10deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border: 4px solid var(--white);
  z-index: 4;
}
.rachio-badge__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.3rem; line-height: 1;
}
.rachio-badge__lbl { font-size: 0.72rem; font-weight: 700; line-height: 1.15; padding: 0 6px; }
.rachio-badge__lbl em { color: var(--water-700); font-style: normal; }

/* Rain drop animation (reusable) */
@keyframes drop {
  0%   { transform: translateY(-12px); opacity: 0; }
  20%  { opacity: 0.9; }
  100% { transform: translateY(50px); opacity: 0; }
}

/* ================================================
   HOMEPAGE TEASER — links to dedicated page
   ================================================ */
.teaser {
  padding: 90px 0;
  background: linear-gradient(135deg, #0e2b1c 0%, #0a3b56 100%);
  color: #e8f3ee;
  overflow: hidden;
}
.teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.teaser .eyebrow {
  color: var(--sun-500);
  background: rgba(243, 167, 18, 0.12);
  border: 1px solid rgba(243, 167, 18, 0.3);
}
.teaser__copy h2 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  margin: 14px 0 18px;
}
.teaser__accent {
  color: var(--sun-500);
  position: relative;
  display: inline-block;
}
.teaser__accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 6px;
  background: rgba(243, 167, 18, 0.3);
  border-radius: 4px;
}
.teaser__copy p { color: #c9dcd2; font-size: 1.05rem; max-width: 460px; margin-bottom: 28px; }
.teaser__copy strong { color: var(--white); }
.teaser__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.teaser .btn--ghost { color: #e8f3ee; border-color: rgba(255,255,255,0.4); }
.teaser .btn--ghost:hover { background: rgba(255,255,255,0.1); color: var(--white); }

.teaser__device {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 30px 0;
}
.rachio-badge--teaser { top: -20px; right: 0; }

/* ==================================================
   SMART CONTROLLER PAGE — Editorial Soriano-inspired
   Lime accent + serif headlines + roomy whitespace
   Prefix: .lp- (landing page)
   ================================================== */

.lp-page {
  --cream:     #faf8f3;
  --cream-2:   #f3f0e8;
  --ink-pure:  #0d0d0d;
  --ink-2:     #2a2a28;
  --ink-soft:  #5e6058;
  --line-2:    #e6e3da;
  --lime:      #bee268;
  --lime-2:    #d6ec9b;
  --lime-deep: #6f8c33;
  background: var(--cream);
  color: var(--ink-pure);
}
.lp-page p { color: var(--ink-soft); }

/* shared serif treatment */
.lp-page h1,
.lp-page h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink-pure);
}
.lp-page h1 em,
.lp-page h2 em {
  font-style: italic;
  font-weight: 600;
}

/* shared eyebrow + number */
.lp-eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 18px;
}
.lp-num {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime-deep);
  margin: 0 0 18px;
}

/* black pill CTA */
.lp-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  background: var(--ink-pure);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  transition: transform .12s, background .2s;
}
.lp-pill:hover { transform: translateY(-1px); background: #1f1f1f; }
.lp-pill__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(190, 226, 104, 0.7);
  animation: lpDot 1.8s infinite;
}
@keyframes lpDot {
  0%   { box-shadow: 0 0 0 0 rgba(190, 226, 104, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(190, 226, 104, 0); }
  100% { box-shadow: 0 0 0 0 rgba(190, 226, 104, 0); }
}
.lp-pill--lg { padding: 18px 32px; font-size: 1.15rem; }

/* ===== HERO ===== */
.lp-hero {
  padding: 90px 0 80px;
  background: var(--cream);
}
.lp-hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-hero h1 {
  font-size: clamp(2.8rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  margin: 0 0 28px;
}
.lp-hero h1 em {
  color: var(--lime-deep);
  position: relative;
  white-space: nowrap;
}
.lp-hero h1 em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 14px;
  background: var(--lime);
  opacity: 0.55;
  border-radius: 6px;
  z-index: -1;
}
.lp-hero__lede {
  font-size: 1.13rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 500px;
  margin: 0 0 36px;
}
.lp-hero__lede strong { color: var(--ink-pure); font-weight: 700; }
.lp-hero__cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.lp-hero__sub {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.lp-hero__photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 5 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 36px 70px rgba(0,0,0,0.10);
}
.lp-hero__photo img {
  width: 78%;
  height: auto;
  display: block;
}

/* ===== STATS STRIP ===== */
.lp-stats {
  padding: 36px 0 80px;
  background: var(--cream);
}
.lp-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 24px;
  padding: 36px 12px;
}
.lp-stat {
  padding: 8px 28px;
  border-right: 1px solid var(--line-2);
  text-align: left;
}
.lp-stat:last-child { border-right: none; }
.lp-stat__num {
  display: block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.8rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--ink-pure);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.lp-stat__num em {
  font-size: 0.45em;
  font-style: normal;
  font-weight: 600;
  color: var(--lime-deep);
  vertical-align: top;
  margin-left: 4px;
}
.lp-stat--accent .lp-stat__num { color: var(--lime-deep); }
.lp-stat--accent .lp-stat__num em { color: var(--ink-pure); }
.lp-stat__lbl {
  display: block;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

/* ===== JUMP-TO-SECTION CHIPS ===== */
.lp-jump {
  padding: 30px 0 80px;
  background: var(--cream);
}
.lp-jump__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: start;
}
.lp-jump__label {
  display: inline-block;
  background: var(--lime);
  color: var(--ink-pure);
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  white-space: nowrap;
}
.lp-jump__chips {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}
.lp-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink-pure);
  text-align: center;
  transition: border-color .15s, background .15s, transform .12s;
}
.lp-chip:hover {
  border-color: var(--lime-deep);
  background: var(--lime-2);
  transform: translateY(-1px);
}

/* ===== FEATURE ROWS ===== */
.lp-row {
  padding: 80px 0;
  background: var(--cream);
}
.lp-row--shade { background: var(--cream-2); }
.lp-row__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.lp-row--reverse .lp-row__photo { order: 2; }
.lp-row--reverse .lp-row__copy  { order: 1; }
.lp-row__photo {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 60px rgba(0,0,0,0.10);
}
.lp-row__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.lp-row:hover .lp-row__photo img { transform: scale(1.04); }
.lp-row__copy h2 {
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  line-height: 1.08;
  margin: 0 0 22px;
}
.lp-row__copy > p {
  font-size: 1.08rem;
  line-height: 1.72;
  color: var(--ink-soft);
  margin: 0 0 28px;
  max-width: 520px;
}

/* bullet list (2-column on wide) */
.lp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
  max-width: 520px;
}
.lp-bullets li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.45;
  font-weight: 500;
}
.lp-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 18px;
  height: 2px;
  background: var(--lime-deep);
}

/* "FROM $X" callout pill */
.lp-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 12px 22px;
  margin: 0;
  flex-wrap: wrap;
}
.lp-tag__pre {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lp-tag strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink-pure);
  line-height: 1;
}
.lp-tag__post {
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}

/* shared section heads (integ / specs / why) */
.lp-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 60px;
}
.lp-section-head .lp-num { margin-bottom: 14px; }
.lp-section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.7rem);
  margin: 0 0 16px;
  line-height: 1.12;
}
.lp-section-sub {
  color: var(--ink-soft);
  font-size: 1.04rem;
  line-height: 1.6;
  margin: 0;
}

/* ===== INTEGRATIONS ===== */
.lp-integ {
  padding: 110px 0;
  background: var(--cream-2);
}
.lp-integ__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.lp-integ__tile {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 18px;
  padding: 30px 18px;
  text-align: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink-pure);
  line-height: 1.2;
  transition: border-color .15s, transform .15s, background .15s;
}
.lp-integ__tile small {
  display: block;
  margin-top: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lp-integ__tile:hover {
  border-color: var(--lime-deep);
  background: var(--lime-2);
  transform: translateY(-2px);
}

/* ===== SPECIFICATIONS ===== */
.lp-specs {
  padding: 110px 0;
  background: var(--cream);
}
.lp-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lp-spec {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 32px 30px;
  transition: border-color .2s, box-shadow .2s, transform .15s;
}
.lp-spec:hover {
  border-color: var(--lime-deep);
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}
.lp-spec h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-pure);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--lime);
}
.lp-spec ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
}
.lp-spec li {
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--ink-2);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-spec li strong {
  font-weight: 700;
  color: var(--ink-pure);
}
.lp-spec li span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* ===== WHY VERN'S ===== */
.lp-why {
  padding: 110px 0;
  background: var(--cream-2);
}
.lp-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lp-why__card {
  background: #fff;
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 40px 36px 36px;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.lp-why__card:hover {
  border-color: var(--lime-deep);
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.07);
}
.lp-why__num {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.4rem;
  font-style: italic;
  font-weight: 700;
  color: var(--lime-deep);
  line-height: 1;
  margin-bottom: 18px;
}
.lp-why__card h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink-pure);
  margin: 0 0 12px;
  line-height: 1.2;
}
.lp-why__card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== FINAL CTA ===== */
.lp-final {
  padding: 130px 0;
  background: var(--ink-pure);
  color: #fff;
  text-align: center;
}
.lp-final__inner { max-width: 720px; margin: 0 auto; }
.lp-final .lp-eyebrow { color: var(--lime); }
.lp-final h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 36px;
  line-height: 1.15;
}
.lp-final h2 em { color: var(--lime); }
.lp-final .lp-pill {
  background: var(--lime);
  color: var(--ink-pure);
}
.lp-final .lp-pill:hover { background: #d2ee85; }
.lp-final .lp-pill__dot { background: var(--ink-pure); }
.lp-final__hours {
  margin: 22px 0 0;
  font-size: 0.92rem;
  color: #9b9d97;
  font-weight: 500;
}

/* ========== PARTS SHOP ========== */
.parts { padding: 90px 0; background: var(--white); }
.parts__hours {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffefc1 100%);
  border: 1px solid #f0d791;
  border-radius: var(--radius);
  padding: 16px 22px;
  max-width: 720px;
  margin: 0 auto 40px;
  color: var(--ink-900);
}
.parts__hours-icon { font-size: 1.7rem; }
.parts__hours a { color: var(--water-700); font-weight: 700; text-decoration: underline; }

.parts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.part {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  text-align: left;
  transition: transform .15s ease, border-color .2s, box-shadow .2s;
}
.part:hover {
  transform: translateY(-2px);
  border-color: var(--green-500);
  box-shadow: var(--shadow);
}
.part__icon {
  font-size: 1.5rem;
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(29,138,203,0.1);
  margin-bottom: 10px;
}
.part h3 { color: var(--green-900); margin-bottom: 4px; font-size: 1.02rem; }
.part p { font-size: 0.9rem; margin: 0; color: var(--ink-500); }

.parts__promise {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--green-700) 0%, var(--green-900) 100%);
  border-radius: var(--radius-lg);
  color: var(--white);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.parts__promise-tag {
  background: var(--sun-500);
  color: var(--green-900);
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.parts__promise p {
  flex: 1;
  margin: 0;
  font-size: 1.05rem;
  color: #e6f1ea;
  min-width: 260px;
}
.parts__promise strong { color: var(--white); }

/* ========== BRANDS ========== */
.brands { padding: 70px 0; background: var(--paper-2); }
.brands__layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}
.brands__chips {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.brands__photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.brands__photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}
.brands__photo figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.brands__row {
  display: flex; gap: 18px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 18px;
}
.brands__chip {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 28px;
  font-weight: 800;
  font-size: 1.25rem;
  display: inline-flex; align-items: baseline; gap: 6px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.03);
}
.brands__chip sup { font-size: 0.6em; }
.brands__chip--toro { color: #e2231a; }
.brands__chip--hunter { color: #003f7e; }
.brands__chip--hunter small { color: var(--ink-500); font-size: 0.7rem; font-weight: 600; }
.brands__chip--rainbird { color: #2a8a4a; }
.brands__chip--rainbird .bird { color: var(--water-500); margin: 0 2px; }
.brands__chips .brands__chip { width: 100%; justify-content: center; }
.brands__note { color: var(--ink-500); max-width: 100%; margin: 6px 0 0; font-size: 0.95rem; }

/* ========== GALLERY ========== */
.gallery { padding: 80px 0; }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 320px;
  gap: 16px;
}
.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery__item--wide { grid-row: span 2; grid-column: 1 / 2; }
.gallery__item--wide img { height: 100%; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery__item:hover img { transform: scale(1.04); }
.gallery__item figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ========== REVIEWS ========== */
.reviews { padding: 80px 0; background: var(--paper-2); }
.stars-row {
  color: var(--sun-500);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
  margin-top: 6px;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  padding: 26px 26px 20px;
  margin: 0;
  border: 1px solid var(--line);
  box-shadow: 0 2px 0 rgba(0,0,0,0.02);
  position: relative;
}
.review::before {
  content: '“';
  position: absolute;
  top: -12px; left: 18px;
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--green-500);
  opacity: 0.3;
}
.review__stars { color: var(--sun-500); font-size: 1.05rem; letter-spacing: 0.1em; margin-bottom: 8px; }
.review p { color: var(--ink-900); font-size: 1rem; }
.review footer { color: var(--ink-500); font-size: 0.88rem; font-weight: 600; }
.reviews__note { text-align: center; color: var(--ink-500); font-size: 0.85rem; margin-top: 26px; font-style: italic; }

/* ========== CONTACT ========== */
.contact {
  background:
    linear-gradient(160deg, var(--green-900) 0%, var(--green-700) 100%);
  color: #e8f3eb;
  padding: 80px 0;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact__copy h2 { color: var(--white); }
.contact__copy p { color: #c5d8cc; max-width: 460px; }

.phone-cta {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--sun-500);
  color: var(--green-900);
  padding: 14px 22px;
  border-radius: 16px;
  margin: 14px 0 22px;
  box-shadow: var(--shadow);
  transition: transform .12s ease;
}
.phone-cta:hover { transform: translateY(-2px); }
.phone-cta__icon { font-size: 1.6rem; }
.phone-cta__label { display: block; font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.phone-cta__num { display: block; font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; line-height: 1; }

.contact__list { list-style: none; padding: 0; margin: 14px 0 0; display: grid; gap: 8px; }
.contact__list li { color: #d6e5d9; }
.contact__list strong { color: var(--white); }

.contact__card {
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.contact__card h3 { color: var(--green-900); margin-bottom: 16px; font-size: 1.25rem; }
.contact__card form { display: grid; gap: 12px; }
.contact__card label { display: grid; gap: 4px; font-size: 0.85rem; font-weight: 600; color: var(--ink-700); }
.contact__card input,
.contact__card select,
.contact__card textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: var(--paper);
  color: var(--ink-900);
  transition: border-color .15s, box-shadow .15s;
}
.contact__card input:focus,
.contact__card select:focus,
.contact__card textarea:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(54, 168, 91, 0.18);
}
.contact__hint { text-align: center; color: var(--ink-500); font-size: 0.85rem; margin: 4px 0 0; }

/* ========== FOOTER ========== */
.footer { background: #0a2615; color: #b8c8bd; padding: 30px 0; }
.footer__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img {
  height: 44px;
  width: 100px;
  max-width: none;
  flex-shrink: 0;
  object-fit: cover;
  object-position: center 38%;
  background: var(--white);
  border-radius: 10px;
  padding: 4px;
}
.footer__brand p { margin: 0; color: #d8e5dc; }
.footer__legal { margin: 0; font-size: 0.85rem; color: #8aa094; }

/* ========== RESPONSIVE ========== */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; padding: 50px 24px 60px; }
  .hero__photo { aspect-ratio: 4/3; max-width: 520px; margin: 0 auto; width: 100%; }
  .strip__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .proof { grid-template-columns: 1fr; }
  .proof__photo img { min-height: 280px; }
  /* Homepage teaser */
  .teaser__inner { grid-template-columns: 1fr; gap: 40px; }
  .teaser__device { margin: 0 auto; }

  /* ===== Smart Controller page (.lp-) tablet ===== */
  .lp-hero { padding: 60px 0; }
  .lp-hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .lp-hero h1 { font-size: 2.6rem; }
  .lp-stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; padding: 28px 6px; }
  .lp-stat { padding: 14px 22px; }
  .lp-stat:nth-child(2) { border-right: none; }
  .lp-stat:nth-child(1),
  .lp-stat:nth-child(2) { border-bottom: 1px solid var(--line-2); padding-bottom: 28px; }
  .lp-stat:nth-child(3),
  .lp-stat:nth-child(4) { padding-top: 28px; }
  .lp-jump__inner { grid-template-columns: 1fr; gap: 20px; }
  .lp-row { padding: 60px 0; }
  .lp-row__inner,
  .lp-row--reverse .lp-row__inner { grid-template-columns: 1fr; gap: 40px; }
  .lp-row--reverse .lp-row__photo { order: 1; }
  .lp-row--reverse .lp-row__copy  { order: 2; }
  .lp-bullets { grid-template-columns: 1fr; max-width: none; }
  .lp-integ { padding: 80px 0; }
  .lp-integ__grid { grid-template-columns: repeat(3, 1fr); }
  .lp-specs { padding: 80px 0; }
  .lp-specs__grid { grid-template-columns: repeat(2, 1fr); }
  .lp-why { padding: 80px 0; }
  .lp-why__grid { grid-template-columns: 1fr; gap: 18px; }
  .lp-final { padding: 90px 0; }
  .parts__grid { grid-template-columns: repeat(2, 1fr); }
  .brands__layout { grid-template-columns: 1fr; gap: 28px; }
  .gallery__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 240px; }
  .gallery__item--wide { grid-column: 1 / -1; grid-row: auto; }
  .reviews__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }

  /* ===== Mobile nav (hamburger dropdown) ===== */
  .nav__toggle { display: flex; }
  .brand { margin-right: auto; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 8px 24px 16px;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 15px 4px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a:last-child { border-bottom: none; }
  .nav__links a::after { display: none; }
}
@media (max-width: 560px) {
  .topbar__inner { font-size: 0.78rem; }
  .strip__grid { grid-template-columns: 1fr; gap: 20px; padding: 32px 24px; }
  .services__grid { grid-template-columns: 1fr; }
  .parts__grid { grid-template-columns: 1fr; }
  .parts__promise { flex-direction: column; text-align: center; align-items: stretch; }
  .gallery__grid { grid-template-columns: 1fr; }
  .brand__sub { display: none; }
  .nav__cta { padding: 8px 14px; font-size: 0.88rem; }
  .hero__badge { padding: 10px 14px; }
  .hero__badge-num { font-size: 2.2rem; }
  .rachio-badge { width: 90px; height: 90px; }
  .rachio-badge__num { font-size: 1.7rem; }
  .rachio-badge__lbl { font-size: 0.62rem; }
  .rachio-device { padding: 0 22px; }

  /* ===== Smart Controller page (.lp-) mobile ===== */
  .lp-hero h1 { font-size: 2.2rem; }
  .lp-stats__grid { grid-template-columns: 1fr; padding: 16px 6px; }
  .lp-stat { border-right: none; border-bottom: 1px solid var(--line-2); padding: 22px 14px; }
  .lp-stat:nth-child(1),
  .lp-stat:nth-child(2) { border-bottom: 1px solid var(--line-2); padding-bottom: 22px; }
  .lp-stat:last-child { border-bottom: none; }
  .lp-integ__grid { grid-template-columns: 1fr 1fr; }
  .lp-specs__grid { grid-template-columns: 1fr; }
  .lp-spec { padding: 26px 22px; }
  .lp-row__copy h2 { font-size: 1.9rem; }
  .lp-pill { padding: 12px 22px; font-size: 0.96rem; }
  .lp-pill--lg { padding: 14px 24px; font-size: 1.02rem; }
}
