/* ═══════════════════════════════════════════════
   OUTPOST CLOUD — GLOBAL STYLESHEET v6
   Font: Inter (system fallback for preview)
   All headings: 900 weight, uppercase, tight
═══════════════════════════════════════════════ */

:root {
  --green:      #2ca01c;
  --green-dark: #1a6610;
  --green-pale: #e8f5e5;
  --green-mid:  #c6eac0;
  --ink:        #080d07;
  --ink-soft:   #0f1a0d;
  --white:      #ffffff;
  --off-white:  #f7faf6;
  --gray:       #4a5e47;
  --gray-light: #eef2ed;
  --border:     #ccdfc9;
  --red:        #c0392b;
  --gold:       #b8860b;
  --nav-h:      60px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, Helvetica, 'Segoe UI', sans-serif;
  color: var(--ink); background: var(--white);
  font-size: 16px; line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
em, i { font-style: normal; }

/* ── ALL HEADINGS: INTER 900 UPPERCASE TIGHT ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', Arial, Helvetica, 'Segoe UI', sans-serif;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

/* ── NAV ── */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--ink);
  border-bottom: 3px solid var(--green);
  height: var(--nav-h);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 1.5rem; height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}
.nav-brand {
  display: flex; align-items: center;
  text-decoration: none; flex-shrink: 0;
}
.nav-brand-name {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1.25rem; color: #2ca01c;
  font-weight: 900; letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1; white-space: nowrap;
  font-style: normal;
}
/* nav links — centered column */
.nav-links {
  display: flex; align-items: center; justify-content: center;
  gap: 0.1rem; list-style: none;
}
.nav-links a {
  display: block; padding: 0.38rem 0.75rem;
  font-size: 0.8rem; font-weight: 500;
  color: #8fbd8a; border-radius: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap; letter-spacing: 0;
  text-transform: none;
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--white); }
/* CTA button — right column */
.nav-cta-wrap { display: flex; justify-content: flex-end; flex-shrink: 0; }
.nav-cta {
  background: var(--green);
  color: var(--white);
  padding: 0.42rem 1rem;
  border-radius: 5px;
  font-weight: 700; font-size: 0.8rem;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap; text-transform: none;
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center; line-height: 1;
}
.nav-cta:hover { background: #33bb22; color: var(--ink); }
/* mobile */
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 2px; }
@media (max-width: 820px) {
  /* logo | cta-button | hamburger */
  .nav-inner { grid-template-columns: auto 1fr auto; gap: 0.5rem; }
  .nav-toggle { display: flex; order: 3; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--ink-soft); padding: 0.75rem 1rem 1rem;
    border-bottom: 2px solid var(--green); gap: 0; z-index: 99;
    justify-content: flex-start;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { padding: 0.65rem 1rem; border-radius: 4px; }
  /* CTA stays visible on mobile, moves to center-right */
  .nav-cta-wrap { display: flex; justify-content: flex-end; order: 2; }
  .nav-cta { font-size: 0.72rem; padding: 0.38rem 0.7rem; }
}

