@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --g900: #002314;
  --g800: #003d22;
  --g700: #005f33;
  --g600: #007a42;
  --g500: #00a651;
  --g400: #34c97a;
  --g100: #e8f5ee;
  --g50:  #f3faf6;
  --ink:  #0d1f14;
  --ink2: #2d4a38;
  --muted:#5a7565;
  --line: #cce4d6;
  --white:#ffffff;
  --bg:   #f8fbf9;
  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 4px rgba(0,35,20,.08);
  --shadow:    0 4px 16px rgba(0,35,20,.11);
  --shadow-lg: 0 16px 48px rgba(0,35,20,.18);
  --transition: .18s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, Arial, sans-serif; color: var(--ink); background: var(--white); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

.container { width: min(1180px, 94%); margin-inline: auto; }

/* ── Topbar ── */
.topbar {
  background: var(--g900);
  color: rgba(255,255,255,.8);
  font-size: .82rem;
  font-weight: 500;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .45rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
.topbar a { color: inherit; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-sep { opacity: .3; }

/* ── Language Toggle ── */
.lang-toggle { display: flex; gap: .3rem; }
.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.65);
  font-size: .75rem;
  font-weight: 700;
  padding: .18rem .52rem;
  border-radius: 4px;
  letter-spacing: .04em;
  transition: all var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--g600);
  border-color: var(--g600);
  color: var(--white);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: 0 4px 16px rgba(0,35,20,.1); }
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .85rem 0;
  gap: 1.5rem;
}
.brand { display: flex; align-items: center; gap: .7rem; }
.brand img { height: 50px; width: auto; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  color: var(--ink2);
  font-weight: 600;
  font-size: .88rem;
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.nav a:hover, .nav a.active { color: var(--g700); background: var(--g50); }
.nav .portal-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--g700);
  color: var(--white);
  font-weight: 700;
  font-size: .86rem;
  padding: .52rem 1.05rem;
  border-radius: 999px;
  border: 2px solid var(--g700);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
  margin-left: .4rem;
}
.nav .portal-btn:hover {
  background: var(--white);
  color: var(--g700);
  border-color: var(--g700);
  transform: translateY(-1px);
}
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--g700);
  font-size: 1.3rem;
  padding: .3rem .6rem;
  border-radius: var(--radius-sm);
}

/* ── Hero (homepage) ── */
.hero {
  background: url('../images/background.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0,35,20,.65) 0%, rgba(0,61,34,.60) 55%, rgba(0,95,51,.52) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 800px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--g400);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 26px; height: 2px; background: currentColor; }
.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -.025em;
  margin-bottom: 1.2rem;
  color: var(--white);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,.72);
  max-width: 620px;
  margin-bottom: 2.4rem;
  line-height: 1.72;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: url('../images/background.jpg') center/cover no-repeat;
  color: var(--white);
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0,35,20,.65) 0%, rgba(0,61,34,.60) 55%, rgba(0,95,51,.52) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .eyebrow {
  display: block;
  color: var(--g400);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .7rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.022em;
  line-height: 1.07;
  margin-bottom: .85rem;
}
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,.68); max-width: 620px; line-height: 1.72; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--g500);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .78rem 1.65rem;
  border-radius: 999px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-primary:hover { background: var(--g400); color: var(--g900); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,166,81,.35); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .78rem 1.65rem;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,.38);
  transition: all var(--transition);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--g700);
  color: var(--white);
  font-weight: 700;
  font-size: .95rem;
  padding: .78rem 1.65rem;
  border-radius: 999px;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}
.btn-green:hover { background: var(--g600); transform: translateY(-2px); }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-soft { background: var(--g50); }
.section-dark {
  background: url('../images/background.jpg') center/cover no-repeat;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(0,35,20,.65) 0%, rgba(0,61,34,.60) 55%, rgba(0,95,51,.52) 100%);
}
.section-dark .container { position: relative; z-index: 1; }

.section-header { margin-bottom: 3rem; }
.section-header.center { text-align: center; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--g600);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}
.section-dark .section-header .eyebrow { color: var(--g400); }
.section-header h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--ink);
}
.section-dark .section-header h2 { color: var(--white); }
.section-header p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-top: .7rem;
  max-width: 600px;
  line-height: 1.7;
}
.section-header.center p { margin-inline: auto; }
.section-dark .section-header p { color: rgba(255,255,255,.62); }

