/* ============================================================
   iWAT LLC — Main Stylesheet
   Light corporate · Olive green brand · Inter font
   ============================================================ */

/* ── Variables ────────────────────────────────────────────── */
:root {
  --brand:          #5c8116;
  --brand-bright:   #6d9a1a;
  --brand-hover:    #4a6812;
  --brand-dim:      rgba(92, 129, 22, 0.10);

  /* accent = brand — no blue */
  --accent:         #5c8116;
  --accent-hover:   #4a6812;
  --accent-dim:     rgba(92, 129, 22, 0.10);

  --bg:             #f9f7f8;
  --surface:        #ffffff;
  --surface-raised: #f9f7f8;
  --surface-dark:   #000000;
  --border:         #e2e2e2;
  --border-subtle:  #eeeeee;

  --text-primary:   #1a1a1a;
  --text-secondary: #3d3d3d;
  --text-muted:     #5a5a5a;

  /* text for dark/green sections */
  --text-on-dark:   #ffffff;
  --text-on-dark-secondary: #cccccc;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius:    10px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --max-width: 1200px;
  --nav-height: 68px;

  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-green: 0 0 40px rgba(92,129,22,0.20);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
address { font-style: normal; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.15rem; }
p  { color: var(--text-secondary); line-height: 1.75; }

.text-accent { color: var(--brand); }

.lead-text {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label--light { color: var(--accent); }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}
.container--narrow { max-width: 760px; }

.section           { padding: 88px 0; }
.section--dark {
  background: var(--surface-dark);
  color: var(--text-on-dark);
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.80);
  --text-muted:     rgba(255,255,255,0.55);
  --border:         rgba(255,255,255,0.10);
  --border-subtle:  rgba(255,255,255,0.07);
}
.section--dark p   { color: var(--text-on-dark-secondary); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--text-on-dark); }
.section--dark .lead-text { color: var(--text-on-dark); }
.section--dark .section-label { color: #a8cc52; }
.section--centered { text-align: center; }
.section--newsletter { background: var(--surface-dark); color: var(--text-on-dark); text-align: center; }
.section--newsletter p { color: var(--text-on-dark-secondary); }
.section--cta      { background: var(--brand); color: var(--text-on-dark); text-align: center; }
.section--cta h2, .section--cta p { color: var(--text-on-dark); }

.section__header { text-align: center; margin-bottom: 52px; }
.section__header p { margin-top: 12px; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--lg      { padding: 14px 32px; font-size: 1rem; }
.btn--primary { background: var(--brand); color: #ffffff; }
.btn--primary:hover { background: var(--brand-hover); transform: translateY(-1px); box-shadow: 0 0 28px rgba(92,129,22,0.30); }
.btn--outline { border-color: var(--brand); color: var(--brand); background: transparent; }
.btn--outline:hover { background: var(--brand); color: #ffffff; }
.btn--ghost   { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.85); }
.btn--ghost:hover { border-color: #ffffff; color: #ffffff; }

/* ── Navigation ───────────────────────────────────────────── */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; }

.nav {
  height: var(--nav-height);
  background: #444444;
  border-bottom: none;
}
.nav__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.nav__logo { display: flex; align-items: center; margin-right: 40px; }
.nav__logo img { height: 36px; width: auto; object-fit: contain; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav__links > li { position: relative; }
.nav__links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav__links > li > a:hover { color: #ffffff; background: rgba(255,255,255,0.1); }
.nav__links > li > a.nav__link--active,
.nav__links > li > a[aria-current="page"] { color: var(--brand); }
.nav__arrow { font-size: 0.65rem; opacity: 0.6; }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 6px 0 8px;  /* top padding bridges the gap so hover isn't lost */
  background: transparent;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav__dropdown-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow);
}
.nav__dropdown-wrapper:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-inner li a {
  display: block;
  padding: 8px 12px;
  color: var(--text-primary);
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  transition: color 0.15s, background 0.15s;
}
.nav__dropdown-inner li a:hover { color: var(--brand); background: var(--brand-dim); }

.nav__cta { margin-left: auto; }
.nav__hamburger { display: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding-top: var(--nav-height);
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.80);
  --text-muted:     rgba(255,255,255,0.55);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(125,194,66,0.12) 0%, transparent 70%);
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
.hero__glow--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(125,194,66,0.06) 0%, transparent 70%);
  bottom: 0;
  right: 10%;
}
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(31,46,31,0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,46,31,0.4) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 100px 28px 120px;
}
.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #a8cc52;
  margin-bottom: 20px;
}
.hero__content h1 { margin-bottom: 36px; color: #ffffff; text-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.hero__content .text-accent { color: #a8cc52; }

/* ── Services Hero (services page) ───────────────────────── */
.services-hero {
  position: relative;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
  overflow: hidden;
}
.services-hero__bg {
  position: absolute;
  inset: 0;
  background: var(--surface-dark);
  overflow: hidden;
}
.services-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: luminosity;
}
.services-hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px;
}
.services-hero__content h1 { color: var(--text-on-dark); margin-bottom: 12px; text-shadow: 0 2px 16px rgba(0,0,0,.8); }
.services-hero__content p  { color: var(--text-on-dark-secondary); margin-bottom: 28px; font-size: 1.05rem; text-shadow: 0 1px 8px rgba(0,0,0,.7); }