/* ── HERO ── */
.hero {
  background: var(--ink); padding: 4.5rem 1.5rem 5rem;
  border-bottom: 3px solid var(--green);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 75% 50%, rgba(44,160,28,0.06) 0%, transparent 65%);
}
.hero-inner { max-width: 820px; margin: 0 auto; position: relative; }
.hero-eyebrow {
  font-size: 0.67rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 1.1rem; display: block; font-weight: 600;
}
.hero h1 {
  font-size: clamp(2.6rem, 7vw, 4.8rem);
  color: var(--white); margin-bottom: 1.25rem;
}
.hero h1 .g { color: var(--green); }
.hero-sub {
  font-size: 1.02rem; color: #a8cca4; font-weight: 400;
  max-width: 600px; margin-bottom: 0.6rem; line-height: 1.7;
  text-transform: none;
}
.hero-sub strong { color: #d0e8cc; font-weight: 600; }
.hero-urgency {
  font-size: 0.78rem; color: #35c421; letter-spacing: 0.01em;
  margin-bottom: 2.25rem; display: flex; align-items: center;
  gap: 0.5rem; font-weight: 500; text-transform: none;
}
.hero-urgency::before {
  content: ''; width: 7px; height: 7px; background: var(--green);
  border-radius: 50%; flex-shrink: 0;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.hero-btns { display: flex; gap: 0.85rem; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--green); color: var(--white);
  padding: 0.8rem 1.75rem; border-radius: 5px;
  font-weight: 700; font-size: 0.88rem; text-transform: none;
  transition: background 0.15s, color 0.15s, transform 0.1s;
  border: none; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { background: #33bb22; color: var(--ink); transform: translateY(-1px); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: #8fbd8a; padding: 0.8rem 1.6rem; border-radius: 5px;
  font-weight: 500; font-size: 0.88rem; text-transform: none;
  border: 1.5px solid #243620;
  transition: border-color 0.15s, color 0.15s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color: var(--green); color: var(--white); }
.btn-outline-sm {
  display: inline-flex; align-items: center; gap: 0.35rem;
  color: var(--green); padding: 0.55rem 1.1rem; border-radius: 5px;
  font-weight: 700; font-size: 0.8rem; text-transform: none;
  border: 1.5px solid var(--green); transition: all 0.15s;
}
.btn-outline-sm:hover { background: var(--green); color: var(--white); }

/* ── SECTIONS ── */
.section { padding: 4rem 1.5rem; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-narrow { max-width: 740px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--green); margin-bottom: 0.75rem; display: block; font-weight: 600;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--ink); margin-bottom: 0.75rem;
}
.section-title .g { color: var(--green); }
.section-sub {
  font-size: 0.95rem; color: #3a4e38; line-height: 1.7;
  max-width: 580px; margin-bottom: 2.5rem;
  font-weight: 400; text-transform: none;
}
.section-pale { background: var(--off-white); }
hr.section-rule { border: none; border-top: 1px solid var(--border); margin: 0 1.5rem; }

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem; margin-top: 2rem;
}
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem;
  transition: box-shadow 0.2s, border-color 0.2s, transform 0.15s;
}
.feature-card:hover { box-shadow: 0 4px 20px rgba(44,160,28,0.1); border-color: var(--green-mid); transform: translateY(-2px); }
.feature-icon {
  font-size: 1.2rem; margin-bottom: 0.8rem; width: 40px; height: 40px;
  background: var(--green-pale); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.feature-card h3 { font-size: 0.92rem; color: var(--ink); margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.84rem; color: #3a4e38; line-height: 1.6; text-transform: none; }
.feature-card a {
  display: inline-flex; align-items: center; gap: 0.3rem;
  margin-top: 0.8rem; font-size: 0.8rem; font-weight: 700;
  color: var(--green); text-transform: none; transition: gap 0.15s;
}
.feature-card a:hover { gap: 0.5rem; }

/* ── CHECKLIST ── */
.checklist { list-style: none; margin: 1.25rem 0; }
.checklist li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  font-size: 0.88rem; color: #3a4e38; text-transform: none;
  padding: 0.38rem 0; border-bottom: 1px solid var(--border);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; font-size: 0.82rem; margin-top: 0.05rem; }
.checklist-dark li { color: #d0e8cc; border-bottom-color: rgba(255,255,255,0.07); }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(275px, 1fr)); gap: 1.5rem; margin-top: 2rem; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 10px; overflow: hidden; transition: box-shadow 0.2s, transform 0.15s; }
.pricing-card:hover { box-shadow: 0 6px 28px rgba(44,160,28,0.1); transform: translateY(-2px); }
.pricing-card.featured { border: 2px solid var(--green); background: var(--ink); }
.pricing-card-header { padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid var(--border); }
.pricing-card.featured .pricing-card-header { background: var(--ink); }
.pricing-label { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); margin-bottom: 0.5rem; display: block; font-weight: 600; }
.pricing-card.featured .pricing-label { color: #5a8a54; }
.pricing-name { font-size: 0.95rem; color: var(--ink); margin-bottom: 0.9rem; }
.pricing-card.featured .pricing-name { color: var(--white); }
.pricing-amount { display: flex; align-items: baseline; gap: 0.25rem; }
.pricing-amount .dollar { font-size: 2.8rem; line-height: 1; color: var(--ink); letter-spacing: -0.04em; }
.pricing-card.featured .pricing-amount .dollar { color: var(--white); }
.pricing-amount .per { font-size: 0.82rem; color: #3a4e38; font-weight: 400; text-transform: none; }
.pricing-card.featured .pricing-amount .per { color: #8fbd8a; }
.pricing-desc { font-size: 0.8rem; color: #3a4e38; margin-top: 0.5rem; line-height: 1.5; text-transform: none; }
.pricing-card.featured .pricing-card-body { background: var(--ink); }
.pricing-card.featured .checklist li { color: #d0e8cc; border-bottom-color: rgba(255,255,255,0.07); }
.pricing-card.featured .pricing-cta .btn-primary { border: 2px solid var(--green); }

.pricing-card-body { padding: 1.25rem 1.5rem; }
.pricing-cta { padding: 0 1.5rem 1.5rem; }
.pricing-cta .btn-primary, .pricing-cta .btn-secondary { width: 100%; text-align: center; justify-content: center; }
.pricing-cta .btn-secondary { border-color: var(--border); color: #3a4e38; }
.pricing-cta .btn-secondary:hover { border-color: var(--green); color: var(--green); }

/* ── COMPARE TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.84rem; margin-top: 1.5rem; }
.compare-table th { background: var(--ink); color: var(--white); padding: 0.8rem 1rem; text-align: center; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.02em; }
.compare-table th:first-child { text-align: left; }
.compare-table td { padding: 0.6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: middle; text-transform: none; }
.compare-table td:first-child { color: #3a4e38; font-size: 0.84rem; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.compare-table .win { color: var(--green); font-weight: 700; }
.compare-table .lose { color: var(--red); }
.compare-table .neutral { color: #3a4e38; }
.compare-table .section-row td { background: var(--ink); color: #5a8a54; font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.45rem 1rem; font-weight: 600; }

/* ── STAT ROW ── */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; margin-top: 2rem; }
.stat-item { padding: 1.4rem; text-align: center; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item .stat-num { font-size: 2rem; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 0.3rem; letter-spacing: -0.04em; text-transform: none; }
.stat-item .stat-label { font-size: 0.78rem; color: #3a4e38; line-height: 1.4; text-transform: none; font-weight: 400; }

/* ── CTA STRIP ── */
.cta-strip { background: var(--ink); padding: 4rem 1.5rem; border-top: 3px solid var(--green); text-align: center; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 50% 110%, rgba(44,160,28,0.1) 0%, transparent 60%); }
.cta-strip h2 { color: var(--white); margin-bottom: 0.65rem; font-size: clamp(1.6rem, 4.5vw, 2.8rem); position: relative; }
.cta-strip h2 .g { color: var(--green); }
.cta-strip p { color: #8fbd8a; margin-bottom: 2rem; font-size: 0.92rem; max-width: 480px; margin-left: auto; margin-right: auto; position: relative; text-transform: none; }
.cta-strip .cta-inner { max-width: 620px; margin: 0 auto; position: relative; }
.cta-btns { display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }

/* ── NOTICE ── */
.notice { background: var(--green-pale); border-left: 3px solid var(--green); border-radius: 0 6px 6px 0; padding: 0.9rem 1.1rem; font-size: 0.84rem; color: #3a4e38; line-height: 1.6; margin: 1.5rem 0; text-transform: none; }
.notice strong { color: var(--green-dark); }

/* ── REVIEW CARDS ── */
.review-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.rc { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 1.25rem; border-top: 3px solid transparent; transition: box-shadow 0.15s, transform 0.15s; }
.rc:hover { box-shadow: 0 3px 16px rgba(10,15,9,0.08); transform: translateY(-1px); }
.rc.lag{border-top-color:#c0392b} .rc.price{border-top-color:var(--gold)} .rc.ai{border-top-color:#3b5bdb} .rc.ux{border-top-color:#7048e8} .rc.hidden{display:none}
.rtag { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.18rem 0.5rem; border-radius: 3px; display: inline-block; margin-bottom: 0.65rem; font-weight: 600; }
.rtag.lag{background:#fdf0ee;color:#c0392b} .rtag.price{background:#fdf5e6;color:var(--gold)} .rtag.ai{background:#edf2ff;color:#3b5bdb} .rtag.ux{background:#f3f0ff;color:#7048e8}
.rq { font-size: 0.875rem; color: #3a4e38; line-height: 1.65; font-style: italic; text-transform: none; }
.rsrc { font-size: 0.7rem; color: #d0e8cc; margin-top: 0.65rem; text-transform: none; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.38rem 0.85rem; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); color: #3a4e38; cursor: pointer; transition: all 0.15s; font-weight: 600; }
.filter-btn:hover, .filter-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-btn.active.f-lag{background:#c0392b;border-color:#c0392b} .filter-btn.active.f-price{background:var(--gold);border-color:var(--gold)} .filter-btn.active.f-ai{background:#3b5bdb;border-color:#3b5bdb} .filter-btn.active.f-ux{background:#7048e8;border-color:#7048e8}
.count { font-size: 0.78rem; color: #3a4e38; margin-bottom: 1rem; font-weight: 500; text-transform: none; }

/* ── SOCIAL LINKS ── */
.social-links, .footer-social { display: flex; align-items: center; gap: 0.55rem; margin-top: 0.85rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 6px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); color: #7aaa74; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.social-link:hover { background: var(--green); color: var(--white); border-color: var(--green); }
.social-link svg { width: 15px; height: 15px; fill: currentColor; display: block; }

/* ── FOOTER ── */
.site-footer { background: var(--ink); border-top: 3px solid var(--green); padding: 2rem 1.5rem 1.25rem; }
.footer-inner { max-width: 1140px; margin: 0 auto; }
.footer-cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem; margin-bottom: 1.5rem; }
@media(max-width:860px){.footer-cols{grid-template-columns:1fr 1fr;gap:2rem}}
@media(max-width:520px){.footer-cols{grid-template-columns:1fr;gap:1.5rem}}
.footer-brand-name { font-size: 1rem; color: var(--green); margin-bottom: 0.85rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-contact a { font-size: 0.84rem; color: #7aaa74; transition: color 0.15s; text-transform: none; }
.footer-contact a:hover { color: var(--white); }
.footer-col-head { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: #6a9a64; margin-bottom: 0.9rem; display: block; font-weight: 600; }
.footer-nav-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-nav-col a { font-size: 0.84rem; color: #7aaa74; transition: color 0.15s; text-transform: none; }
.footer-nav-col a:hover { color: var(--white); }
.footer-cta-col p { font-size: 0.8rem; color: #7aaa74; line-height: 1.6; margin-bottom: 1rem; text-transform: none; }
.footer-cta-btn { display: inline-flex; align-items: center; gap: 0.35rem; background: var(--green); color: var(--white); padding: 0.6rem 1.1rem; border-radius: 5px; font-size: 0.8rem; font-weight: 700; text-transform: none; transition: background 0.15s, color 0.15s; }
.footer-cta-btn:hover { background: #33bb22; color: var(--ink); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 1.25rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-copy { font-size: 0.75rem; color: #4a7a44; text-transform: none; }

/* ── UTILITIES ── */
.mt-2{margin-top:1rem} .mt-3{margin-top:1.5rem} .mt-4{margin-top:2rem}
.divide{border:none;border-top:1px solid var(--border);margin:2.5rem 0}

/* ── RESPONSIVE ── */
@media(max-width:600px){
  .hero{padding:3rem 1.25rem 3.5rem}
  .section{padding:2.75rem 1.25rem}
  .stat-row{grid-template-columns:1fr 1fr}
  .stat-item:nth-child(even){border-right:none}
  .pricing-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .cta-strip{padding:3rem 1.25rem}
}


/* ═══════════════════════════════════════
   MOBILE-FIRST FIXES
═══════════════════════════════════════ */

/* Minimum tap target on all buttons */
.btn-primary, .btn-secondary, .nav-cta, .footer-cta-btn {
  min-height: 48px;
}

/* Hero — tighter on mobile */
@media (max-width: 480px) {
  .hero { padding: 28px 18px 32px; }
  .hero h1 { font-size: 2.4rem; margin-bottom: 16px; }
  .hero-sub { font-size: .88rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn-primary,
  .hero-btns .btn-secondary { width: 100%; text-align: center; justify-content: center; min-height: 52px; font-size: .95rem; }
  .hero-urgency { font-size: .72rem; }
}

/* Section padding tighter on mobile */
@media (max-width: 480px) {
  .section { padding: 28px 18px; }
  .section-title { font-size: 1.5rem; }
  .cta-strip { padding: 32px 18px; }
  .cta-strip h2 { font-size: 1.5rem; }
  .cta-btns { flex-direction: column; }
  .cta-btns .btn-primary,
  .cta-btns .btn-secondary { width: 100%; text-align: center; justify-content: center; min-height: 52px; }
}

/* What-grid — always single column on mobile */
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr !important; }
  .wi { border-right: none !important; border-bottom: 1px solid #ccdfc9; }
  .wi:last-child { border-bottom: none; }
}

/* Feature grid — single column on small mobile */
@media (max-width: 500px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* Pricing grid — always single column on mobile */
@media (max-width: 700px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

/* Stat row — two columns max on mobile */
@media (max-width: 480px) {
  .stat-row { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-child(odd):nth-last-child(1) { grid-column: span 2; }
}

/* Compare table — allow horizontal scroll on mobile */
@media (max-width: 600px) {
  .compare-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .compare-table { min-width: 500px; }
}

/* Nav — ensure brand name doesn't get clipped */
@media (max-width: 380px) {
  .nav-brand-name { font-size: 1rem; }
  .nav-inner { padding: 0 14px; }
}

/* Footer — 2-col on mobile */
@media (max-width: 600px) {
  .footer-cols { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* CTA block — stack on mobile */
@media (max-width: 480px) {
  .cta-block { padding: 28px 18px; }
  .cta-block-inner { grid-template-columns: 1fr !important; gap: 20px; }
  .cta-block-actions { min-width: 0; }
  .cta-block-actions a { min-height: 52px; }
}

/* Contact form — full width on mobile */
@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
}

/* Touch-friendly link spacing in footer */
@media (max-width: 600px) {
  .footer-nav-col a { padding: 4px 0; }
  .footer-contact a { padding: 4px 0; }
  .social-link, .footer-social .social-link { width: 36px; height: 36px; }
}

/* ── FOOTER LOGO ── */
.footer-logo {
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  color: #2ca01c;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  display: block;
}
.footer-brand-name { display: none; }

/* ── PRICING CARD TEXT ── */
.pricing-card:not(.featured) .pricing-name { color: #080d07; }
.pricing-card:not(.featured) .pricing-amount .dollar { color: #080d07; }
.pricing-card:not(.featured) .pricing-desc { color: #4a5e47; }
.pricing-card:not(.featured) .checklist li { color: #1a2e19; }
.pricing-card.featured .pricing-name { color: #ffffff; }
.pricing-card.featured .pricing-amount .dollar { color: #ffffff; }
.pricing-card.featured .pricing-desc { color: #8fbd8a; }
.pricing-card.featured .checklist li { color: #d0e8cc; }
.footer-copy { font-size: 0.75rem; color: #4a7a44; text-transform: none; }