/* ── Service Cards (home grid) ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.65rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: .65rem;
  transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--g400); transform: translateY(-3px); }
.service-icon {
  width: 54px;
  height: 54px;
  background: var(--g100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-icon img { width: 34px; height: 34px; object-fit: contain; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); line-height: 1.3; }
.service-card p { font-size: .9rem; color: var(--muted); line-height: 1.65; flex: 1; }
.service-link { font-size: .84rem; font-weight: 700; color: var(--g600); display: inline-flex; align-items: center; gap: .3rem; margin-top: .25rem; transition: gap var(--transition); }
.service-card:hover .service-link { gap: .5rem; }

/* ── Pillars (dark section 3-col) ── */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.pillar {
  background: rgba(0,20,10,.45);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  backdrop-filter: blur(4px);
}
.pillar-num { font-size: 2.8rem; font-weight: 900; color: var(--g400); line-height: 1; margin-bottom: .85rem; opacity: .55; }
.pillar h3 { font-size: 1.15rem; font-weight: 700; color: var(--white); margin-bottom: .5rem; }
.pillar p { font-size: .92rem; color: rgba(255,255,255,.75); line-height: 1.68; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--g700), var(--g800));
  border-radius: var(--radius-lg);
  padding: 2.75rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-banner h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); font-weight: 800; color: var(--white); line-height: 1.2; }
.cta-banner p { color: rgba(255,255,255,.68); margin-top: .45rem; font-size: 1rem; }

