/* =============================================
   Falcon Pest Control — Static Site
   ============================================= */

/* 1. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

/* 2. Tokens */
:root {
  /* Backgrounds */
  --bg:        #f2f5fa;
  --bg-card:   #ffffff;
  --bg-alt:    #e5eaf4;
  --navy:      #071630;
  --navy-mid:  #0d2347;
  --navy-dark: #040d1e;

  /* Brand */
  --gold:      #c8912a;
  --gold-dim:  rgba(200,145,42,.14);
  --gold-edge: rgba(200,145,42,.35);

  /* Text */
  --text:      #0c1a30;
  --muted:     #445e82;
  --white:     #ffffff;

  /* Borders */
  --border:    rgba(7,22,48,.13);
  --border-dk: rgba(255,255,255,.14);

  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --mw:  1100px;
  --px:  clamp(1.25rem, 5vw, 2.5rem);
  --py:  clamp(3rem, 7vw, 5.5rem);
  --r:   12px;
}

/* 3. Base */
html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  color: var(--navy);
  line-height: 1.15;
}
h1 { font-size: clamp(2.6rem, 6.5vw, 4.75rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.55rem); font-weight: 700; }

/* Dark-section heading override */
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--white); }

.eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .4rem;
}

/* 4. Layout */
.container {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 var(--px);
}
section { padding: var(--py) var(--px); }

/* 5. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .8rem 1.8rem;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 500;
  font-family: var(--ff-sans);
  border: 2px solid transparent;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
  cursor: pointer;
}
.btn--gold {
  background: var(--gold);
  border-color: var(--gold);
  color: #1c0800;
}
.btn--gold:hover { background: #d9a030; border-color: #d9a030; }

/* Navy outline — for use on light backgrounds */
.btn--outline {
  background: transparent;
  border-color: rgba(12,31,71,.28);
  color: var(--navy);
}
.btn--outline:hover { border-color: var(--navy); background: rgba(12,31,71,.05); }

/* White outline — for use on dark/navy backgrounds */
.btn--outline-wht {
  background: transparent;
  border-color: rgba(255,255,255,.38);
  color: var(--white);
}
.btn--outline-wht:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* Gold outline — for use on dark backgrounds */
.btn--outline-gold {
  background: transparent;
  border-color: var(--gold-edge);
  color: var(--white);
}
.btn--outline-gold:hover { border-color: var(--gold); background: var(--gold-dim); }

/* Navy fill — primary CTA on light sections */
.btn--navy {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  width: 100%;
  padding: 1rem 1.5rem;
  border-radius: 10px;
}
.btn--navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

