/* ==========================================================================
   WapiGrow — WhatsApp Automation for Indian SMBs
   Stylesheet | Green & White lightweight theme
   ========================================================================== */

:root {
  /* Brand palette */
  --green-50:  #F0FDF4;
  --green-100: #DCFCE7;
  --green-200: #BBF7D0;
  --green-300: #86EFAC;
  --green-400: #4ADE80;
  --green-500: #22C55E;
  --green-600: #16A34A;
  --green-700: #15803D;
  --green-800: #166534;
  --green-900: #14532D;

  /* Neutrals */
  --ink-900: #0F172A;
  --ink-800: #1E293B;
  --ink-700: #334155;
  --ink-600: #475569;
  --ink-500: #64748B;
  --ink-400: #94A3B8;
  --ink-300: #CBD5E1;
  --ink-200: #E2E8F0;
  --ink-100: #F1F5F9;
  --ink-50:  #F8FAFC;
  --white:   #FFFFFF;
  --off-white: #FAFCFA;

  /* Brand colors */
  --primary: var(--green-600);
  --primary-dark: var(--green-700);
  --primary-soft: var(--green-50);
  --accent: var(--green-500);
  --text: var(--ink-800);
  --text-muted: var(--ink-500);
  --border: var(--ink-200);
  --bg: var(--white);
  --bg-soft: var(--off-white);

  /* Shape */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06), 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.10), 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-green: 0 10px 28px rgba(22, 163, 74, 0.18);
  --green-glow: rgba(37, 211, 102, 0.10);

  /* Type */
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Manrope', -apple-system, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 960px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--primary); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--primary-dark); }
ul { padding: 0; margin: 0; list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--ink-900);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; color: var(--ink-700); }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: var(--container-narrow); margin: 0 auto; }
.section   { padding: 80px 0; }
.section-sm { padding: 56px 0; }
@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 40px 0; }
}

/* Top bar */
.topbar {
  background: var(--ink-900);
  color: #d1fae5;
  font-size: 13px;
  padding: 9px 0;
  text-align: center;
}
.topbar a { color: var(--green-300); font-weight: 600; }
.topbar a:hover { color: var(--white); }

/* Navbar */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex; align-items: center;
}
.logo:hover { opacity: 0.85; }
.logo-img {
  height: 34px;
  width: auto;
  display: block;
}
.footer .logo-img { height: 32px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: var(--r-md);
  transition: all .15s ease;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary-dark);
  background: var(--green-50);
}

.nav-cta { display: flex; gap: 10px; align-items: center; }
.menu-toggle { display: none; }

@media (max-width: 960px) {
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .menu-toggle {
    display: inline-flex; width: 42px; height: 42px;
    border-radius: var(--r-md);
    align-items: center; justify-content: center;
    background: var(--green-50); color: var(--primary-dark);
  }
  .nav-open .nav-links {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px 22px;
    gap: 2px;
    box-shadow: var(--shadow-lg);
    align-items: stretch;
  }
  .nav-open .nav-links a { padding: 14px 12px; }
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all .18s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-green);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(22, 163, 74, 0.24);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-800);
  border: 1px solid var(--border);
}
.btn-ghost:hover {
  background: var(--green-50);
  border-color: var(--green-200);
  color: var(--primary-dark);
}
.btn-white {
  background: var(--white); color: var(--primary-dark);
}
.btn-white:hover { background: var(--green-50); color: var(--primary-dark); }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  padding: 84px 0 96px;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 85% -10%, rgba(34, 197, 94, 0.10), transparent 60%),
    radial-gradient(600px 360px at -10% 30%, rgba(22, 163, 74, 0.07), transparent 60%),
    var(--white);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(22, 163, 74, 0.08) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  background: var(--green-50);
  color: var(--green-700);
  border-radius: var(--r-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--green-100);
  margin-bottom: 22px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-500); box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2); }