/* ── Services page – full-detail cards ── */
.service-full {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.75rem;
  align-items: start;
  padding: 2.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.2rem;
}
.service-full-icon {
  width: 72px;
  height: 72px;
  background: var(--g100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-full-icon img { width: 46px; object-fit: contain; }
.service-full h3 { font-size: 1.25rem; font-weight: 800; color: var(--g800); margin-bottom: .4rem; line-height: 1.25; }
.service-full p { color: var(--muted); line-height: 1.72; margin-bottom: .8rem; font-size: .95rem; }
.tag-list { list-style: none; display: flex; flex-wrap: wrap; gap: .4rem; }
.tag-list li {
  background: var(--g100);
  color: var(--g700);
  font-size: .78rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 999px;
  letter-spacing: .02em;
}

/* ── About page ── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.about-visual {
  background: linear-gradient(140deg, var(--g800), var(--g700));
  border-radius: var(--radius-lg);
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-visual img { width: 60%; opacity: .85; }
.about-text h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; color: var(--ink); margin-bottom: .85rem; }
.about-text p { color: var(--muted); line-height: 1.75; margin-bottom: 1.1rem; font-size: .98rem; }
.values-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 2rem; }
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  background: var(--g50);
  border-radius: var(--radius);
  border-left: 3px solid var(--g600);
}
.value-icon { font-size: 1.25rem; flex-shrink: 0; line-height: 1.3; }
.value-item h4 { font-size: .95rem; font-weight: 700; color: var(--ink); margin-bottom: .2rem; }
.value-item p { font-size: .88rem; color: var(--muted); line-height: 1.58; margin: 0; }

/* ── Coverage strip ── */
.coverage-strip {
  background: var(--g900);
  color: var(--white);
  text-align: center;
  padding: 2.75rem 0;
}
.coverage-strip h3 { font-size: 1.45rem; font-weight: 800; }
.coverage-strip p { font-size: 1rem; color: rgba(255,255,255,.68); margin-top: .4rem; }

/* ── Contact page ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.45fr; gap: 3.5rem; align-items: start; }
.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); font-weight: 800; color: var(--ink); margin-bottom: .7rem; }
.contact-info > p { color: var(--muted); line-height: 1.72; margin-bottom: 2.25rem; }
.contact-detail {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.contact-detail:first-of-type { border-top: 1px solid var(--line); }
.cd-icon {
  width: 44px;
  height: 44px;
  background: var(--g100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.cd-text strong { display: block; font-size: .8rem; font-weight: 700; color: var(--ink2); margin-bottom: .1rem; letter-spacing: .03em; }
.cd-text a, .cd-text span { color: var(--g700); font-size: .95rem; font-weight: 600; transition: color var(--transition); }
.cd-text a:hover { color: var(--g500); }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h3 { font-size: 1.2rem; font-weight: 800; color: var(--ink); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: .9rem; }
.form-group label { font-size: .8rem; font-weight: 700; color: var(--ink2); letter-spacing: .03em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .68rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: .94rem;
  color: var(--ink);
  background: var(--g50);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--g600);
  box-shadow: 0 0 0 3px rgba(0,122,66,.12);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: .5rem; }
.form-notice { font-size: .78rem; color: var(--muted); margin-top: .85rem; line-height: 1.55; }
.form-error { font-size: .88rem; color: #c0392b; margin-top: .85rem; font-weight: 600; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success p:first-child { font-size: 1.35rem; font-weight: 800; color: var(--g700); }
.form-success p:last-child { color: var(--muted); margin-top: .5rem; }

/* ── Footer ── */
.footer { background: var(--g900); color: rgba(255,255,255,.62); padding: 3.5rem 0 1.75rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand img { height: 38px; margin-bottom: .9rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: .86rem; line-height: 1.68; max-width: 270px; }
.footer-col h4 { color: var(--white); font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: .9rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a { font-size: .86rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-col .contact-links { margin-top: 1.5rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom strong { color: rgba(255,255,255,.85); }

/* ── Pricing / Plans ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.plans-grid .plan-card { height: 100%; }
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.popular {
  border-color: var(--g500);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--g500);
  color: var(--white);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .26rem .9rem;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--g600);
  margin-bottom: .5rem;
}
.plan-card.popular .plan-name { color: var(--g600); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: .2rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.plan-price-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink2);
  line-height: 1;
  align-self: flex-start;
  margin-top: .45rem;
}
.plan-price-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.04em;
  line-height: 1;
}
.plan-price-period {
  font-size: .86rem;
  color: var(--muted);
  font-weight: 500;
  align-self: flex-end;
  padding-bottom: .3rem;
}
.plan-features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.5rem;
}
.plan-features li {
  font-size: .9rem;
  color: var(--ink2);
  padding: .42rem 0;
  border-bottom: 1px solid var(--g50);
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  line-height: 1.45;
}
.plan-features li::before {
  content: '✓';
  color: var(--g500);
  font-weight: 800;
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.plan-features li.plan-divider {
  font-size: .75rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-top: .8rem;
  border-bottom: none;
}
.plan-features li.plan-divider::before { display: none; }
.plan-assets {
  font-size: .82rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.plan-assets-count {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--g100);
  border-radius: var(--radius-sm);
  padding: .4rem .8rem;
  margin-bottom: .5rem;
  font-size: .88rem;
  font-weight: 700;
  color: var(--g700);
}
.annual-note {
  background: var(--g900);
  color: rgba(255,255,255,.72);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  text-align: center;
  font-size: .92rem;
  margin-top: 1.75rem;
}
.annual-note strong { color: var(--g400); }

/* ── Feature boxes (CMMS section) ── */
.feature-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.feature-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.85rem 1.6rem;
  box-shadow: var(--shadow-sm);
}
.feature-box-icon {
  width: 48px;
  height: 48px;
  background: var(--g100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.feature-box h3 { font-size: 1rem; font-weight: 800; color: var(--ink); margin-bottom: .5rem; line-height: 1.25; }
.feature-box > p { font-size: .88rem; color: var(--muted); line-height: 1.65; margin-bottom: .75rem; }
.feature-box ul { list-style: none; }
.feature-box ul li {
  font-size: .84rem;
  color: var(--ink2);
  padding: .3rem 0;
  display: flex;
  gap: .5rem;
  align-items: center;
  border-bottom: 1px solid var(--g50);
}
.feature-box ul li::before { content: '→'; color: var(--g500); font-size: .8rem; flex-shrink: 0; }

/* ── Benefits grid ── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .75rem;
  margin-top: 1rem;
}
.benefit-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  padding: .9rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: .9rem;
  color: var(--ink2);
  line-height: 1.5;
}
.benefit-item::before { content: '✓'; color: var(--g500); font-weight: 800; flex-shrink: 0; font-size: .88rem; margin-top: .1rem; }

/* ── Business plans strip ── */
.biz-plans-strip {
  background: linear-gradient(140deg, var(--g900), var(--g800));
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}
.biz-plans-strip h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .4rem; }
.biz-plans-strip > div > p { font-size: .95rem; color: rgba(255,255,255,.68); line-height: 1.65; }
.biz-plan-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .85rem; }
.biz-tag {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: 999px;
}

/* ── Responsive ── */
@media (max-width: 920px) {
  .mobile-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: .75rem 5%;
    border-top: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
  }
  .nav.open { display: flex; }
  .nav a { width: 100%; padding: .7rem 0; border-radius: 0; border-bottom: 1px solid var(--line); }
  .portal-btn { width: 100%; justify-content: center; margin: .5rem 0 .25rem; }
  .site-header { position: relative; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .service-full { grid-template-columns: 1fr; }
  .service-full-icon { width: 56px; height: 56px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plan-card.popular { transform: none; }
  .feature-boxes { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .biz-plans-strip { grid-template-columns: 1fr; padding: 2rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 0 3rem; }
  .hero-stats { gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem; }
}
