/* ─── RESET ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ─── TOKENS ─────────────────────────── */
:root {
  --ink: #0f1117; --ink-2: #3d3d3d; --ink-3: #6b7280;
  --surface: #ffffff; --surface-2: #f6f4ef; --surface-3: #edeae2;
  --brand: #1b4332; --brand-mid: #2d6a4f; --brand-lite: #52b788;
  --accent: #d4a853; --accent-2: #f0e6cc;
  --pop: #e76f51; --pop-light: #fff1ec;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,.07);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.13);
  --nav-h: 68px;
}

/* ─── ANIMATIONS ─────────────────────── */
@keyframes fadeUp  { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:none; } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
@keyframes float   { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes pulse   { 0%,100%{transform:scale(1);}50%{transform:scale(1.04);} }

.au { opacity:0; animation: fadeUp .65s ease forwards; }
.au-d1{animation-delay:.1s;}.au-d2{animation-delay:.22s;}.au-d3{animation-delay:.34s;}.au-d4{animation-delay:.46s;}

/* ─── UTILITY ─────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 0; }
.section-sm { padding: 56px 0; }
.section-alt { background: var(--surface-2); }
.section-dark { background: var(--brand); color: #fff; }
.section-ink  { background: var(--ink); color: #fff; }
.text-center { text-align: center; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px;
  background: var(--accent-2); color: var(--brand);
}
.tag-pop { background: var(--pop-light); color: var(--pop); }
.tag-green { background: #dcfce7; color: #166534; }

.eyebrow {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .1em; color: var(--brand-lite); margin-bottom: 12px;
}

.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-head h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3.2vw, 44px); line-height: 1.15;
  letter-spacing: -.025em; color: var(--ink); margin-bottom: 16px;
}
.section-head h2 em { font-style:italic; color:var(--brand); }
.section-head p { font-size: 17px; color: var(--ink-3); line-height: 1.7; }
.section-dark .section-head h2,
.section-ink  .section-head h2 { color: #fff; }
.section-dark .section-head p,
.section-ink  .section-head p  { color: rgba(255,255,255,.7); }

/* ─── BUTTONS ─────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 600;
  padding: 11px 24px; border-radius: var(--radius-sm);
  border: 2px solid transparent; cursor: pointer;
  transition: all .2s; white-space: nowrap;
}
.btn-primary   { background:var(--brand); color:#fff; border-color:var(--brand); }
.btn-primary:hover { background:var(--brand-mid); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn-secondary { background:transparent; color:var(--brand); border-color:var(--brand); }
.btn-secondary:hover { background:var(--brand); color:#fff; transform:translateY(-1px); }
.btn-pop       { background:var(--pop); color:#fff; border-color:var(--pop); }
.btn-pop:hover { background:#c9593e; transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn-ghost     { background:transparent; color:var(--ink-2); border-color:#d4d0c8; font-size:13.5px; padding:9px 18px; }
.btn-ghost:hover { border-color:var(--brand); color:var(--brand); }
.btn-white     { background:#fff; color:var(--brand); border-color:#fff; }
.btn-white:hover { background:var(--surface-2); }
.btn-lg { font-size:16px; padding:15px 34px; border-radius:var(--radius-md); }

/* ─── ANNOUNCEMENT STRIP ─────────────── */
.strip {
  display: var(--banner-display, block);
  position: relative;
  background: var(--brand); color: rgba(255,255,255,.9);
  text-align: center; font-size: 13px; font-weight: 500;
  padding: 9px 20px;
}
.strip-close {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: inherit;
  font-size: 14px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
}
.strip-close:hover {
  opacity: 1;
}
.strip strong { color: #fff; }
.strip a { color: var(--accent); text-decoration: underline; margin-left: 6px; }

/* ─── NAVBAR ──────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 500;
  height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center;
  transition: box-shadow .2s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.09); }
.nav-inner {
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--brand); letter-spacing: -.02em;
}
.nav-logo-mark {
  width: 48px; height: 48px;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  object-fit: contain;
  display: block;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition: transform .2s ease;
}
.nav-logo:hover .nav-logo-mark {
  transform: scale(1.04);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  padding: 8px 13px; border-radius: var(--radius-sm);
  transition: all .15s; cursor: pointer;
}
.nav-link:hover, .nav-link.active { background: var(--surface-2); color: var(--brand); }
.nav-right { display: flex; align-items: center; gap: 10px; }

/* Mobile hamburger */
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px;
  background: none; border: none; outline: none; appearance: none; -webkit-appearance: none;
}
.nav-hamburger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; display: block; }
.nav-mobile {
  display: none; flex-direction: column; gap: 4px;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--surface-3);
  padding: 16px 20px 24px; z-index: 499;
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.nav-mobile a.nav-link { font-size: 15px; font-weight: 500; padding: 10px 12px; border-radius: var(--radius-sm); color: var(--ink-2); }
.nav-mobile a.nav-link:hover { background: var(--surface-2); color: var(--brand); }
.nav-mobile .btn, .nav-mobile .btn-pop, .nav-mobile a.btn, .nav-mobile a.btn-pop {
  color: #ffffff !important;
  background: var(--brand);
  text-align: center;
  justify-content: center;
}
.nav-mobile .btn:hover, .nav-mobile .btn-pop:hover, .nav-mobile a.btn:hover, .nav-mobile a.btn-pop:hover {
  color: #ffffff !important;
  background: var(--brand-mid);
}
.nav-mobile .mob-divider { border: none; border-top: 1px solid var(--surface-3); margin: 10px 0; }

/* ─── LOGO STRIP ──────────────────────── */
.logo-strip { background:#fff; border-bottom:1px solid var(--surface-3); padding:24px 0; overflow:hidden; }
.logo-scroll { display:flex; gap:0; animation:marquee 140s linear infinite; width:max-content; will-change:transform; }
.logo-scroll:hover { animation-play-state:paused; }
.logo-item {
  display:flex; align-items:center; justify-content:center; padding:0 44px;
  font-family:'DM Serif Display',serif; font-size:18px; color:#bbb;
  letter-spacing:-.02em; transition:color .2s; cursor:default;
}
.logo-item:hover { color:var(--brand); }

/* ─── PLACEHOLDER IMAGES ─────────────── */
.ph {
  background: linear-gradient(135deg, var(--surface-3) 0%, var(--surface-2) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--ink-3); position: relative; overflow: hidden;
}
.ph::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    45deg, transparent, transparent 20px,
    rgba(27,67,50,.03) 20px, rgba(27,67,50,.03) 40px
  );
}
.ph-icon { font-size: 48px; opacity: .3; }
.ph-label { font-size: 13px; font-weight: 500; opacity: .5; letter-spacing: .04em; text-transform: uppercase; }
.ph-hero   { height: 100%; min-height: 480px; border-radius: var(--radius-lg); }
.ph-feature{ height: 360px; border-radius: var(--radius-lg); }
.ph-card   { height: 220px; border-radius: var(--radius-md); }
.ph-thumb  { height: 200px; border-radius: var(--radius-md) var(--radius-md) 0 0; }
.ph-avatar { width:80px; height:80px; border-radius:50%; background:var(--surface-3); display:flex; align-items:center; justify-content:center; font-size:24px; color:var(--ink-3); flex-shrink:0; }
.ph-avatar-sm { width:42px; height:42px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:600; flex-shrink:0; }