/* ── Value / Centered sections ────────────────────────────── */
.section--centered .container--narrow p { margin-bottom: 16px; }
.section--centered h2.section-label { margin-top: 40px; font-size: 1rem; }

/* Location/services intros — dark, flow into dark service grids */
[data-dev-id="services-intro"],
[data-dev-id="austin-intro"],
[data-dev-id="york-intro"],
[data-dev-id="lancaster-intro"] { padding-bottom: 40px; }

/* Blog post content — less top padding when featured image is present */
[data-dev-id="post-content-section"] { padding-top: 0; }

/* ── Trust Grid ───────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-images {
  position: relative;
  height: 380px;
}
.trust-img {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.trust-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.trust-img--main {
  width: 75%;
  height: 80%;
  top: 0;
  left: 0;
}
.trust-img--accent {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  border-color: var(--brand);
}
.trust-img__placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.trust-grid .section-label { display: block; margin-bottom: 10px; }
.trust-grid h2 { margin-bottom: 16px; }
.trust-grid p  { margin-bottom: 28px; }

/* ── News Grid ────────────────────────────────────────────── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.news-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.news-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}
.news-card h3 { font-size: 1rem; line-height: 1.4; color: var(--text-primary); }
.news-card p  { font-size: 0.9rem; flex: 1; color: var(--text-secondary); }
.news-card__date { font-size: 0.78rem; color: var(--text-muted); margin-top: auto; }

/* ── Home Services Grid (6 cards, 2 cols like original) ───── */
.home-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.hservice-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.hservice-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.hservice-card__icon { font-size: 2rem; }
.hservice-card h3    { font-size: 1.1rem; }
.hservice-card p     { font-size: 0.9rem; }

/* ── Newsletter ───────────────────────────────────────────── */
.section--newsletter h2 { margin: 8px 0 12px; }
.section--newsletter p  { margin-bottom: 28px; font-size: 0.95rem; }
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--brand); }

/* ── Solutions CTA ────────────────────────────────────────── */
.section--cta h2    { margin: 8px 0 12px; }
.section--cta p     { margin-bottom: 28px; font-size: 1rem; }
.section--cta strong { color: var(--text-on-dark); }