.hero h1 { margin-bottom: 18px; }
.hero h1 .hl {
  background: linear-gradient(120deg, var(--green-600), var(--green-500));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.12rem;
  color: var(--ink-600);
  margin-bottom: 28px;
  max-width: 540px;
  line-height: 1.65;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat strong {
  display: block; font-size: 1.6rem; font-weight: 800; color: var(--ink-900);
  font-family: var(--font-display);
}
.hero-stat span { font-size: 0.86rem; color: var(--text-muted); }

/* Phone mock visual */
.phone-mock {
  position: relative;
  margin: 0 auto;
  max-width: 380px;
}
.phone-frame {
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
  overflow: hidden;
  padding: 14px;
}
.phone-head {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 6px 14px;
  border-bottom: 1px solid var(--border);
}
.phone-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-400), var(--green-600));
  display: grid; place-items: center; color: white; font-weight: 700; font-size: 14px;
}
.phone-name { font-weight: 700; font-size: 0.95rem; color: var(--ink-900); }
.phone-status { font-size: 0.75rem; color: var(--green-600); font-weight: 600; }
.phone-body { padding: 18px 6px 14px; display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 82%;
  padding: 10px 14px;
  border-radius: 16px;
  font-size: 0.86rem;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}
.bubble-in {
  background: var(--ink-100);
  color: var(--ink-800);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}
.bubble-out {
  background: var(--green-100);
  color: var(--green-900);
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}
.bubble small { display: block; font-size: 0.7rem; opacity: 0.65; margin-top: 4px; text-align: right; }

.phone-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 10px 14px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-800);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
}
.phone-badge.top { top: 6%; left: -30px; }
.phone-badge.bot { bottom: 12%; right: -34px; }
.phone-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-500); }
@media (max-width: 540px) {
  .phone-badge { display: none; }
}

/* Trust strip */
.trust {
  padding: 28px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  text-align: center;
}
.trust-grid strong {
  display: block;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary-dark);
  font-family: var(--font-display);
}
.trust-grid span {
  font-size: 0.86rem;
  color: var(--text-muted);
}
@media (max-width: 720px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
}

/* Section header */
.section-head { text-align: center; margin-bottom: 56px; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  font-size: 1.06rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

/* Feature cards */
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: all .25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--green-200);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(22, 163, 74, 0.06);
}
.feature-icon {
  width: 48px; height: 48px;
  border-radius: var(--r-md);
  background: var(--green-50);
  color: var(--primary-dark);
  display: grid; place-items: center;
  margin-bottom: 18px;
  transition: all .25s ease;
}
.feature-card:hover .feature-icon {
  background: var(--green-glow);
  box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.06);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature-card p { font-size: 0.94rem; color: var(--text-muted); margin: 0; line-height: 1.6; }
@media (max-width: 960px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }

/* Industry grid */
.industry-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-800);
  font-weight: 600;
  transition: all .2s ease;
}
.industry-card:hover {
  border-color: var(--green-300);
  background: var(--green-50);
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.industry-card svg { width: 26px; height: 26px; color: var(--primary); flex-shrink: 0; }
.industry-card .arr { margin-left: auto; opacity: 0; transition: opacity .2s; }
.industry-card:hover .arr { opacity: 1; }
@media (max-width: 900px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .industry-grid { grid-template-columns: 1fr; } }

/* Steps */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}
.step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 26px;
  position: relative;
  transition: all .25s ease;
}
.step:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.step-num {
  position: absolute; top: -16px; left: 26px;
  width: 34px; height: 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: var(--shadow-green);
}
.step h3 { margin-top: 8px; font-size: 1.1rem; }
.step p { font-size: 0.94rem; color: var(--text-muted); margin: 0; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

/* Banded section */
.section-soft { background: var(--bg-soft); }
.section-dark {
  background: linear-gradient(160deg, var(--green-900), var(--ink-900) 80%);
  color: #d1fae5;
}
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: #bbf7d0; }

/* Pricing */
.price-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: all .2s ease;
}
.price-card.featured {
  border-color: var(--green-500);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.14);
  position: relative;
}
.price-card.featured::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: white;
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 5px 14px; border-radius: var(--r-full);
  text-transform: uppercase;
}
.price-name { font-size: 0.92rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.price-amt {
  font-family: var(--font-display);
  font-size: 2.6rem; font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.03em;
  margin: 6px 0 4px;
}
.price-amt small { font-size: 0.95rem; color: var(--text-muted); font-weight: 500; }
.price-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 22px; }
.price-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 26px; flex-grow: 1; }
.price-list li {
  display: flex; align-items: start; gap: 10px;
  font-size: 0.93rem;
  color: var(--ink-700);
}
.price-list svg { width: 18px; height: 18px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; } }