.feature-img-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--surface-2);
}
.feature-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.feature-img-wrap:hover .feature-img {
  transform: scale(1.02);
}

/* ─── FLOATING WHATSAPP BUTTON ────────────── */
.floating-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4), 0 2px 6px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  cursor: pointer;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55), 0 3px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.floating-whatsapp-tooltip {
  position: absolute;
  right: 68px;
  background: #111827;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.floating-whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border-width: 5px 0 5px 5px;
  border-style: solid;
  border-color: transparent transparent transparent #111827;
}

.floating-whatsapp:hover .floating-whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media(max-width: 640px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .floating-whatsapp-tooltip {
    display: none;
  }
}

/* ─── FEATURE SPLIT ───────────────────── */
.split { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:72px; }
.split.flip { direction:rtl; }
.split.flip > * { direction:ltr; }
.split-text h2 {
  font-family:'DM Serif Display',serif; font-size:clamp(26px,3vw,40px);
  line-height:1.15; letter-spacing:-.025em; color:var(--ink); margin-bottom:16px;
}
.split-text h2 em { font-style:italic; color:var(--brand); }
.split-text p { font-size:16px; color:var(--ink-3); line-height:1.75; margin-bottom:28px; }

.feature-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:32px; }
.feature-list li { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--ink-2); line-height:1.6; }
.fl-icon { width:22px; height:22px; border-radius:50%; background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-size:11px; flex-shrink:0; margin-top:2px; }

/* ─── CARDS ───────────────────────────── */
.cards-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:20px; }
.card {
  background:var(--surface); border:1.5px solid var(--surface-3);
  border-radius:var(--radius-lg); padding:30px 26px;
  transition:all .25s; cursor:pointer; overflow:hidden; position:relative;
}
.card::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:3px;
  background:var(--brand); transform:scaleX(0); transform-origin:left; transition:.3s;
}
.card:hover { transform:translateY(-5px); box-shadow:var(--shadow-md); border-color:transparent; }
.card:hover::after { transform:scaleX(1); }
.card-icon {
  width:48px; height:48px; border-radius:var(--radius-md);
  background:var(--surface-2); display:flex; align-items:center; justify-content:center;
  font-size:22px; margin-bottom:18px; transition:.25s;
}
.card:hover .card-icon { background:var(--brand); }
.card h3 { font-size:17px; font-weight:600; margin-bottom:8px; color:var(--ink); }
.card p  { font-size:14px; color:var(--ink-3); line-height:1.6; }
.card-link { display:inline-flex; align-items:center; gap:5px; font-size:13.5px; font-weight:600; color:var(--brand); margin-top:14px; transition:gap .2s; }
.card:hover .card-link { gap:9px; }

/* ─── STATS ───────────────────────────── */
.stats-band { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:rgba(255,255,255,.15); border-radius:var(--radius-lg); overflow:hidden; }
.stat-item { background:rgba(255,255,255,.08); padding:40px 28px; text-align:center; }
.stat-item:hover { background:rgba(255,255,255,.14); transition:.2s; }
.stat-num { font-family:'DM Serif Display',serif; font-size:clamp(32px,4vw,50px); color:var(--accent); line-height:1; margin-bottom:10px; }
.stat-label { font-size:14px; color:rgba(255,255,255,.7); line-height:1.5; }

/* ─── TESTIMONIALS ────────────────────── */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.testi-card { background:var(--surface); border:1px solid var(--surface-3); border-radius:var(--radius-lg); padding:30px 26px; transition:box-shadow .25s; }
.testi-card:hover { box-shadow:var(--shadow-md); }
.testi-stars { display:flex; gap:3px; margin-bottom:14px; }
.testi-stars span { color:var(--accent); font-size:15px; }
.testi-quote { font-size:15px; line-height:1.75; color:var(--ink-2); font-style:italic; margin-bottom:22px; }
.testi-quote::before { content:'\201C'; font-size:26px; color:var(--brand-lite); line-height:.6; vertical-align:-.2em; margin-right:3px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-name { font-size:14px; font-weight:600; color:var(--ink); }
.testi-role { font-size:12px; color:var(--ink-3); }

/* ─── FAQ ─────────────────────────────── */
.faq-list { max-width:740px; margin:0 auto; }
.faq-item { border-bottom:1px solid var(--surface-3); }
.faq-q {
  display:flex; justify-content:space-between; align-items:center;
  padding:20px 0; cursor:pointer; font-size:16px; font-weight:600; color:var(--ink);
  transition:color .15s; gap:16px; list-style:none;
}
.faq-q:hover { color:var(--brand); }
.faq-q::after { content:'+'; font-size:22px; color:var(--brand-lite); flex-shrink:0; transition:transform .25s; }
.faq-item.open .faq-q::after { transform:rotate(45deg); }
.faq-a { max-height:0; overflow:hidden; transition:max-height .35s ease, padding .25s; font-size:15px; color:var(--ink-3); line-height:1.75; }
.faq-item.open .faq-a { max-height:240px; padding-bottom:20px; }

/* ─── CTA BAND ────────────────────────── */
.cta-band { background:var(--ink); padding:80px 0; position:relative; overflow:hidden; }
.cta-band::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%, rgba(27,67,50,.5) 0%, transparent 70%); pointer-events:none; }
.cta-inner { max-width:700px; margin:0 auto; padding:0 40px; text-align:center; position:relative; z-index:1; }
.cta-inner h2 { font-family:'DM Serif Display',serif; font-size:clamp(28px,4vw,48px); color:#fff; line-height:1.15; letter-spacing:-.025em; margin-bottom:16px; }
.cta-inner h2 em { font-style:italic; color:var(--accent); }
.cta-inner p { font-size:17px; color:rgba(255,255,255,.65); margin-bottom:34px; line-height:1.7; }
.cta-actions { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }
.cta-note { margin-top:16px; font-size:13px; color:rgba(255,255,255,.35); }

/* ─── BREADCRUMB ──────────────────────── */
.breadcrumb { padding: 14px 0; font-size:13px; color:var(--ink-3); }
.breadcrumb a { color:var(--brand); }
.breadcrumb span { margin:0 8px; }

/* ─── PAGE HERO (inner pages) ─────────── */
.page-hero { background:var(--surface-2); padding:80px 0 72px; text-align:center; }
.page-hero h1 { font-family:'DM Serif Display',serif; font-size:clamp(32px,4vw,54px); line-height:1.1; letter-spacing:-.025em; color:var(--ink); margin-bottom:18px; }
.page-hero h1 em { font-style:italic; color:var(--brand); }
.page-hero p { font-size:18px; color:var(--ink-3); line-height:1.7; max-width:600px; margin:0 auto 32px; }

/* ─── BLOG CARD ───────────────────────── */
.blog-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:28px; }
.blog-card { background:var(--surface); border:1px solid var(--surface-3); border-radius:var(--radius-lg); overflow:hidden; transition:all .25s; }
.blog-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); }
.blog-card-body { padding:24px; }
.blog-tag { display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; padding:4px 10px; border-radius:40px; background:var(--accent-2); color:var(--brand); margin-bottom:12px; }
.blog-card h3 { font-size:18px; font-weight:600; line-height:1.35; color:var(--ink); margin-bottom:10px; }
.blog-card p { font-size:14px; color:var(--ink-3); line-height:1.65; margin-bottom:18px; }
.blog-meta { display:flex; align-items:center; gap:12px; font-size:12.5px; color:var(--ink-3); }