/* 6. Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(12,31,71,.06);
}
.nav__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  height: 72px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav__link {
  padding: .45rem .9rem;
  font-size: .875rem;
  color: var(--text);
  border-radius: 6px;
  transition: color .15s;
  white-space: nowrap;
}
.nav__link:hover { color: var(--navy); font-weight: 500; }

/* dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex;
  align-items: center;
  gap: .25rem;
  padding: .45rem .9rem;
  font-size: .875rem;
  white-space: nowrap;
  color: var(--text);
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .15s;
}
.nav__dropdown-toggle:hover { color: var(--navy); }
.nav__dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + .25rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .4rem;
  min-width: 0;
  width: max-content;
  z-index: 10;
  box-shadow: 0 8px 24px rgba(12,31,71,.12);
}
.nav__dropdown-menu::before {
  content: '';
  position: absolute;
  top: -.35rem;
  left: 0;
  right: 0;
  height: .35rem;
}
.nav__dropdown:hover .nav__dropdown-menu { display: block; }
.nav__dropdown-menu a {
  display: block;
  padding: .55rem 1rem;
  font-size: .875rem;
  color: var(--text);
  border-radius: 6px;
  transition: background .15s, color .15s;
}
.nav__dropdown-menu a:hover { background: var(--bg-alt); color: var(--navy); }

.nav__ctas {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}
.nav__ctas .btn { padding: .55rem 1.1rem; font-size: .85rem; white-space: nowrap; }
.nav__ctas .btn--outline { border-color: rgba(12,31,71,.22); color: var(--navy); }
.nav__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  white-space: nowrap;
  gap: .55rem;
  text-decoration: none;
}
.nav__phone__number {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -.01em;
  line-height: 1;
}
.nav__phone__sub {
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;
  border-right: 1px solid var(--border);
  padding-right: .55rem;
}
.nav__phone:hover .nav__phone__number { color: var(--gold); }
.nav__phone:hover .nav__phone__sub { color: var(--gold); border-right-color: var(--gold-edge); }

/* hamburger */
.nav__hamburger {
  display: none;
  background: none;
  border: none;
  padding: .5rem;
  color: var(--navy);
  margin-left: auto;
}
.nav__mobile {
  display: none;
  flex-direction: column;
  padding: 1rem var(--px);
  border-top: 1px solid var(--border);
  background: var(--white);
  gap: 0;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a,
.nav__mobile button {
  padding: .75rem 0;
  font-size: .95rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  text-align: left;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a.btn--gold {
  margin-top: 1rem;
  border-radius: 8px;
  border: 2px solid var(--gold);
  background: var(--gold);
  color: #1c0800;
  text-align: center;
  padding: .75rem;
}

/* 7. Hero */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) var(--px) clamp(3.5rem, 9vw, 6rem);
  background: var(--bg);
}
.hero__content { max-width: 840px; }
.hero h1 { margin-bottom: 1.25rem; color: var(--navy); }
.hero__sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--text);
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .65rem 1.4rem;
  border: 1.5px solid var(--gold-edge);
  border-radius: 100px;
  font-size: .875rem;
  color: var(--text);
  margin-bottom: 2.5rem;
  background: var(--gold-dim);
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 8. Founder quote — dark navy block */
.founder-quote {
  background: var(--navy);
  padding: clamp(2.5rem,6vw,4.5rem) var(--px);
  text-align: center;
}
.founder-quote blockquote {
  font-family: var(--ff-serif);
  font-style: italic;
  font-size: clamp(1.05rem,2.5vw,1.35rem);
  color: var(--white);
  max-width: 900px;
  margin: 0 auto .75rem;
  line-height: 1.7;
}
.founder-quote cite {
  font-style: normal;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}

/* 9. BCE band — dark navy */
.bce {
  padding: 2.5rem var(--px);
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dk);
  border-bottom: 1px solid var(--border-dk);
}
.bce__inner {
  max-width: var(--mw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.bce__text { flex: 1; min-width: 260px; }
.bce__text h3 {
  font-size: clamp(1.15rem,2.5vw,1.6rem);
  margin-bottom: .5rem;
  color: var(--white);
}
.bce__text p { font-size: .9rem; color: rgba(255,255,255,.75); max-width: 520px; }
.bce__btns {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  flex-shrink: 0;
}
.bce__btns .btn { min-width: 210px; }

/* 10. Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  max-width: var(--mw);
  margin: 0 auto;
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.75rem 2rem;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--gold-edge);
  box-shadow: 0 4px 20px rgba(12,31,71,.07);
}
.card__icon {
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.card h3 { margin-bottom: .7rem; color: var(--navy); }
.card p { font-size: .9rem; line-height: 1.7; color: var(--text); }
.card__link {
  display: inline-block;
  margin-top: 1.2rem;
  color: var(--gold);
  font-size: .875rem;
  font-weight: 500;
}
.card__link:hover { text-decoration: underline; }

/* 11. Difference */
.difference {
  background: var(--bg);
  max-width: none;
}
.difference h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
}
.difference .container { padding-top: 0; padding-bottom: 0; }
.diff-grid { grid-template-columns: repeat(3, 1fr); }
.diff-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; margin-left: auto; margin-right: auto; }

.card--feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: 2.25rem 2.5rem;
  border-color: var(--gold-edge);
  background: linear-gradient(135deg, var(--bg-card) 60%, rgba(200,145,42,.06));
}
.card--feature__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--gold-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.card--feature__eyebrow {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.card--feature__body h3 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  margin-bottom: .6rem;
  color: var(--navy);
}
.card--feature__body p { font-size: .9rem; line-height: 1.7; color: var(--text); }
.card--feature__verify {
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  border: 1px solid var(--gold-edge);
  padding: .6rem 1.1rem;
  border-radius: 2rem;
  transition: background .2s;
}
.card--feature__verify:hover { background: var(--gold-dim); }