/* Testimonials */
.t-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column;
  gap: 18px;
  transition: all .25s ease;
}
.t-card:hover {
  border-color: var(--green-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.t-quote { color: var(--ink-700); font-size: 0.98rem; line-height: 1.6; margin: 0; flex-grow: 1; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green-300), var(--green-600));
  color: white; font-weight: 700;
  display: grid; place-items: center;
  font-size: 0.95rem;
}
.t-author strong { display: block; color: var(--ink-900); font-size: 0.94rem; }
.t-author span { font-size: 0.82rem; color: var(--text-muted); }
.t-stars { color: #f59e0b; letter-spacing: 1px; font-size: 0.95rem; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding: 22px 0;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink-900);
  font-family: inherit;
}
.faq-q::after {
  content: '+';
  font-size: 1.4rem; font-weight: 400;
  color: var(--primary);
  transition: transform .25s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 0 22px; color: var(--ink-600); font-size: 0.96rem; line-height: 1.65; }
.faq-item.open .faq-a { max-height: 400px; }

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  color: white;
  padding: 64px 0;
  border-radius: var(--r-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.18) 1px, transparent 0);
  background-size: 24px 24px;
  opacity: 0.45;
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band h2 { color: white; margin-bottom: 12px; }
.cta-band p { color: #d1fae5; max-width: 560px; margin: 0 auto 26px; font-size: 1.04rem; }
.cta-band .btn-primary { background: white; color: var(--primary-dark); }
.cta-band .btn-primary:hover { background: var(--green-50); color: var(--primary-dark); }

/* Forms */
.form { display: grid; gap: 16px; }
.form label { font-size: 0.88rem; font-weight: 600; color: var(--ink-800); margin-bottom: 6px; display: block; }
.form input, .form textarea, .form select {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  font-size: 0.96rem;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  color: var(--ink-900);
  transition: all .15s ease;
}
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none;
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px var(--green-100);
}
.form textarea { min-height: 130px; resize: vertical; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form .row { grid-template-columns: 1fr; } }
.form-honey { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-error { color: #dc2626; font-size: 0.86rem; margin-top: 6px; display: none; }
.form-success {
  display: none;
  padding: 16px 18px;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--r-md);
  color: var(--green-800);
  font-size: 0.94rem;
}
.form-success.show, .form-error.show { display: block; }

/* Contact split */
.contact-split {
  display: grid; grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.contact-line { display: flex; gap: 14px; align-items: start; }
.contact-line .ico {
  width: 42px; height: 42px;
  background: var(--green-50); color: var(--primary-dark);
  border-radius: var(--r-md);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line strong { display: block; color: var(--ink-900); font-size: 0.96rem; margin-bottom: 2px; }
.contact-line span, .contact-line a { color: var(--text-muted); font-size: 0.92rem; }
.contact-line a:hover { color: var(--primary-dark); }
@media (max-width: 900px) {
  .contact-split { grid-template-columns: 1fr; gap: 32px; }
}

/* Floating WhatsApp button */
.fab-wa {
  position: fixed;
  bottom: 22px; right: 22px;
  width: 60px; height: 60px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 90;
  transition: all .2s ease;
  animation: wa-pulse 2.4s ease-out infinite;
}
.fab-wa:hover { transform: scale(1.08); color: white; }
.fab-wa svg { width: 30px; height: 30px; }
@keyframes wa-pulse {
  0%   { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70%  { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Footer */
.footer {
  background: var(--ink-900);
  color: #cbd5e1;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  font-size: 0.94rem;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.footer ul { display: flex; flex-direction: column; gap: 10px; }
.footer a { color: #cbd5e1; font-size: 0.93rem; }
.footer a:hover { color: var(--green-400); }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand p { font-size: 0.92rem; line-height: 1.65; color: #94a3b8; max-width: 320px; }
.footer-base {
  border-top: 1px solid #1e293b;
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px;
  font-size: 0.86rem; color: #94a3b8;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid #334155;
  border-radius: var(--r-md);
  display: grid; place-items: center;
  color: #cbd5e1;
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }
.footer-social svg { width: 16px; height: 16px; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* Page header */
.page-head {
  padding: 64px 0 48px;
  text-align: center;
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(22, 163, 74, 0.09), transparent 70%),
    var(--white);
  border-bottom: 1px solid var(--border);
}
.page-head h1 { margin-bottom: 14px; }
.page-head p {
  font-size: 1.08rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
}

/* Breadcrumb */
.crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.86rem; color: var(--text-muted);
  justify-content: center;
  margin-bottom: 16px;
}
.crumbs a { color: var(--text-muted); }
.crumbs a:hover { color: var(--primary-dark); }
.crumbs .sep { color: var(--ink-300); }

/* Two-column content */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.two-col.reverse > div:first-child { order: 2; }
@media (max-width: 860px) {
  .two-col, .two-col.reverse { grid-template-columns: 1fr; gap: 32px; }
  .two-col.reverse > div:first-child { order: 0; }
}
.check-list { display: flex; flex-direction: column; gap: 12px; margin: 18px 0; }
.check-list li {
  display: flex; gap: 10px; align-items: start;
  font-size: 0.98rem; color: var(--ink-700);
}
.check-list svg {
  width: 20px; height: 20px;
  background: var(--green-100); color: var(--primary-dark);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}

/* Industry hero */
.ind-hero {
  padding: 64px 0 48px;
  background:
    radial-gradient(640px 320px at 80% 0%, rgba(22, 163, 74, 0.10), transparent 70%),
    var(--bg-soft);
  border-bottom: 1px solid var(--border);
}
.ind-hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 48px; align-items: center;
}
@media (max-width: 860px) { .ind-hero-inner { grid-template-columns: 1fr; } }

/* Template cards (industry pages) */
.tpl-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tpl-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 22px;
}
.tpl-card h4 {
  margin: 0 0 10px; font-size: 0.95rem; color: var(--primary-dark);
  text-transform: uppercase; letter-spacing: 0.04em;
}
.tpl-card .msg {
  background: var(--green-50);
  border-radius: var(--r-md);
  padding: 14px 16px;
  font-size: 0.92rem;
  color: var(--ink-800);
  line-height: 1.55;
  border-left: 3px solid var(--green-500);
}
@media (max-width: 900px) { .tpl-grid { grid-template-columns: 1fr; } }

/* Cities chip strip (SEO) */
.cities {
  margin-top: 18px;
  font-size: 0.84rem;
  color: var(--text-muted);
  text-align: center;
}
.cities a {
  display: inline-block; margin: 2px 6px 2px 0;
  padding: 4px 10px;
  background: var(--green-50);
  color: var(--primary-dark);
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 500;
}
.cities a:hover { background: var(--green-100); }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}
.btn:focus-visible {
  outline: 2px solid var(--green-500);
  outline-offset: 3px;
  box-shadow: 0 0 0 4px var(--green-100);
}

/* Utilities */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.muted { color: var(--text-muted); }