/* ─── PRICING CARDS ───────────────────── */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:start; }
.price-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); padding:36px 30px; transition:border-color .2s; }
.price-card:hover { border-color:var(--brand-lite); }
.price-card.featured { border:2px solid var(--brand); background:var(--brand); color:#fff; position:relative; }
.price-card.featured::before { content:'Most popular'; position:absolute; top:-13px; left:50%; transform:translateX(-50%); background:var(--accent); color:var(--ink); font-size:11.5px; font-weight:700; letter-spacing:.05em; text-transform:uppercase; padding:4px 16px; border-radius:40px; white-space:nowrap; }
.price-tier { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--brand-lite); margin-bottom:8px; }
.price-card.featured .price-tier { color:var(--accent); }
.price-name { font-family:'DM Serif Display',serif; font-size:28px; margin-bottom:6px; }
.price-desc { font-size:14px; color:var(--ink-3); margin-bottom:22px; line-height:1.5; }
.price-card.featured .price-desc { color:rgba(255,255,255,.7); }
.price-amount { font-size:42px; font-weight:700; color:var(--ink); line-height:1; margin-bottom:4px; letter-spacing:-.02em; }
.price-amount sup { font-size:20px; vertical-align:super; }
.price-amount span { font-size:15px; font-weight:400; color:var(--ink-3); }
.price-card.featured .price-amount { color:#fff; }
.price-card.featured .price-amount span { color:rgba(255,255,255,.6); }
.price-per { font-size:13px; color:var(--ink-3); margin-bottom:26px; }
.price-card.featured .price-per { color:rgba(255,255,255,.6); }
.price-divider { border:none; border-top:1px solid var(--surface-3); margin:22px 0; }
.price-card.featured .price-divider { border-top-color:rgba(255,255,255,.2); }
.price-features { list-style:none; display:flex; flex-direction:column; gap:11px; margin-bottom:28px; }
.price-features li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-2); line-height:1.5; }
.price-features li::before { content:'✓'; font-weight:700; color:var(--brand-lite); flex-shrink:0; margin-top:1px; }
.price-card.featured .price-features li { color:rgba(255,255,255,.85); }
.price-card.featured .price-features li::before { color:var(--accent); }
.btn-price { display:block; width:100%; text-align:center; padding:13px; border-radius:var(--radius-sm); font-size:15px; font-weight:600; border:2px solid var(--brand); color:var(--brand); background:transparent; cursor:pointer; transition:all .2s; }
.btn-price:hover { background:var(--brand); color:#fff; transform:translateY(-1px); }
.price-card.featured .btn-price { background:var(--accent); border-color:var(--accent); color:var(--ink); }
.price-card.featured .btn-price:hover { opacity:.9; }

/* ─── TEAM CARD ───────────────────────── */
.team-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:28px; }
.team-card { text-align:center; }
.team-card .ph-avatar { width:100px; height:100px; font-size:32px; margin:0 auto 16px; background:var(--surface-3); color:var(--brand-mid); }
.team-card h3 { font-size:17px; font-weight:600; margin-bottom:4px; }
.team-card p { font-size:13.5px; color:var(--ink-3); }