/* ── 15-Card Services Grid ────────────────────────────────── */
.services-15-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.s15-card {
  background: #111a08;
  border: 1px solid rgba(168,204,82,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.s15-card:hover { border-color: var(--brand); transform: translateY(-3px); }
.s15-card__banner {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, #1a2e06 0%, #2d4d0a 60%, #3a6110 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.s15-card:hover .s15-card__banner {
  background: linear-gradient(135deg, #223a08 0%, #3a600d 60%, #4a7a14 100%);
}
.s15-card__banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px;
  color: #a8cc52;
}
.s15-card__banner-icon svg { width: 26px; height: 26px; stroke: #a8cc52; }
.s15-card__body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.s15-card h3    { font-size: 1rem; font-weight: 600; color: #ffffff; }
.s15-card p     { font-size: 0.9rem; color: #cccccc; flex: 1; }
.s15-card__link { font-size: 0.82rem; color: #a8cc52; font-weight: 600; margin-top: auto; }

/* ── Contact / Forms ──────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrapper h2  { margin-bottom: 8px; }
.contact-form-wrapper > p { margin-bottom: 32px; font-size: 0.95rem; }
.contact-form              { display: flex; flex-direction: column; gap: 20px; }
.contact-form--inline      { max-width: 580px; margin: 0 auto; }
.form-row--split           { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field                { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: border-color 0.2s;
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--brand); }
.form-field select     { cursor: pointer; }
.form-field textarea   { resize: vertical; min-height: 120px; }
.form-disclaimer       { font-size: 0.78rem; color: var(--text-muted); }

.contact-info h2 { margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-info-item__icon  { font-size: 1.3rem; margin-top: 2px; }
.contact-info-item__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.contact-info-item a,
.contact-info-item span[data-dev-id*="value"] { font-size: 0.95rem; color: var(--text-primary); line-height: 1.5; }
.contact-info-item a:hover { color: var(--brand); }
.contact-info-locations { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); }
.contact-info-locations h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted); margin-bottom: 10px; }
.contact-info-locations ul { display: flex; flex-direction: column; gap: 6px; }
.contact-info-locations li { font-size: 0.9rem; color: var(--text-secondary); }
.contact-info-cta { margin-top: 24px; padding: 20px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.contact-info-cta p { font-size: 0.88rem; }

/* ── Service Detail Page ──────────────────────────────────── */
.svcdetail-hero-icon { font-size: 3rem; display: block; margin-bottom: 16px; }

.svcdetail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.svcdetail-grid h2 { margin-bottom: 16px; }
.svcdetail-grid p  { margin-bottom: 24px; }

.svcdetail-feature {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}
.svcdetail-feature__dot {
  width: 10px;
  height: 10px;
  background: #a8cc52;
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}
.svcdetail-feature h3 { font-size: 1rem; margin-bottom: 6px; color: #ffffff; }
.svcdetail-feature p  { font-size: 0.9rem; margin-bottom: 0; color: rgba(255,255,255,0.78); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  text-align: center;
}
.stat__number { display: block; font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.stat__label  { display: block; font-size: 0.88rem; color: var(--text-muted); margin-top: 8px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.portfolio-card {
  display: flex;
  flex-direction: column;
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
}
.portfolio-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.portfolio-card__screenshot {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface);
}
.portfolio-card__screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card__screenshot img {
  transform: scale(1.04);
}
.portfolio-card__info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.portfolio-card__info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}
.portfolio-card__location {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.portfolio-card__cta {
  font-size: 0.82rem;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 500;
}

.svcdetail-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Contact Page ─────────────────────────────────────────── */
.contact-page {
  padding-top: 64px;
  padding-bottom: 88px;
  background: var(--surface-dark);
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.80);
  --text-muted:     rgba(255,255,255,0.55);
  --border:         rgba(255,255,255,0.10);
  --border-subtle:  rgba(255,255,255,0.07);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

/* Form wrapper */
.contact-form-icon {
  width: 44px;
  height: 44px;
  background: rgba(168,204,82,0.1);
  border: 1px solid rgba(168,204,82,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8cc52;
  margin-bottom: 20px;
}
.contact-form-subtitle { color: var(--text-on-dark-secondary); font-size: 0.95rem; margin-bottom: 32px; }
.contact-form-wrapper h1 { font-size: clamp(1.8rem, 3vw, 2.6rem); margin-bottom: 8px; }
.contact-form-wrapper > p { font-size: 0.95rem; margin-bottom: 36px; color: var(--text-on-dark-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 24px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
.form-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form-optional {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  color-scheme: dark;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.45); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(92,129,22,0.25);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select { cursor: pointer; }

.form-row--split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

/* Phone row */
.form-phone-row { display: flex; gap: 0; }
.form-phone-code {
  width: auto !important;
  min-width: 100px;
  border-radius: var(--radius) 0 0 var(--radius) !important;
  border-right: none !important;
  flex-shrink: 0;
}
.form-phone-row input {
  border-radius: 0 var(--radius) var(--radius) 0 !important;
  flex: 1;
}

/* Dropzone */
.form-dropzone {
  border: 1px dashed rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  background: rgba(255,255,255,0.04);
}
.form-dropzone:hover,
.form-dropzone--active {
  border-color: var(--brand);
  background: var(--brand-dim);
}
.form-dropzone svg { color: rgba(255,255,255,0.3); margin: 0 auto 10px; }
.form-dropzone p { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.form-dropzone__hint { font-size: 0.78rem !important; color: rgba(255,255,255,0.3) !important; }
.form-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

/* Action buttons */
.contact-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.form-disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.32); margin-top: -8px; }

/* Info panel */
.contact-info-panel {
  background: linear-gradient(145deg, #1a2e06 0%, #2d4d0a 60%, #3a6110 100%);
  border: 1px solid rgba(168,204,82,0.2);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: sticky;
  top: calc(var(--nav-height) + 24px);
  box-shadow: 0 0 60px rgba(92,129,22,0.15);
}
.contact-info-panel__header h2 { font-size: 1.4rem; margin-bottom: 8px; color: #fff; }
.contact-info-panel__header p  { font-size: 0.9rem; margin-bottom: 32px; color: rgba(255,255,255,0.65); }

.contact-info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-info-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(168,204,82,0.12);
  border: 1px solid rgba(168,204,82,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8cc52;
  flex-shrink: 0;
}
.contact-info-item__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a8cc52;
  margin-bottom: 3px;
}
.contact-info-item a,
.contact-info-item span[data-dev-id*="value"] {
  font-size: 0.92rem;
  color: #fff;
  line-height: 1.5;
  display: block;
}
.contact-info-item a:hover { color: #c5e076; }

.contact-info-also { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; }
.contact-info-also__label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.contact-info-also__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.contact-tag {
  font-size: 0.8rem;
  padding: 4px 12px;
  background: rgba(168,204,82,0.1);
  border: 1px solid rgba(168,204,82,0.3);
  border-radius: 20px;
  color: #a8cc52;
}

/* ── About Page ───────────────────────────────────────────── */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-split p { margin-bottom: 16px; }
.about-split [data-dev-id="about-who-actions"] { margin-top: 8px; }
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-stat { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px 20px; text-align: center; }
.about-stat__num   { display: block; font-size: 2.8rem; font-weight: 800; color: var(--brand); line-height: 1; }
.about-stat__label { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; }

.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vmv-card { background: var(--surface-raised); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; }
.vmv-card__icon  { font-size: 2rem; margin-bottom: 14px; display: block; }
.vmv-card h3     { margin-bottom: 12px; }
.vmv-card p      { font-size: 0.92rem; }
.vmv-card__list  { display: flex; flex-direction: column; gap: 8px; }
.vmv-card__list li { font-size: 0.9rem; color: var(--text-secondary); padding-left: 18px; position: relative; }
.vmv-card__list li::before { content: '+'; position: absolute; left: 0; color: var(--brand); font-size: 0.8rem; }

/* ── Media Embeds ─────────────────────────────────────────── */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.media-embed--video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.media-embed--video iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.media-embed--spotify { border-radius: var(--radius-lg); overflow: hidden; }

.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.work-card {
  background: #111a08;
  border: 1px solid rgba(168,204,82,0.18);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s;
}
.work-card:hover { border-color: rgba(168,204,82,0.5); }
.work-card__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.work-card__tag    { font-size: 0.72rem; font-weight: 700; color: #a8cc52; text-transform: uppercase; letter-spacing: 0.06em; }
.work-card__award  { font-size: 0.8rem; color: #FFD700; }
.work-card h3 { margin-bottom: 10px; color: #ffffff; }
.work-card p  { font-size: 0.9rem; color: rgba(255,255,255,0.78); }

/* ── Why-grid (about page 4-col) ─────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: #111a08;
  border: 1px solid rgba(168,204,82,0.18);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: rgba(168,204,82,0.5); transform: translateY(-3px); }
.why-card__icon { font-size: 2rem; }
.why-card h3 { font-size: 1.05rem; color: #ffffff; }
.why-card p  { font-size: 0.9rem; flex: 1; color: rgba(255,255,255,0.78); }
.why-card__link { font-size: 0.85rem; color: #a8cc52; font-weight: 600; margin-top: 4px; }
.why-card__link:hover { color: #c8e86a; }

/* ── Mission & Vision 2-col ──────────────────────────────── */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mv-card {
  background: rgba(255,255,255,0.06);
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mv-card__icon { font-size: 2.2rem; color: var(--brand-bright); }
.mv-card h3 { font-size: 1.2rem; color: var(--text-on-dark); }
.mv-card p { color: var(--text-on-dark-secondary); }

/* ── Team Grid ────────────────────────────────────────────── */
.team-sections { display: flex; flex-direction: column; gap: 40px; }
.team-section__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.team-section__header h3 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}
.team-section__header::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.team-card {
  background: var(--surface);
  border: 2px solid var(--brand);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: border-color 0.2s;
}
.team-card:hover { border-color: var(--accent); }
.team-card--lead { border-color: var(--brand); }
.team-card--manager { border-color: var(--brand); }
.team-card__avatar {
  width: 88px;
  height: 88px;
  min-width: 88px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand);
  font-family: var(--font-mono);
  letter-spacing: 0.02em;
}
.team-card--lead .team-card__avatar {
  background: var(--brand);
  color: #0a0f0a;
}
.team-card__info { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.team-card__info h4 { font-size: 0.88rem; font-weight: 600; overflow-wrap: break-word; word-break: break-word; }
.team-card__role { font-size: 0.75rem; color: var(--text-muted); }
.team-card__avatar--photo { padding: 0; overflow: hidden; background: none; border: none; }
.team-card__avatar--photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; display: block; }

/* ── About photo gallery ──────────────────────────────────── */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .photo-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .photo-gallery { grid-template-columns: repeat(2, 1fr); } }
.photo-gallery__item {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.photo-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.photo-gallery__item:hover img { transform: scale(1.04); }

/* ── Quick Links Row ──────────────────────────────────────── */
.quicklinks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.quicklink-card {
  background: var(--surface-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  transition: border-color 0.2s, transform 0.2s, background 0.2s;
}
.quicklink-card:hover { border-color: var(--accent); transform: translateY(-3px); background: var(--surface); }
.quicklink-card__icon { font-size: 2rem; }

/* ── News Carousel ────────────────────────────────────────── */
.news-carousel__track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.news-carousel__track {
  display: flex;
  transition: transform 0.4s ease;
}
.news-carousel__track .news-card {
  padding: 28px;
}
.news-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.news-carousel__btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.news-carousel__btn:hover { border-color: var(--accent); background: var(--accent-dim); }
.news-carousel__dots { display: flex; gap: 8px; }
.news-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.news-carousel__dot--active { background: var(--accent); transform: scale(1.3); }

/* ── Footer membership badges ─────────────────────────────── */
.footer__memberships { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; align-items: center; }
.footer__membership-badge { height: 36px; width: auto; border-radius: var(--radius-sm); object-fit: contain; }

.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.location-card { background: #111a08; border: 1px solid rgba(168,204,82,0.18); border-radius: var(--radius-lg); padding: 28px; position: relative; }
.location-card--hq { border-color: var(--brand); }
.location-card__badge { position: absolute; top: 12px; right: 12px; background: var(--brand); color: #0A0F0A; font-size: 0.7rem; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.location-card h3 { margin-bottom: 10px; color: #ffffff; }
.location-card p  { font-size: 0.9rem; margin-bottom: 10px; color: rgba(255,255,255,0.78); }
.location-card a  { font-size: 0.9rem; color: #a8cc52; }
.location-card a:hover { color: #c8e86a; }

/* ── Footer ───────────────────────────────────────────────── */
.footer {
  background: #000000;
  border-top: none;
}
.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px 28px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr 1.2fr;
  gap: 40px;
}
.footer__logo { height: 40px; width: auto; margin-bottom: 16px; }
.footer__address { font-size: 0.88rem; color: #cccccc; margin-bottom: 8px; line-height: 1.6; }
.footer__contact-link { display: block; font-size: 0.88rem; color: #cccccc; margin-bottom: 4px; transition: color 0.2s; }
.footer__contact-link:hover { color: var(--brand); }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a { color: #888888; transition: color 0.2s; }
.footer__social a:hover { color: var(--brand); }

.footer__col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col a  { color: var(--brand); font-size: 0.88rem; transition: color 0.2s; }
.footer__col a:hover { color: var(--brand-bright); }
.footer__col span[data-dev-id*="name"] { display: block; color: #cccccc; font-size: 0.88rem; font-weight: 500; }
.footer__col li { display: flex; flex-direction: column; gap: 2px; margin-bottom: 8px; }

.footer__app-name { font-size: 0.95rem; font-weight: 600; color: #ffffff; display: block; margin-bottom: 4px; }
.footer__app-item p { font-size: 0.82rem; margin-bottom: 10px; color: #cccccc; }
.footer__store-badges { display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.store-badge-img {
  height: 32px;
  width: auto;
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.store-badge-img:hover { opacity: 1; }

.footer__bottom {
  border-top: 1px solid #222222;
  padding: 20px 28px;
  text-align: center;
}
.footer__bottom p { font-size: 0.82rem; color: #888888; }

/* ── Mobile Nav (open state) ──────────────────────────────── */
.nav__links--open {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: #444444;
  border-bottom: 1px solid #333333;
  padding: 16px;
  gap: 4px;
}
.nav__links--open .nav__dropdown-wrapper .nav__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  box-shadow: none;
  border: none;
  padding: 4px 0 4px 16px;
}

/* ── Responsive ───────────────────────────────────────────── */

/* ── Large tablet / small desktop ── */
@media (max-width: 1024px) {
  .footer__container     { grid-template-columns: 1fr 1fr 1fr; }
  .footer__col--brand    { grid-column: 1 / -1; }
}

/* ── Tablet ── */
@media (max-width: 900px) {
  .section               { padding: 64px 0; }
  .trust-grid            { grid-template-columns: 1fr; }
  .trust-images          { display: none; }
  .about-split           { grid-template-columns: 1fr; }
  .contact-layout        { grid-template-columns: 1fr; }
  .contact-info-panel    { position: static; }
  .media-grid            { grid-template-columns: 1fr; }
  .svcdetail-grid        { grid-template-columns: 1fr; }
  .vmv-grid              { grid-template-columns: 1fr 1fr; }
  .locations-grid        { grid-template-columns: 1fr 1fr; }
  .work-grid             { grid-template-columns: 1fr 1fr; }
  .portfolio-grid        { grid-template-columns: repeat(2, 1fr); }
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
  .mv-grid               { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .quicklinks-grid       { grid-template-columns: repeat(2, 1fr); }
  .services-15-grid      { grid-template-columns: repeat(2, 1fr); }
  .home-services-grid    { grid-template-columns: repeat(2, 1fr); }
  .news-grid             { grid-template-columns: repeat(2, 1fr); }
  .footer__container     { grid-template-columns: 1fr 1fr; }
  .footer__col--brand    { grid-column: 1 / -1; }
}

/* ── Mobile nav breakpoint ── */
@media (max-width: 769px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    padding: 8px;
  }
  .nav__hamburger span { display: block; width: 22px; height: 2px; background: #ffffff; border-radius: 2px; transition: all 0.2s; }
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .section               { padding: 48px 0; }
  .section__header       { margin-bottom: 32px; }
  .container             { padding: 0 16px; }

  .footer__container     { grid-template-columns: 1fr; }
  .vmv-grid              { grid-template-columns: 1fr; }
  .locations-grid        { grid-template-columns: 1fr 1fr; }
  .services-15-grid      { grid-template-columns: 1fr; }
  .portfolio-grid        { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr; }
  .work-grid             { grid-template-columns: 1fr; }
  .news-grid             { grid-template-columns: 1fr; }
  .home-services-grid    { grid-template-columns: 1fr; }
  .team-grid             { grid-template-columns: repeat(2, 1fr); }
  .quicklinks-grid       { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form       { flex-direction: column; }
  .form-row--split       { grid-template-columns: 1fr; }

  /* team cards — allow names to wrap, reduce padding */
  .team-card             { padding: 14px; gap: 10px; }
  .team-card__info h4    { white-space: normal; font-size: 0.82rem; }
  .team-card__role       { font-size: 0.7rem; }

  /* testimonial — remove flex stretch so no giant gap */
  .testimonial-card      { padding: 24px; }
  .testimonial-card__quote { flex: unset; }

  /* hero badges row */
  .hero__badges          { flex-wrap: wrap; gap: 8px; }

  /* stats */
  .stats-grid            { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat__number          { font-size: 2.2rem; }

  /* trust section stacked text */
  .trust-checklist       { gap: 10px; }

  /* CTA buttons stack */
  .section--cta .btn     { width: 100%; justify-content: center; }
}

/* ── Small phone (≤ 420px) ── */
@media (max-width: 420px) {
  .team-grid             { grid-template-columns: 1fr; }
  .locations-grid        { grid-template-columns: 1fr; }
  .quicklinks-grid       { grid-template-columns: 1fr; }
  .hero__actions         { flex-direction: column; width: 100%; }
  .hero__actions .btn    { width: 100%; justify-content: center; }
}


/* ── Form feedback ── */
.form-error {
  color: #e55;
  font-size: 0.8rem;
  margin-top: 4px;
}

.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.alert--success {
  background: rgba(92, 129, 22, 0.10);
  border: 1px solid var(--brand);
  color: var(--brand-hover);
}

/* ── Posts grid (about page) ── */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.post-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.post-card:hover {
  border-color: var(--brand);
  box-shadow: 0 4px 20px rgba(92,129,22,.1);
}

.post-card__img {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.post-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.post-card:hover .post-card__img img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.post-card__date {
  font-size: 0.7rem;
  color: var(--brand);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.post-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.post-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.post-card__excerpt {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card__content {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.post-card__content p { margin: 0 0 6px; }
.post-card__content p:last-child { margin-bottom: 0; }

/* ============================================================
   RATES PAGE
   ============================================================ */

.rates-notice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rates-notice svg { flex-shrink: 0; margin-top: 2px; color: var(--brand); }

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

@media (max-width: 640px) {
  .rates-grid { grid-template-columns: 1fr; }
}

.rate-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rate-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.rate-card__label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
}

.rate-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.rate-card__amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.rate-card__period {
  font-size: 1rem;
  color: var(--text-muted);
}

.rate-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rate-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.rate-card__list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}

.rate-card__list li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
}

.rates-section {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-bottom: 40px;
}

.rates-section h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.rates-cta {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  padding: 40px 36px;
  text-align: center;
}

.rates-cta h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.rates-cta p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

/* ============================================================
   NEWSLETTER PAGE
   ============================================================ */

.newsletter-page-wrap {
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-page-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ============================================================
   PAGE HERO (shared across blog, legal, location pages)
   ============================================================ */

.page-hero {
  background: var(--surface-dark);
  padding: calc(var(--nav-height) + 56px) 0 64px;
  text-align: center;
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.80);
  --text-muted:     rgba(255,255,255,0.55);
}

.page-hero h1 {
  color: var(--text-on-dark);
  margin-top: 0;
}

.page-hero p {
  margin-top: 16px;
  color: var(--text-on-dark-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero .btn {
  margin-top: 28px;
}

/* ============================================================
   BLOG LIST PAGE
   ============================================================ */

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.blog-filter-btn {
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
}

.blog-filter-btn:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.blog-filter-btn--active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.blog-grid--3 {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.blog-card__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--surface-raised);
}

.blog-card__img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f0d4 0%, #d5e5a3 100%);
  color: var(--brand);
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__img img {
  transform: scale(1.04);
}

.blog-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-card__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-hover);
}

.blog-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.blog-card__title a {
  color: var(--text-primary);
  transition: color 0.15s ease;
}

.blog-card__title a:hover {
  color: var(--brand-hover);
}

.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.blog-card__date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.blog-card__read-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-hover);
  transition: color 0.15s ease;
}

.blog-card__read-more:hover {
  color: var(--brand);
}

.blog-card--sm .blog-card__title {
  font-size: 1rem;
}

.blog-empty {
  text-align: center;
  padding: 80px 0;
  color: var(--text-muted);
}

/* ============================================================
   BLOG POST DETAIL PAGE
   ============================================================ */

.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.post-meta__date {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.post-meta__cats {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.post-meta__cat-link {
  color: var(--brand-hover);
  transition: color 0.15s ease;
}

.post-meta__cat-link:hover {
  color: var(--brand);
}

.post-featured-img {
  padding: 40px 0;
}

.post-featured-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  max-height: 480px;
  object-fit: cover;
}

.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.post-content h1,
.post-content h2,
.post-content h3,
.post-content h4 {
  color: var(--text-primary);
  margin-top: 2em;
  margin-bottom: 0.5em;
}

.post-content p {
  margin-bottom: 1.25em;
}

.post-content a {
  color: var(--brand-hover);
  text-decoration: underline;
}

.post-content ul,
.post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

.post-content li {
  margin-bottom: 0.4em;
}

.post-content img {
  border-radius: var(--radius);
  margin: 1.5em 0;
}

.post-content blockquote {
  border-left: 3px solid var(--brand);
  padding-left: 1.25em;
  margin: 1.5em 0;
  color: var(--text-muted);
  font-style: italic;
}

.post-content pre,
.post-content code {
  font-family: var(--font-mono);
  background: var(--surface-raised);
  border-radius: var(--radius-sm);
}

.post-content pre {
  padding: 1em;
  overflow-x: auto;
  margin-bottom: 1.25em;
}

.post-content code {
  padding: 0.1em 0.4em;
  font-size: 0.9em;
}

.post-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.section--surface {
  background: var(--surface);
}

/* ============================================================
   LEGAL PAGES (SMS Terms, Privacy, Disclosure, etc.)
   ============================================================ */

.legal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
}

.legal-card h2 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.legal-card p,
.legal-card li {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.legal-card a {
  color: var(--brand-hover);
}

.legal-card a:hover {
  text-decoration: underline;
}

.legal-list {
  list-style: disc;
  padding-left: 1.4em;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-related {
  text-align: center;
  padding: 32px 0 8px;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.legal-related a {
  color: var(--brand-hover);
}

/* ============================================================
   HOME NEWS CARD UPDATES
   ============================================================ */

.news-card h3 a {
  color: inherit;
  transition: color 0.15s ease;
}

.news-card h3 a:hover {
  color: var(--brand-hover);
}

.news-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.news-card__link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-hover);
  transition: color 0.15s ease;
}

.news-card__link:hover {
  color: var(--brand);
}

.section__cta {
  text-align: center;
  margin-top: 40px;
}

/* ============================================================
   HERO ENHANCEMENTS
   ============================================================ */

.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(92, 129, 22, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 30%, rgba(92, 129, 22, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  max-width: 560px;
  margin: 16px 0 0;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 12px 20px;
  min-width: 80px;
}

.hero-badge__num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #a8cc52;
  line-height: 1;
}

.hero-badge__label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */

.stats-strip {
  background: var(--surface-dark);
  border-bottom: none;
  padding: 48px 0;
  --text-primary:   #ffffff;
  --text-secondary: rgba(255,255,255,0.80);
  --text-muted:     rgba(255,255,255,0.55);
  --border:         rgba(255,255,255,0.10);
}
.stats-strip .stat__label { color: rgba(255,255,255,0.75); }
.stats-strip .stat-item + .stat-item { border-color: rgba(255,255,255,0.1); }

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
  text-align: center;
}

.stat-item__num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #a8cc52;
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-item__label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .stats-grid { gap: 24px 0; }
  .stat-item  { padding: 0 24px; }
  .stat-divider { display: none; }
}

/* ============================================================
   TRUST SECTION — FEATURE CHECKLIST
   ============================================================ */

.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}

.feature-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}

.feature-checklist svg {
  color: #a8cc52;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE CARDS — ENHANCED
   ============================================================ */

.hservice-card {
  position: relative;
  overflow: hidden;
}

.hservice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(92,129,22,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hservice-card:hover::before {
  opacity: 1;
}

.hservice-card__link {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-hover);
  margin-top: 16px;
  transition: color 0.15s ease;
}

.hservice-card:hover .hservice-card__link {
  color: var(--brand);
}

/* ============================================================
   WHY CHOOSE iWAT SECTION
   ============================================================ */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.why-stat-col {
  text-align: center;
}

.big-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.big-stat__num {
  font-size: clamp(4rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--brand-hover) 0%, #a8e063 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.big-stat__pct {
  font-size: 0.5em;
}

.big-stat__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 8px;
}

.why-stat-body {
  margin-bottom: 28px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.why-features-col h2 {
  margin-bottom: 32px;
}

.why-feature {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-feature:last-child {
  border-bottom: none;
}

.why-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: rgba(168,204,82,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8cc52;
}

.why-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.why-feature p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 6rem;
  line-height: 1;
  color: var(--brand-dim);
  font-family: Georgia, serif;
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
}

.testimonial-card__quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
  quotes: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
}

.testimonial-card__name {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
}

.testimonial-card__role {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   QUICK LINKS — REFINED
   ============================================================ */

.section--quicklinks {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%);
  padding: 56px 0;
}

/* ============================================================
   CTA SECTION — GLOW
   ============================================================ */

.section--cta {
  background: var(--brand);
  color: var(--text-on-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(92, 129, 22, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ============================================================
   TESTIMONIALS CAROUSEL
   ============================================================ */

.tcarousel {
  position: relative;
}

.tcarousel__track-wrapper {
  overflow: hidden;
  width: 100%;
}

.tcarousel__track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Cards in carousel context: flex children, equal height — width set by JS */
.tcarousel__track .testimonial-card {
  flex-shrink: 0;
  box-sizing: border-box;
}

.tcarousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.tcarousel__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tcarousel__btn:hover {
  border-color: var(--brand);
  color: var(--brand-hover);
  background: var(--brand-dim);
}

.tcarousel__dots {
  display: flex;
  gap: 8px;
}

.tcarousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.tcarousel__dot--active {
  background: var(--brand-hover);
  width: 24px;
  border-radius: 4px;
}

/* Remove the grid that was used before the carousel */
.testimonials-grid {
  display: block;
}

/* ============================================================
   PORTFOLIO CARD — PLACEHOLDER (no screenshot)
   ============================================================ */

.portfolio-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-raised);
  color: var(--text-muted);
}

/* ============================================================
   WHY CHOOSE — AWARD BADGE (replaces fake stat)
   ============================================================ */

.why-award-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--brand-dim);
  border: 1px solid rgba(92, 129, 22, 0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
}

.why-award-badge__icon {
  color: var(--brand-hover);
  flex-shrink: 0;
}

.why-award-badge__label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

/* ============================================================
   PAGE HERO — section-label override for dark bg
   ============================================================ */

.page-hero .section-label {
  color: var(--brand-bright);
}

/* ============================================================
   ETHICS PAGE — numbered principles grid
   ============================================================ */

.ethics-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ethics-card {
  display: flex;
  gap: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  align-items: flex-start;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ethics-card:hover {
  border-color: var(--brand);
  box-shadow: 0 2px 12px rgba(92,129,22,0.08);
}

.ethics-card__badge {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--brand-dim);
  border: 1px solid rgba(92,129,22,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand-hover);
  margin-top: 2px;
}

.ethics-card__content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.ethics-card__content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 640px) {
  .ethics-card { padding: 20px; }
}

/* ============================================================
   TERMS & CONDITIONS — card grid
   ============================================================ */

.terms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

@media (max-width: 700px) {
  .terms-grid { grid-template-columns: 1fr; }
}

.terms-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.terms-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.terms-card__icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--brand-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-hover);
}

.terms-card__header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.terms-card__body p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 10px;
}

.terms-card__body p:last-child {
  margin-bottom: 0;
}

.terms-card__body strong {
  color: var(--text-primary);
}

/* ============================================================
   RATES PAGE — website maintenance card grid
   ============================================================ */

.rates-maint-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0 20px;
}

@media (max-width: 768px) {
  .rates-maint-grid { grid-template-columns: 1fr; }
}

@media (min-width: 540px) and (max-width: 768px) {
  .rates-maint-grid { grid-template-columns: 1fr 1fr; }
}

.maint-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.maint-card--featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand);
}

.maint-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.maint-card__name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-hover);
}

.maint-card__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.maint-card__amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.maint-card__period {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.maint-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

.maint-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.maint-card__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.maint-card__list li svg {
  flex-shrink: 0;
  color: var(--brand-hover);
}

.maint-card .btn {
  margin-top: auto;
}

.rates-maint-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}