@media (max-width: 860px) {
  .diff-grid { grid-template-columns: 1fr; }
  .card--feature {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .card--feature__verify {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* 12. Who We Serve */
.serve { background: var(--bg-alt); }
.serve h2 {
  text-align: center;
  margin-bottom: 2.5rem;
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
}
.serve__cta {
  display: block;
  text-align: center;
  margin-top: 2rem;
  color: var(--gold);
  font-size: .9rem;
  font-weight: 500;
  max-width: var(--mw);
  margin-left: auto;
  margin-right: auto;
}
.serve__cta:hover { text-decoration: underline; }

/* 13. About / Stats */
.about { background: var(--bg); }
.about h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.about__intro {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: clamp(1rem,2vw,1.1rem);
  color: var(--text);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}
.stats-grid .stat--wide {
  grid-column: 1 / -1;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.5rem 1rem;
  text-align: center;
}
.stat__num {
  display: block;
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem,5vw,3rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat__label {
  font-size: .78rem;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}
.stat__sub {
  display: block;
  font-size: .7rem;
  color: var(--muted);
  margin-top: .3rem;
  letter-spacing: 0;
  text-transform: none;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: var(--mw);
  margin: 0 auto;
}
.cred {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.1rem;
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  font-size: .8rem;
  color: var(--text);
}

/* 14. Service Areas */
.areas { background: var(--bg-alt); text-align: center; }
.areas h2 { margin-bottom: 2rem; }
.city-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}
.city {
  padding: .4rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: .82rem;
  color: var(--text);
}

/* 15. Contact */
.contact { background: var(--bg); text-align: center; }
.contact h2 { margin-bottom: .75rem; }
.contact__sub { color: var(--muted); margin-bottom: 1.25rem; }
.contact__phone {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: clamp(1.5rem,4vw,2.2rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 2.75rem;
}
.contact__phone:hover { text-decoration: underline; }
.contact__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  text-align: left;
}
.form-field {
  width: 100%;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: .9rem 1.1rem;
  font-family: var(--ff-sans);
  font-size: .975rem;
  color: var(--navy);
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
}
.form-field:focus {
  outline: none;
  border-color: var(--gold-edge);
  box-shadow: 0 0 0 3px rgba(200,145,42,.1);
}
.form-field::placeholder { color: var(--muted); }
select.form-field {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235c7399' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
textarea.form-field { resize: vertical; min-height: 130px; }

/* 16. Footer — dark navy */
.footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border-dk);
  padding: clamp(2.5rem,6vw,4.5rem) var(--px) 1.5rem;
}
.footer__grid {
  max-width: var(--mw);
  margin: 0 auto 2.5rem;
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 2rem 3rem;
}
.footer__brand .tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: .75rem;
  line-height: 1.5;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.footer__links a {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  transition: color .15s;
}
.footer__links a:hover { color: var(--white); }
.footer__contact p {
  font-size: .85rem;
  color: rgba(255,255,255,.65);
  margin-bottom: .45rem;
}
.footer__contact a { color: rgba(255,255,255,.85); }
.footer__contact a:hover { text-decoration: underline; color: var(--white); }
.footer__bottom {
  max-width: var(--mw);
  margin: 0 auto;
  border-top: 1px solid var(--border-dk);
  padding-top: 1.5rem;
  font-size: .78rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  justify-content: center;
}
.footer__bottom a { color: rgba(255,255,255,.4); text-decoration: underline; }

/* 17. Services page */
.services-hero {
  padding: clamp(3rem,7vw,5rem) var(--px);
  text-align: center;
  background: var(--bg);
}
.services-hero .eyebrow { margin-bottom: 1rem; }
.services-hero h1 { margin-bottom: 1.25rem; color: var(--navy); }
.services-hero p {
  font-size: clamp(1rem,2.5vw,1.15rem);
  color: var(--text);
  max-width: 680px;
  margin: 0 auto;
}

.plans { background: var(--bg); padding: 0 var(--px) var(--py); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--mw);
  margin: 0 auto;
}
@media (max-width: 860px) { .plans-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .plans-grid { grid-template-columns: 1fr; } }
.plan-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, box-shadow .2s;
}
.plan-card:hover {
  border-color: var(--gold-edge);
  box-shadow: 0 6px 24px rgba(12,31,71,.08);
}
.plan-card--popular {
  border-color: var(--gold);
  border-width: 2px;
  box-shadow: 0 8px 36px rgba(163,116,34,.14);
  background: linear-gradient(168deg, var(--bg-card) 0%, rgba(163,116,34,.04) 100%);
}
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  border-radius: 100px;
  padding: .25rem 1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #1c0800;
  white-space: nowrap;
}
.plan__icon {
  color: var(--gold);
  margin-bottom: 1rem;
}
.plan__name {
  font-family: var(--ff-serif);
  font-style: normal;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.1;
  padding-bottom: .6rem;
  border-bottom: 2.5px solid var(--gold-edge);
  margin-bottom: .75rem;
  display: block;
}
.plan__tag {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.plan__price {
  display: flex;
  align-items: baseline;
  gap: .15rem;
  margin: .75rem 0 .5rem;
}
.plan__dollar { font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.plan__amount { font-family: var(--ff-serif); font-size: 3.25rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plan__period { font-size: .9rem; color: var(--muted); }
.plan__visits { display:inline-flex; align-items:center; gap:.35rem; background:rgba(16,32,64,.07); color:var(--navy); font-size:.78rem; font-weight:700; letter-spacing:.03em; padding:.3rem .75rem; border-radius:20px; margin-top:.6rem; margin-bottom:.5rem; }
.plan__schedule { font-size: .78rem; color: var(--muted); margin-bottom: 1.25rem; line-height: 1.5; }
.plan__why-visits { background:rgba(163,116,34,.08); border-radius:8px; padding:.75rem 1rem; margin-bottom:1.1rem; font-size:.82rem; color:var(--text); line-height:1.65; }
.plan__addons-link { font-size: .8rem; color: var(--gold); font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: .3rem; margin-bottom: 1.25rem; }
.plan__addons-link:hover { text-decoration: underline; }
.plan__addons { border-top: 1px solid var(--border); padding-top: .9rem; margin-bottom: 1.25rem; }
.plan__addons-label { font-size: .67rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.addon-pills { display: flex; flex-wrap: wrap; gap: .3rem; }
.addon-pill { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; padding: .22rem .7rem; font-size: .74rem; color: var(--text); line-height: 1.4; white-space: nowrap; }
.addon-pill em { font-style: normal; color: var(--gold); font-weight: 600; margin-left: .15rem; }
.plan__addons-note { margin-top: .6rem; font-size: .72rem; color: var(--muted); line-height: 1.5; }
.plan__features { flex: 1; margin-bottom: 1.5rem; }
.plan__feature {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--text);
  padding: .3rem 0;
}
.plan__feature.included { color: var(--text); }
.plan__feature.excluded { color: var(--muted); opacity: .7; }
.plan__feature svg { flex-shrink: 0; margin-top: .15rem; }
.plan__feature-group {
  padding-left: 1.75rem;
  margin: .2rem 0;
}
.plan__feature-group li {
  font-size: .82rem;
  color: var(--muted);
  padding: .15rem 0;
}
.plan__feature-group li::before { content: '· '; }
.plan__note {
  background: var(--gold-dim);
  border: 1px solid var(--gold-edge);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .8rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 1rem;
  font-style: italic;
}
.plan__cta { margin-top: auto; display: flex; flex-direction: column; gap: .5rem; }
.plan__cta-secondary {
  display: block;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  text-decoration: none;
  padding: .2rem 0;
  transition: color .15s;
}
.plan__cta-secondary:hover { color: var(--navy); text-decoration: underline; }

.plans-note {
  max-width: var(--mw);
  margin: 2rem auto 0;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text);
}
.plans-note svg { color: var(--gold); flex-shrink: 0; }

/* No-contract section on services page */
.no-contract {
  background: var(--navy);
  padding: var(--py) var(--px);
  text-align: center;
}
.no-contract h2 { color: var(--white); margin-bottom: 1rem; }
.no-contract p { color: rgba(255,255,255,.8); max-width: 640px; margin: 0 auto 2rem; font-size: clamp(1rem,2.5vw,1.15rem); }

/* 18. Responsive */
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 1100px) {
  .nav__ctas .btn--outline { display: none; }
}
@media (max-width: 900px) {
  .nav__phone { display: none; }
}

@media (max-width: 768px) {
  .nav__links,
  .nav__ctas { display: none; }
  .nav__hamburger { display: block; }

  .bce__inner { flex-direction: column; align-items: flex-start; }
  .bce__btns { flex-direction: row; flex-wrap: wrap; }
  .bce__btns .btn { min-width: 0; flex: 1; }

  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 320px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; }
}