/* ─── CONTACT FORM ────────────────────── */
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:64px; align-items:stretch; }
.form-group { margin-bottom:22px; }
.form-group label { display:block; font-size:14px; font-weight:600; color:var(--ink-2); margin-bottom:7px; }
.form-group input,
.form-group textarea,
.form-group select {
  width:100%; padding:12px 16px; border:1.5px solid var(--surface-3);
  border-radius:var(--radius-sm); font-size:15px; font-family:'DM Sans',sans-serif;
  color:var(--ink); background:var(--surface); transition:border-color .2s;
  outline:none;
}
.form-group select {
  padding-right:42px;
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color:var(--brand); box-shadow:0 0 0 3px rgba(27,67,50,.08); }
.form-group textarea { resize:vertical; min-height:140px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

/* ─── FOOTER ──────────────────────────── */
footer { background:var(--ink); color:rgba(255,255,255,.55); padding:72px 0 36px; }
.footer-inner { max-width:1180px; margin:0 auto; padding:0 40px; }
.footer-top { display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr; gap:48px; margin-bottom:56px; }
.footer-logo { display:flex; align-items:center; gap:10px; font-family:'DM Serif Display',serif; font-size:22px; color:#fff; letter-spacing:-.02em; margin-bottom:14px; }
.footer-logo-mark { width:32px; height:32px; background:#ffffff; border-radius:7px; padding:3px; object-fit:contain; display:block; }
.footer-tagline { font-size:13.5px; line-height:1.65; max-width:220px; margin-bottom:22px; }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:34px; height:34px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center; justify-content:center; font-size:13px; color:rgba(255,255,255,.6); transition:all .2s; }
.footer-social a:hover { background:var(--brand-mid); color:#fff; }
.footer-col h4 { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.09em; color:#fff; margin-bottom:16px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-col ul li a { font-size:13.5px; color:rgba(255,255,255,.5); transition:color .15s; }
.footer-col ul li a:hover { color:#fff; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.08); padding-top:28px; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:14px; }
.footer-bottom p { font-size:12.5px; }
.footer-legal { display:flex; gap:20px; flex-wrap:wrap; }
.footer-legal a { font-size:12.5px; color:rgba(255,255,255,.4); }
.footer-legal a:hover { color:rgba(255,255,255,.8); }

/* ─── RESPONSIVE ──────────────────────── */

/* ── Tablet (≤ 1024px) ── */
@media(max-width:1024px){
  .split,.contact-grid { grid-template-columns:1fr; }
  .split.flip { direction:ltr; }
  .testi-grid,.pricing-grid { grid-template-columns:1fr; }
  .stats-band { grid-template-columns:repeat(2,1fr); }
  .footer-top { grid-template-columns:1fr 1fr; }
  .footer-brand { grid-column:span 2; }
  .nav-links,.nav-right { display:none; }
  .nav-hamburger { display:flex; }
  .page-hero { padding:64px 0 52px; }
  .section-head { margin-bottom:48px; }
  .split { gap:40px; }
}

/* ── Large mobile (≤ 768px) ── */
@media(max-width:768px){
  .strip { display:none!important; }
  /* Collapse any inline 2-column grids (about hero, login/signup, etc.) */
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns:1fr!important;
    gap:28px!important;
  }
  /* Hide decorative placeholder on collapsed grids */
  [style*="grid-template-columns: 1fr 1fr"] .ph,
  [style*="grid-template-columns:1fr 1fr"] .ph { display:none!important; }
  .page-hero { padding:48px 0 40px; }
  .page-hero p { font-size:16px; }
  .cta-band { padding:60px 0; }
  .cta-actions { flex-direction:column; align-items:stretch; }
  .cta-actions .btn { text-align:center; justify-content:center; }
  /* Expand FAQ answer height so long answers don't get clipped */
  .faq-item.open .faq-a { max-height:600px; }
  .featured-post { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
}

/* ── Mobile (≤ 680px) ── */
@media(max-width:680px){
  .container,.nav-inner,.cta-inner,.footer-inner { padding:0 18px; }
  .section { padding:56px 0; }
  .section-head { margin-bottom:32px; }
  .section-head p { font-size:15px; }
  .section-head h2 { font-size:clamp(22px,6vw,32px); }
  .stats-band { grid-template-columns:1fr 1fr; }
  .footer-top { grid-template-columns:1fr; gap:28px; }
  .footer-brand { grid-column:span 1; }
  .form-row { grid-template-columns:1fr; }
  .blog-grid { grid-template-columns:1fr; }
  .page-hero { padding:36px 0 32px; }
  .page-hero p { font-size:15px; margin-bottom:20px; }
  .page-hero h1 { font-size:clamp(26px,7vw,38px); }
  .btn-lg { font-size:15px; padding:13px 24px; }
  .cards-grid { grid-template-columns:1fr; }
  .split { gap:28px; }
  .split-text h2 { font-size:clamp(22px,5.5vw,32px); }
  .split-text p { font-size:15px; }
  .feature-list li { font-size:14px; }
  .testi-card { padding:24px 20px; }
  .stat-item { padding:28px 16px; }
  .nav-inner { padding:0 16px; }
  .cta-inner h2 { font-size:clamp(22px,6vw,36px); }
  footer { padding:48px 0 24px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:8px; }
  .card { padding:24px 20px; }
  .guide-card { flex-direction:column; gap:12px; }
  .guide-icon { width:44px; height:44px; }
  .contact-grid { gap:28px; }
  .contact-info-card { padding:20px 16px; }
  .strip { font-size:12px; padding:8px 36px 8px 16px; }
  .blog-card h3 { font-size:16px; }
  .faq-q { font-size:15px; }
}

/* ── Small mobile (≤ 480px) ── */
@media(max-width:480px){
  .stats-band { grid-template-columns:1fr; }
  .stat-item { padding:22px 16px; }
  .section { padding:44px 0; }
  .page-hero { padding:28px 0 24px; }
  .btn-lg { font-size:14.5px; padding:12px 20px; }
  .footer-top { gap:20px; }
  .footer-col h4 { margin-top:4px; }
  .testi-grid { grid-template-columns:1fr; }
  .pricing-grid { grid-template-columns:1fr; }
  .cta-actions { gap:10px; }
  .nav-logo { font-size:18px; }
  .nav-logo-mark { width:38px; height:38px; }
  .section-head { margin-bottom:24px; }
  .featured-post { padding:24px; }
  .card { padding:20px 16px; }
}


/* INNER PAGE SPECIFIC STYLES */

/* Styles from about.html */
.timeline { position:relative; padding-left:32px; }
.timeline::before { content:''; position:absolute; left:0; top:0; bottom:0; width:2px; background:var(--surface-3); }
.timeline-item { position:relative; margin-bottom:40px; }
.timeline-item::before { content:''; position:absolute; left:-38px; top:6px; width:14px; height:14px; border-radius:50%; background:var(--brand); border:3px solid var(--surface); box-shadow:0 0 0 2px var(--brand); }
.timeline-year { font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.08em; color:var(--brand-lite); margin-bottom:4px; }
.timeline-item h3 { font-size:17px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.timeline-item p  { font-size:14px; color:var(--ink-3); line-height:1.65; }
.value-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); padding:32px 28px; }
.value-card .v-icon { font-size:36px; margin-bottom:16px; }
.value-card h3 { font-size:18px; font-weight:600; color:var(--ink); margin-bottom:8px; }
.value-card p  { font-size:14px; color:var(--ink-3); line-height:1.65; }
.press-logo { display:flex; align-items:center; justify-content:center; padding:24px 32px; background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-md); font-family:'DM Serif Display',serif; font-size:20px; color:#aaa; transition:all .2s; cursor:default; }
.press-logo:hover { color:var(--brand); border-color:var(--brand-lite); }

/* Styles from contact.html */
.contact-info-card { background:var(--surface-2); border-radius:var(--radius-lg); padding:28px 24px; display:flex; align-items:flex-start; gap:16px; margin-bottom:16px; }
.ci-icon { width:44px; height:44px; border-radius:var(--radius-md); background:var(--brand); color:#fff; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.ci-label { font-size:12px; font-weight:600; text-transform:uppercase; letter-spacing:.08em; color:var(--ink-3); margin-bottom:4px; }
.ci-value { font-size:15px; font-weight:500; color:var(--ink); }
.ci-sub   { font-size:13px; color:var(--ink-3); margin-top:3px; }
.form-submit { width:100%; padding:14px; background:var(--brand); color:#fff; border:none; border-radius:var(--radius-sm); font-size:16px; font-weight:600; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; }
.form-submit:hover { background:var(--brand-mid); }
.office-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); overflow:hidden; transition:all .25s; }
.office-card:hover { box-shadow:var(--shadow-md); border-color:var(--brand-lite); }
.office-ph { height:180px; }
.office-body { padding:22px; }
.office-body h3 { font-size:17px; font-weight:600; margin-bottom:6px; }
.office-body p  { font-size:14px; color:var(--ink-3); line-height:1.6; }

/* Styles from login.html */
.login-wrap { min-height:100vh; display:flex; align-items:center; justify-content:center; background:var(--surface-2); padding:40px 20px; }
.login-box { background:#fff; border-radius:var(--radius-lg); box-shadow:var(--shadow-lg); padding:48px; width:100%; max-width:420px; }
.login-logo { display:flex; align-items:center; gap:10px; font-family:'DM Serif Display',serif; font-size:22px; color:var(--brand); margin-bottom:32px; }
.login-logo-mark { width:34px; height:34px; background:#ffffff; border-radius:8px; padding:4px; object-fit:contain; display:block; box-shadow:0 1px 3px rgba(0,0,0,0.08); }
.login-box h2 { font-family:'DM Serif Display',serif; font-size:28px; color:var(--ink); margin-bottom:6px; }
.login-box .sub { font-size:14.5px; color:var(--ink-3); margin-bottom:28px; }
.login-box .sub a { color:var(--brand); font-weight:600; }
.social-btn { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:12px; border:1.5px solid var(--surface-3); border-radius:var(--radius-sm); font-size:14.5px; font-weight:500; color:var(--ink-2); background:#fff; cursor:pointer; transition:all .2s; margin-bottom:10px; }
.social-btn:hover { border-color:var(--brand); color:var(--brand); }
.divider { display:flex; align-items:center; gap:14px; margin:22px 0; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background:var(--surface-3); }
.divider span { font-size:13px; color:var(--ink-3); }
.forgot { font-size:13px; color:var(--brand); font-weight:500; float:right; }
.login-submit { width:100%; padding:13px; background:var(--brand); color:#fff; border:none; border-radius:var(--radius-sm); font-size:16px; font-weight:600; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; margin-top:6px; }
.login-submit:hover { background:var(--brand-mid); }
.login-submit:disabled { opacity:.7; cursor:not-allowed; }
.captcha-row { display:flex; align-items:center; gap:10px; margin-bottom:12px; }
.captcha-box { flex:1; min-height:50px; border:1px solid var(--surface-3); border-radius:var(--radius-sm); overflow:hidden; background:#f8fafc; }
.captcha-box svg { width:100%; height:50px; display:block; }
.captcha-refresh { border:1px solid var(--surface-3); background:#fff; border-radius:var(--radius-sm); padding:11px 12px; cursor:pointer; color:var(--ink-2); }
.back-link { display:block; text-align:center; font-size:13px; color:var(--ink-3); margin-top:20px; }
.back-link a { color:var(--brand); font-weight:600; }

/* Styles from resources.html */
.filter-bar { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn { font-size:13px; font-weight:600; padding:7px 18px; border-radius:40px; border:1.5px solid var(--surface-3); background:var(--surface); color:var(--ink-3); cursor:pointer; transition:all .2s; }
.filter-btn:hover, .filter-btn.active { background:var(--brand); color:#fff; border-color:var(--brand); }
.featured-post { display:grid; grid-template-columns:1.2fr 1fr; gap:56px; align-items:center; padding:48px; background:var(--surface-2); border-radius:var(--radius-lg); margin-bottom:56px; }
.featured-post h2 { font-family:'DM Serif Display',serif; font-size:clamp(24px,3vw,36px); line-height:1.2; color:var(--ink); margin-bottom:14px; }
.featured-post p { font-size:16px; color:var(--ink-3); line-height:1.7; margin-bottom:22px; }
.guide-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); padding:28px; display:flex; gap:20px; align-items:flex-start; transition:all .25s; }
.guide-card:hover { border-color:var(--brand-lite); box-shadow:var(--shadow-sm); transform:translateY(-2px); }
.guide-icon { width:52px; height:52px; border-radius:var(--radius-md); background:var(--surface-2); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.guide-card h3 { font-size:16px; font-weight:600; color:var(--ink); margin-bottom:6px; }
.guide-card p  { font-size:14px; color:var(--ink-3); line-height:1.6; }
.guide-card a  { font-size:13px; font-weight:600; color:var(--brand); display:inline-block; margin-top:10px; }
.webinar-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); overflow:hidden; transition:all .25s; }
.webinar-card:hover { border-color:var(--brand-lite); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.webinar-thumb { height:180px; }
.webinar-body { padding:22px; }
.webinar-date { font-size:12px; font-weight:600; color:var(--pop); text-transform:uppercase; letter-spacing:.06em; margin-bottom:8px; }
.webinar-card h3 { font-size:16px; font-weight:600; color:var(--ink); margin-bottom:6px; line-height:1.35; }
.webinar-card p { font-size:13.5px; color:var(--ink-3); line-height:1.6; }
@media(max-width:768px){ .featured-post { grid-template-columns:1fr; } }

/* Styles from customers.html */
.story-card { background:var(--surface); border:1.5px solid var(--surface-3); border-radius:var(--radius-lg); overflow:hidden; transition:all .25s; }
.story-card:hover { transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--brand-lite); }
.story-thumb { height:200px; }
.story-img-wrap { width:100%; height:200px; overflow:hidden; position:relative; background:var(--surface-3); }
.story-img { width:100%; height:100%; object-fit:cover; object-position:center; display:block; transition:transform .35s ease; }
.story-card:hover .story-img { transform:scale(1.04); }
.story-body { padding:24px; }
.story-industry { display:inline-block; font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.07em; padding:4px 10px; border-radius:40px; background:var(--accent-2); color:var(--brand); margin-bottom:12px; }
.story-card h3 { font-size:19px; font-weight:600; line-height:1.3; color:var(--ink); margin-bottom:8px; }
.story-card p { font-size:14px; color:var(--ink-3); line-height:1.65; margin-bottom:16px; }
.story-stat { font-size:28px; font-weight:700; color:var(--brand); font-family:'DM Serif Display',serif; }
.story-stat-label { font-size:13px; color:var(--ink-3); }
.story-link { font-size:13.5px; font-weight:600; color:var(--brand); display:inline-flex; align-items:center; gap:5px; margin-top:14px; }
.story-link:hover { gap:9px; transition:gap .2s; }
.review-badge { display:flex; align-items:center; gap:10px; background:var(--surface-2); border-radius:var(--radius-md); padding:14px 20px; }
.review-badge .score { font-size:28px; font-weight:700; color:var(--brand); font-family:'DM Serif Display',serif; }
.review-badge .platform { font-size:13px; color:var(--ink-3); }
.review-badge .stars { color:var(--accent); letter-spacing:2px; }

/* Styles from demo.html */
.demo-layout { display:grid; grid-template-columns:1fr 1fr; align-items:start; }
.demo-left { background:var(--brand); padding:72px 60px; display:flex; flex-direction:column; gap:48px; position:sticky; top:var(--nav-h); min-height:calc(100vh - var(--nav-h)); overflow:hidden; }
.demo-left::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 50% at 110% 50%, rgba(82,183,136,.2) 0%, transparent 70%); pointer-events:none; }
.demo-left h2 { font-family:'DM Serif Display',serif; font-size:clamp(26px,3vw,38px); color:#fff; line-height:1.2; position:relative; }
.demo-left h2 em { font-style:italic; color:var(--accent); }
.demo-left p { font-size:16px; color:rgba(255,255,255,.75); line-height:1.7; position:relative; }
.demo-perk { display:flex; align-items:flex-start; gap:14px; position:relative; }
.dp-icon { width:42px; height:42px; border-radius:var(--radius-sm); background:rgba(255,255,255,.15); display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.dp-title { font-size:15px; font-weight:600; color:#fff; margin-bottom:4px; }
.dp-desc  { font-size:13.5px; color:rgba(255,255,255,.7); line-height:1.55; }
.demo-right { background:#fff; padding:72px 60px; display:flex; align-items:flex-start; }
.demo-form { width:100%; }
.demo-form h2 { font-family:'DM Serif Display',serif; font-size:28px; color:var(--ink); margin-bottom:8px; }
.demo-form .sub { font-size:14px; color:var(--ink-3); margin-bottom:32px; line-height:1.6; }
.demo-submit { width:100%; padding:14px; background:var(--pop); color:#fff; border:none; border-radius:var(--radius-sm); font-size:16px; font-weight:600; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; }
.demo-submit:hover { background:#c9593e; }
@media(max-width:900px){
  .demo-layout { grid-template-columns:1fr; }
  .demo-left  { padding:48px 24px; order:2; position:static; min-height:unset; }
  .demo-right { padding:48px 24px; order:1; }
}

/* ─── PEO / MANAGED SERVICES ─────────── */
.peo-card {
  background: linear-gradient(135deg, var(--surface-2) 0%, #f0fdf4 100%);
  border: 1.5px solid var(--brand-lite);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 32px;
}
.peo-tag {
  display: inline-flex; align-items: center;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 40px; margin-bottom: 18px;
}
.peo-left h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px,2.5vw,30px); line-height: 1.25;
  letter-spacing: -.02em; color: var(--ink); margin-bottom: 16px;
}
.peo-left h3 em { font-style: italic; color: var(--brand); }
.peo-intro { font-size: 15px; color: var(--ink-3); line-height: 1.75; }
.peo-covers { margin-top: 24px; }
.peo-right { display: flex; flex-direction: column; }
.peo-team-label {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--brand); margin-bottom: 20px;
}
.expert-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.expert-item { display: flex; gap: 14px; align-items: flex-start; }
.expert-icon {
  font-size: 22px; width: 44px; height: 44px; border-radius: 10px;
  background: var(--surface); border: 1px solid var(--surface-3);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.expert-text { display: flex; flex-direction: column; gap: 3px; }
.expert-text strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.expert-text span { font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.peo-trust-band {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 12px; padding: 20px; background: var(--brand);
  border-radius: var(--radius-md); text-align: center; margin-top: auto;
}
.peo-trust-num { font-size: 22px; font-weight: 800; color: #fff; font-family: 'DM Serif Display', serif; }
.peo-trust-label { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 2px; }
.services-sub-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.service-tile {
  background: var(--surface); border: 1.5px solid var(--surface-3);
  border-radius: var(--radius-lg); padding: 28px 26px;
  display: flex; gap: 16px; transition: border-color .2s, box-shadow .2s;
}
.service-tile:hover { border-color: var(--brand-lite); box-shadow: var(--shadow-md); }
.service-tile-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.service-tile-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.service-tile-body p { font-size: 13.5px; color: var(--ink-3); line-height: 1.65; margin-bottom: 12px; }
@media(max-width:1024px){
  .peo-card { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .services-sub-grid { grid-template-columns: 1fr; }
}
@media(max-width:680px){
  .peo-card { padding: 24px; }
  .peo-trust-band { gap: 8px; padding: 14px; }
  .peo-trust-num { font-size: 18px; }
  .service-tile { flex-direction: column; gap: 12px; padding: 20px; }
}

/* Styles from signup.html */
.auth-layout { min-height:100vh; display:grid; grid-template-columns:1fr 1fr; }
.auth-left { background:var(--brand); color:#fff; padding:60px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.auth-left::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 80% 60% at 20% 80%, rgba(82,183,136,.25) 0%, transparent 60%); pointer-events:none; }
.auth-brand { display:flex; align-items:center; gap:10px; font-family:'DM Serif Display',serif; font-size:24px; color:#fff; position:relative; }
.auth-brand-mark { width:38px; height:38px; border-radius:9px; background:rgba(255,255,255,.2); display:flex; align-items:center; justify-content:center; font-size:18px; }
.auth-headline { position:relative; }
.auth-headline h2 { font-family:'DM Serif Display',serif; font-size:clamp(28px,3vw,40px); line-height:1.2; letter-spacing:-.025em; margin-bottom:18px; }
.auth-headline h2 em { font-style:italic; color:var(--accent); }
.auth-headline p { font-size:16px; color:rgba(255,255,255,.75); line-height:1.7; }
.auth-perks { list-style:none; display:flex; flex-direction:column; gap:12px; position:relative; }
.auth-perks li { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:rgba(255,255,255,.9); }
.auth-perks li::before { content:'✓'; background:rgba(255,255,255,.2); width:22px; height:22px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; font-weight:700; flex-shrink:0; margin-top:1px; }
.auth-testi { background:rgba(255,255,255,.1); border-radius:var(--radius-md); padding:20px; position:relative; }
.auth-testi p { font-size:14px; color:rgba(255,255,255,.85); font-style:italic; line-height:1.65; margin-bottom:12px; }
.auth-testi-author { font-size:13px; color:rgba(255,255,255,.6); }

.auth-right { background:#fff; padding:60px; display:flex; align-items:center; justify-content:center; }
.auth-form-wrap { width:100%; max-width:420px; }
.auth-form-wrap h2 { font-family:'DM Serif Display',serif; font-size:30px; color:var(--ink); margin-bottom:6px; letter-spacing:-.02em; }
.auth-form-wrap .sub { font-size:15px; color:var(--ink-3); margin-bottom:32px; }
.auth-form-wrap .sub a { color:var(--brand); font-weight:600; }
.social-btn { display:flex; align-items:center; justify-content:center; gap:10px; width:100%; padding:12px; border:1.5px solid var(--surface-3); border-radius:var(--radius-sm); font-size:14.5px; font-weight:500; color:var(--ink-2); background:#fff; cursor:pointer; transition:all .2s; margin-bottom:10px; }
.social-btn:hover { border-color:var(--brand); color:var(--brand); background:var(--surface-2); }
.divider { display:flex; align-items:center; gap:14px; margin:24px 0; }
.divider::before, .divider::after { content:''; flex:1; height:1px; background:var(--surface-3); }
.divider span { font-size:13px; color:var(--ink-3); white-space:nowrap; }
.auth-submit { width:100%; padding:14px; background:var(--brand); color:#fff; border:none; border-radius:var(--radius-sm); font-size:16px; font-weight:600; cursor:pointer; transition:background .2s; font-family:'DM Sans',sans-serif; margin-top:4px; }
.auth-submit:hover { background:var(--brand-mid); }
.auth-terms { font-size:12.5px; color:var(--ink-3); text-align:center; margin-top:16px; line-height:1.6; }
.auth-terms a { color:var(--brand); }
.strength-bar { height:4px; border-radius:2px; background:var(--surface-3); margin-top:6px; overflow:hidden; }
.strength-fill { height:100%; border-radius:2px; background:var(--brand-lite); transition:width .3s; width:0%; }
@media(max-width:900px){ .auth-layout { grid-template-columns:1fr; } .auth-left { display:none; } .auth-right { padding:40px 24px; } }

/* ─── SQUARED FEATURE CARDS ────────────────────────── */
.sq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.sq-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  align-items: stretch;
}
.sq-feature-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.03);
  transition: all 0.22s ease;
  height: 100%;
  box-sizing: border-box;
}
.sq-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
  border-color: #cbd5e1;
}
.sq-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #f0fdf4;
  color: #166534;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.sq-subtag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
  margin-bottom: 4px;
}
.sq-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink, #111827);
  margin: 0 0 8px 0;
  line-height: 1.35;
}
.sq-desc {
  font-size: 13.5px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.sq-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 36px 0 18px 0;
  padding-bottom: 8px;
  border-bottom: 1.5px solid #e5e7eb;
}
.sq-category-header h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--brand, #052e16);
  margin: 0;
}
.sq-category-header:first-of-type {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .sq-grid,
  .sq-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .sq-grid,
  .sq-grid-4 {
    grid-template-columns: 1fr;
  }
  .sq-feature-card {
    padding: 20px;
  }
}
/* ── Hero specific ── */
.hero {
  background:var(--surface-2); min-height:calc(100vh - var(--nav-h) - 38px);
  display:flex; align-items:center; position:relative; overflow:hidden; padding:80px 0 60px;
}
.hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 60% at 80% 50%, rgba(27,67,50,.06) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 15% 80%, rgba(212,168,83,.07) 0%, transparent 60%);
  pointer-events:none;
}
.hero-ring { position:absolute; border-radius:50%; border:1px solid rgba(27,67,50,.1); pointer-events:none; }
.hero-ring-1 { width:500px;height:500px;right:-120px;top:-100px; animation:float 8s ease-in-out infinite; }
.hero-ring-2 { width:280px;height:280px;right:60px;top:60px;   animation:float 10s ease-in-out infinite reverse; }
.hero-inner { max-width:1180px;margin:0 auto;padding:0 40px; display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;position:relative;z-index:1; }
.hero-kicker { display:inline-flex;align-items:center;gap:8px;background:var(--accent-2);color:var(--brand);font-size:12px;font-weight:600;letter-spacing:.07em;text-transform:uppercase;padding:6px 14px;border-radius:40px;margin-bottom:22px; }
.hero-kicker span { color:var(--accent); }
.hero h1 { font-family:'DM Serif Display',serif;font-size:clamp(38px,4.5vw,60px);line-height:1.1;letter-spacing:-.025em;color:var(--ink);margin-bottom:22px; }
.hero h1 em { font-style:italic;color:var(--brand); }
.hero-sub { font-size:17px;color:var(--ink-3);line-height:1.7;max-width:460px;margin-bottom:36px; }
.hero-actions { display:flex;align-items:center;gap:14px;flex-wrap:wrap;margin-bottom:36px; }
.hero-proof { display:flex;align-items:center;gap:12px;font-size:13px;color:var(--ink-3); }
.avatar-stack { display:flex; }
.avatar-stack div { width:32px;height:32px;border-radius:50%;border:2.5px solid #fff;margin-left:-8px;background:var(--brand);color:#fff;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:600; }
.avatar-stack div:first-child { margin-left:0; }

/* Dashboard mockup */
.dash-wrap { position:relative; animation:fadeUp .7s .2s ease both; }
.float-badge { position:absolute;background:#fff;border-radius:var(--radius-md);box-shadow:var(--shadow-md);padding:10px 14px;display:flex;align-items:center;gap:8px;font-size:12.5px;font-weight:500;color:var(--ink);white-space:nowrap;animation:float 5s ease-in-out infinite; }
.float-badge-icon { font-size:18px; }
.fb-1 { top:-18px;right:20px; }
.fb-2 { bottom:28px;left:-20px;animation-delay:1.8s; }
.dashboard { background:#fff;border-radius:var(--radius-lg);box-shadow:var(--shadow-lg);overflow:hidden;border:1px solid rgba(0,0,0,.07); }
.db-bar { background:var(--brand);padding:14px 20px;display:flex;align-items:center;gap:10px; }
.db-dots { display:flex;gap:6px; }
.db-dots span { width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,.3); }
.db-title { font-size:13px;font-weight:600;color:rgba(255,255,255,.85);margin-left:6px; }
.db-body { padding:18px;display:grid;grid-template-columns:1fr 1fr;gap:12px; }
.db-card { background:var(--surface-2);border-radius:var(--radius-md);padding:15px; }
.db-full { grid-column:span 2; }
.db-label { font-size:11px;font-weight:600;text-transform:uppercase;letter-spacing:.08em;color:var(--ink-3);margin-bottom:5px; }
.db-val { font-size:24px;font-weight:600;color:var(--ink); }
.db-sub { font-size:12px;color:var(--ink-3);margin-top:3px; }
.db-badge { display:inline-block;font-size:11px;font-weight:600;padding:3px 8px;border-radius:20px;margin-top:6px; }
.db-green { background:#dcfce7;color:#166534; } .db-blue { background:#dbeafe;color:#1d4ed8; }
.mini-bars { display:flex;align-items:flex-end;gap:4px;height:44px;margin-top:10px; }
.mini-bar { flex:1;border-radius:3px 3px 0 0;background:var(--brand-lite);opacity:.4; }
.mini-bar.hi { opacity:1;background:var(--brand); }
.emp-row { display:flex;align-items:center;gap:10px;padding:7px 0;border-bottom:1px solid var(--surface-3); }
.emp-row:last-child { border-bottom:none; }
.emp-av { width:28px;height:28px;border-radius:50%;background:var(--brand);color:#fff;font-size:11px;font-weight:600;display:flex;align-items:center;justify-content:center;flex-shrink:0; }
.emp-name { font-size:12.5px;font-weight:500; }
.emp-role { font-size:11px;color:var(--ink-3); }
.emp-amt { margin-left:auto;font-size:13px;font-weight:600;color:var(--brand); }

@media(max-width:1024px){ .hero-inner { grid-template-columns:1fr; } .dash-wrap { display:none; } }
@media(max-width:680px){ .hero-inner { padding:0 20px; } }

/* ── PEO / Managed Services ── */
.peo-card {
  background: linear-gradient(135deg, var(--surface-2) 0%, #f0fdf4 100%);
  border: 1.5px solid var(--brand-lite);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin-bottom: 32px;
}
.peo-tag {
  display: inline-flex;
  align-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 18px;
}
.peo-left h3 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.25;
  letter-spacing: -.02em;
  color: var(--ink);
  margin-bottom: 16px;
}
.peo-left h3 em { font-style: italic; color: var(--brand); }
.peo-intro { font-size: 15px; color: var(--ink-3); line-height: 1.75; }
.peo-covers { margin-top: 24px; }
.peo-right { display: flex; flex-direction: column; gap: 0; }
.peo-team-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--brand);
  margin-bottom: 20px;
}
.expert-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.expert-item { display: flex; gap: 14px; align-items: flex-start; }
.expert-icon {
  font-size: 22px;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.expert-text { display: flex; flex-direction: column; gap: 3px; }
.expert-text strong { font-size: 14px; font-weight: 600; color: var(--ink); }
.expert-text span { font-size: 13px; color: var(--ink-3); line-height: 1.6; }
.peo-trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: var(--brand);
  border-radius: var(--radius-md);
  text-align: center;
  margin-top: auto;
}
.peo-trust-num { font-size: 22px; font-weight: 800; color: #fff; font-family: 'DM Serif Display', serif; }
.peo-trust-label { font-size: 11px; color: rgba(255,255,255,.65); margin-top: 2px; }

/* Supporting services sub-grid */
.services-sub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-tile {
  background: var(--surface);
  border: 1.5px solid var(--surface-3);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex;
  gap: 16px;
  transition: border-color .2s, box-shadow .2s;
}
.service-tile:hover { border-color: var(--brand-lite); box-shadow: var(--shadow-md); }
.service-tile-icon { font-size: 26px; flex-shrink: 0; margin-top: 2px; }
.service-tile-body h4 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.service-tile-body p { font-size: 13.5px; color: var(--ink-3); line-height: 1.65; margin-bottom: 12px; }

@media(max-width:1024px) {
  .peo-card { grid-template-columns: 1fr; gap: 36px; padding: 32px; }
  .services-sub-grid { grid-template-columns: 1fr; }
}
@media(max-width:680px) {
  .peo-card { padding: 24px; }
  .peo-trust-band { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 14px; }
  .peo-trust-num { font-size: 18px; }
}

/* ── Mobile Spacing Refinements (Mobile only, desktop untouched) ── */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 48px 0 44px;
  }
  .hero-inner {
    padding: 0 20px;
    gap: 20px;
  }
  .hero-kicker {
    margin-bottom: 16px;
    padding: 6px 14px;
    font-size: 11.5px;
  }
  .hero h1 {
    font-size: clamp(28px, 7.5vw, 38px);
    margin-bottom: 16px;
    line-height: 1.15;
  }
  .hero-sub {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }
  .hero-actions {
    margin-bottom: 24px;
    gap: 12px;
  }
  .hero-proof {
    gap: 12px;
    font-size: 12.5px;
  }
  .page-hero {
    padding: 48px 0 36px;
  }
  .page-hero h1 {
    font-size: clamp(26px, 6.5vw, 36px);
    margin-bottom: 14px;
  }
  .page-hero p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .section {
    padding: 52px 0;
  }
  .section-sm {
    padding: 32px 0;
  }
  .section-head {
    margin-bottom: 28px;
  }
  .split {
    gap: 36px;
  }
  .peo-card {
    padding: 28px 20px;
    gap: 28px;
  }
  .stats-band {
    gap: 20px;
  }
  .testi-card {
    padding: 28px 20px !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 42px 0 38px;
  }
  .hero-inner {
    padding: 0 18px;
  }
  .hero h1 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 14.5px;
    margin-bottom: 20px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 20px;
  }
  .hero-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .section {
    padding: 44px 0;
  }
}

/* ─── CASE STUDIES & BLOG HUB DETAIL STYLES ─── */
.breadcrumbs-bar { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--ink-3); margin-bottom: 24px; flex-wrap: wrap; }
.breadcrumbs-bar a { color: var(--ink-3); text-decoration: none; transition: color .2s; }
.breadcrumbs-bar a:hover { color: var(--brand); }
.bc-sep { color: var(--surface-3); }
.bc-curr { color: var(--brand); font-weight: 600; }

.article-hero-section { padding: 48px 0 32px; }
.article-badge-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.story-type-badge { font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 4px 12px; border-radius: 30px; }
.badge-case { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; }
.badge-blog { background: #e0f2fe; color: #0369a1; border: 1px solid #bae6fd; }
.story-industry-badge { font-size: 12px; font-weight: 600; color: var(--ink-3); background: var(--surface-2); padding: 4px 12px; border-radius: 30px; border: 1px solid var(--surface-3); }
.story-read-badge { font-size: 12px; color: var(--ink-3); font-weight: 500; }

.article-title { font-family: 'DM Serif Display', serif; font-size: clamp(28px, 4vw, 44px); line-height: 1.22; color: var(--ink); margin-bottom: 16px; }
.article-subtitle { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--ink-3); margin-bottom: 28px; }

.article-author-bar { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--surface-3); }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; flex-shrink: 0; }
.author-name { font-size: 15px; font-weight: 700; color: var(--ink); }
.author-role { font-size: 13px; color: var(--ink-3); }

.article-featured-img-wrap { width: 100%; max-height: 480px; height: auto; border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.article-featured-img { width: 100%; height: 100%; max-height: 480px; object-fit: cover; display: block; }
.hero-stat-floating-card { position: absolute; bottom: 20px; right: 20px; background: rgba(27, 67, 50, 0.95); backdrop-filter: blur(8px); color: #fff; padding: 18px 24px; border-radius: var(--radius-md); box-shadow: 0 10px 25px rgba(0,0,0,0.25); border: 1px solid rgba(255,255,255,0.15); }
.stat-floating-num { font-size: 32px; font-weight: 700; font-family: 'DM Serif Display', serif; color: var(--accent); line-height: 1.1; }
.stat-floating-label { font-size: 12px; color: rgba(255,255,255,0.85); font-weight: 500; margin-top: 4px; }

.article-block { margin-bottom: 40px; }
.highlight-summary-box { background: var(--surface-2); border-left: 4px solid var(--brand); padding: 28px 32px; border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.section-subheading { font-family: 'DM Serif Display', serif; font-size: 24px; color: var(--ink); margin-bottom: 12px; }
.article-lead-p { font-size: 17px; line-height: 1.75; color: var(--ink); }
.article-body-p { font-size: 16px; line-height: 1.8; color: var(--ink-2, #374151); margin-top: 10px; }
.article-heading-2 { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--ink); margin: 8px 0 14px; line-height: 1.3; }

.block-tag-pill { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 20px; margin-bottom: 8px; }
.challenge-tag { background: #fee2e2; color: #991b1b; }
.solution-tag { background: #e0e7ff; color: #3730a3; }
.results-tag { background: #dcfce7; color: #166534; }

.results-card-box { background: #fff; border: 1.5px solid var(--surface-3); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.results-grid-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
@media(max-width: 640px) { .results-grid-list { grid-template-columns: 1fr; } }
.result-metric-item { display: flex; align-items: flex-start; gap: 12px; background: var(--surface-2); padding: 14px 18px; border-radius: var(--radius-sm); border: 1px solid var(--surface-3); }
.result-check-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--brand); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.result-text { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.5; }

.article-quote-card { background: linear-gradient(135deg, var(--surface-2) 0%, #fff 100%); border-left: 4px solid var(--accent); padding: 28px 32px; border-radius: var(--radius-md); margin: 40px 0; position: relative; }
.quote-marks { font-size: 54px; font-family: 'DM Serif Display', serif; line-height: 1; color: var(--accent); opacity: 0.6; position: absolute; top: 12px; left: 16px; }
.quote-text { font-size: 17px; font-style: italic; line-height: 1.75; color: var(--ink); margin-bottom: 14px; position: relative; z-index: 1; padding-left: 20px; }
.quote-author-info { font-size: 14px; color: var(--ink-3); padding-left: 20px; position: relative; z-index: 1; }

.takeaways-box { background: #f8fafc; border: 1.5px solid #e2e8f0; border-radius: var(--radius-lg); padding: 32px; }
.takeaways-list { list-style: none; padding: 0; margin: 16px 0 0; display: flex; flex-direction: column; gap: 14px; }
.takeaways-list li { font-size: 15px; line-height: 1.65; color: var(--ink-2, #334155); }

.article-cta-banner { background: var(--brand); color: #fff; border-radius: var(--radius-lg); padding: 48px; text-align: center; margin-top: 48px; position: relative; overflow: hidden; }
.article-cta-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 10% 20%, rgba(82,183,136,0.2) 0%, transparent 60%); pointer-events: none; }
.article-cta-banner h3 { font-family: 'DM Serif Display', serif; font-size: clamp(22px, 3vw, 30px); color: #fff; margin-bottom: 12px; position: relative; }
.article-cta-banner p { font-size: 15.5px; color: rgba(255,255,255,0.85); max-width: 620px; margin: 0 auto 24px; line-height: 1.6; position: relative; }
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; padding: 12px 24px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.filter-btn { font-size: 13.5px; font-weight: 600; padding: 8px 18px; border-radius: 40px; border: 1.5px solid var(--surface-3); background: var(--surface); color: var(--ink-3); cursor: pointer; transition: all .2s; font-family: inherit; }
.filter-btn:hover { border-color: var(--brand); color: var(--brand); }
.filter-btn.active { background: var(--brand); color: #fff; border-color: var(--brand); }
