/* ================================
   CSS VARIABLES
================================ */
:root {
  --bg: #F7F4EE;            /* Brand: Paper */
  --bg-dark: #0B1B14;       /* Brand: Ink */
  --text: #0B1B14;          /* Brand: Ink */
  --text-light: #4F5F57;    /* Muted ink for body secondary */
  --text-muted: #5E6A63;    /* Muted ink for tertiary */
  --accent: #0E8C5A;        /* Brand: Revive Green */
  --accent-light: #0A6E47;  /* Brand: Primary Deep (hover) */
  --border: #E1DCD2;        /* Warm border on Paper */
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --max: 1200px;
  --ease: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ================================
   RESET
================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: clip; }
img, video, iframe, table { max-width: 100%; height: auto; }

/* ---------- PAGE ANIMATION ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

/* ================================
   NAV
================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(248,245,240,0.93); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 68px; padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow 0.3s ease;
}
.nav-logo { font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: -0.02em; cursor: pointer; color: var(--text); text-decoration: none; user-select: none; display: inline-flex; align-items: center; gap: 2px; }
.nav-logo span { color: var(--accent); font-weight: 400; font-style: italic; }
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; color: var(--text-light); text-decoration: none; transition: var(--ease); cursor: pointer; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-cta { background: var(--text) !important; color: var(--bg) !important; padding: 10px 20px; border-radius: 2px; font-size: 0.76rem !important; }
.nav-cta:hover { background: var(--accent) !important; color: #fff !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: 0; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--ease); }
.mobile-menu { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--bg); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--font-display); font-size: 2.2rem; font-weight: 400; color: var(--text); text-decoration: none; cursor: pointer; }
main { padding-top: 68px; }

/* ================================
   UTILITIES
================================ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; }
.section { padding: 96px 40px; max-width: var(--max); margin: 0 auto; }
.section > .section-label,
.section > .section-title,
.section > .section-sub { text-align: center; }
.section > .section-title { margin-left: auto; margin-right: auto; max-width: 900px; }
.section > .section-sub { margin-left: auto; margin-right: auto; max-width: 720px; }
.section-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.section-title { font-family: var(--font-display); font-size: clamp(2.2rem, 3.8vw, 3.4rem); font-weight: 400; line-height: 1.12; letter-spacing: -0.025em; margin-bottom: 20px; }
.section-title em { font-style: italic; color: var(--text-light); }
.section-sub { font-size: 0.98rem; color: var(--text-light); max-width: 540px; line-height: 1.75; }
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 14px 28px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none; border-radius: 2px; cursor: pointer; transition: var(--ease); border: none; }
.btn-dark { background: var(--text); color: var(--bg); }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--text); }
.btn-ghost:hover { background: var(--text); color: var(--bg); }

/* ================================
   FOOTER
================================ */
footer { background: var(--bg-dark); padding: 64px 40px 28px; }
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 48px; }
.footer-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
.footer-logo span { color: var(--accent); font-weight: 400; font-style: italic; }
.footer-desc { font-size: 0.84rem; color: rgba(255,255,255,0.38); line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { font-size: 0.86rem; color: rgba(255,255,255,0.52); text-decoration: none; cursor: pointer; transition: var(--ease); }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 22px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.22); }

/* ================================
   CTA BANNER
================================ */
.cta-banner { background: var(--text); padding: 80px 40px; text-align: center; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(2rem, 3.6vw, 3.2rem); font-weight: 300; color: #fff; margin-bottom: 14px; letter-spacing: -0.02em; }
.cta-banner p { color: rgba(255,255,255,0.5); margin-bottom: 32px; font-size: 0.98rem; }
.cta-banner .btn { margin: 0 auto; }

/* ================================
   HOME PAGE
================================ */
.hero {
  min-height: calc(100vh - 68px); max-width: var(--max); margin: 0 auto;
  padding: 80px 40px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.hero-tag { display: inline-flex; align-items: center; gap: 9px; background: var(--border); padding: 6px 14px; border-radius: 100px; font-size: 0.73rem; font-weight: 500; color: var(--text-light); margin-bottom: 28px; }
.hero-dot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; animation: pulse 2.2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.35)} }
.hero-title { font-family: var(--font-display); font-size: clamp(3.2rem, 5.5vw, 5.8rem); font-weight: 300; line-height: 1.04; letter-spacing: -0.035em; margin-bottom: 24px; }
.hero-title strong { font-weight: 600; display: block; }
.hero-title em { font-style: italic; color: var(--text-light); }
.hero-desc { font-size: 1.02rem; color: var(--text-light); line-height: 1.78; max-width: 460px; margin-bottom: 36px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-visual { background: var(--bg-dark); border-radius: 4px; padding: 38px; position: relative; overflow: hidden; }
.hero-visual::before { content:''; position:absolute; top:-60px; right:-60px; width:200px; height:200px; background:radial-gradient(circle,rgba(14,140,90,.28) 0%,transparent 70%); border-radius:50%; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-bottom: 28px; }
.stat-num { font-family: var(--font-display); font-size: 2.9rem; font-weight: 300; color: #fff; letter-spacing: -0.04em; line-height: 1; }
.stat-num span { color: #6FE3B4; }
.stat-lbl { font-size: 0.74rem; color: rgba(255,255,255,.42); margin-top: 4px; }
.hero-graph { border-top: 1px solid rgba(255,255,255,.09); padding-top: 22px; }
.graph-lbl { font-size: 0.72rem; color: rgba(255,255,255,.32); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.graph-bars { display: flex; align-items: flex-end; gap: 5px; height: 68px; }
.graph-bar { flex: 1; background: rgba(255,255,255,.08); border-radius: 2px 2px 0 0; position: relative; overflow: hidden; }
.graph-bar-fill { position:absolute; bottom:0; left:0; right:0; background: linear-gradient(to top,var(--accent),var(--accent-light)); border-radius:2px 2px 0 0; transition:height 1.4s cubic-bezier(0.34,1.56,0.64,1); }

.trust-strip { background: var(--bg-dark); padding: 18px 40px; display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { font-size: 0.8rem; color: rgba(255,255,255,.52); }
.trust-item strong { color: #fff; }
.trust-div { color: rgba(255,255,255,.14); }

.fix-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); margin-top: 56px; }
.fix-card { background: var(--bg); padding: 38px 30px; transition: var(--ease); cursor: default; }
.fix-card:hover { background: var(--text); }
.fix-card:hover .fix-num, .fix-card:hover .fix-ttl, .fix-card:hover .fix-dsc { color: var(--bg) !important; }
.fix-num { font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; color: var(--border); line-height: 1; margin-bottom: 16px; transition: var(--ease); }
.fix-ttl { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; margin-bottom: 10px; transition: var(--ease); }
.fix-dsc { font-size: 0.86rem; color: var(--text-light); line-height: 1.72; transition: var(--ease); }

/* ================================
   HOME PACKAGES PREVIEW
================================ */
.pkgs-preview-wrap { background: var(--bg-dark); padding: 96px 40px; }
.pkgs-header { max-width: var(--max); margin: 0 auto 52px; display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.pkgs-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.pkg-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 34px 26px; transition: var(--ease); position: relative; }
.pkg-card:hover { border-color: var(--accent); background: rgba(14,140,90,.08); transform: translateY(-4px); }
.pkg-card.feat { border-color: var(--accent); background: rgba(14,140,90,.1); }
.pkg-badge { position:absolute; top:-11px; left:26px; background:var(--accent); color:#fff; font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; padding:4px 12px; border-radius:100px; }
.pkg-name { font-family: var(--font-display); font-size: 1.45rem; color: #fff; margin-bottom: 6px; }
.pkg-tag { font-size: 0.8rem; color: rgba(255,255,255,.38); margin-bottom: 20px; line-height: 1.5; }
.pkg-price { margin-bottom: 24px; }
.pkg-amt { font-family: var(--font-display); font-size: 2.7rem; font-weight: 300; color: #fff; letter-spacing: -0.04em; }
.pkg-per { font-size: 0.78rem; color: rgba(255,255,255,.36); margin-left: 3px; }
.pkg-feats { list-style: none; margin-bottom: 28px; }
.pkg-feats li { font-size: 0.83rem; color: rgba(255,255,255,.6); padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06); display: flex; gap: 9px; align-items: flex-start; }
.pkg-feats li::before { content:'✓'; color: var(--accent-light); font-weight:600; flex-shrink:0; }
.btn-pkg { width:100%; background:rgba(255,255,255,.07); color:#fff; border:1px solid rgba(255,255,255,.14); padding:14px; font-size:.88rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; border-radius:2px; transition:var(--ease); text-align:center; text-decoration:none; display:inline-block; }
.btn-pkg:hover, .feat .btn-pkg { background:var(--accent); border-color:var(--accent); }

/* ================================
   HOME PACKAGES SMALL GRID
================================ */
.home-pkgs-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.hpkg { background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:4px; padding:24px; display:flex; flex-direction:column; gap:0; transition:var(--ease); position:relative; }
.hpkg:hover { border-color:var(--accent); background:rgba(14,140,90,.08); transform:translateY(-3px); }
.hpkg-feat { border-color:var(--accent); background:rgba(14,140,90,.1); }
.hpkg-wide { grid-column:span 4; }
.hpkg-wide-inner { display:grid; grid-template-columns:1fr 1.2fr auto; gap:40px; align-items:center; margin-top:14px; }
.hpkg-wide-feats { flex:1; }
.hpkg-wide .btn-pkg { align-self:center; white-space:nowrap; min-width:160px; text-align:center; }
.hpkg-type { display:inline-block; font-size:.75rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; padding:5px 12px; border-radius:100px; margin-bottom:12px; width:fit-content; }
.hpkg-name { font-family:var(--font-display); font-size:1.55rem; color:#fff; margin-bottom:8px; font-weight:500; line-height:1.2; }
.hpkg-sub { font-size:.92rem; color:rgba(255,255,255,.5); line-height:1.6; margin-bottom:14px; max-width:320px; }
.hpkg-price { font-family:var(--font-display); font-size:2.4rem; font-weight:600; color:#fff; letter-spacing:-0.03em; margin-bottom:20px; }
.hpkg-price span:not(.js-price) { font-size:.95rem; color:rgba(255,255,255,.72); font-family:var(--font-body); font-weight:400; margin-left:3px; }
.hpkg-feats { list-style:none; margin-bottom:22px; flex:1; }
.hpkg-feats li { font-size:.88rem; color:rgba(255,255,255,.68); padding:8px 0; border-bottom:1px solid rgba(255,255,255,.06); display:flex; gap:10px; align-items:flex-start; line-height:1.5; }
.hpkg-feats li::before { content:'✓'; color:var(--accent-light); font-weight:700; flex-shrink:0; font-size:.82rem; margin-top:2px; }

/* ================================
   TESTIMONIALS
================================ */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 52px; }
.testi-card { background: #fff; border: 1px solid var(--border); padding: 30px; border-radius: 4px; }
.stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.95rem; }
.testi-text { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.62; color: var(--text); margin-bottom: 22px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar { width:42px; height:42px; border-radius:50%; background:var(--border); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.1rem; color:var(--text-light); flex-shrink:0; }
.a-name { font-size: 0.87rem; font-weight: 600; }
.a-role { font-size: 0.76rem; color: var(--text-muted); }

/* ================================
   SERVICES PAGE
================================ */
.svc-hero { background:var(--bg-dark); padding:80px 40px; text-align:center; }
.svc-hero h1 { font-family:var(--font-display); font-size:clamp(2.6rem,5vw,4.6rem); font-weight:300; color:#fff; letter-spacing:-0.03em; max-width:660px; margin:16px auto 22px; line-height:1.1; }
.svc-hero p { color:rgba(255,255,255,.45); max-width:480px; margin:0 auto; }

.pkgs-full { max-width:var(--max); margin:0 auto; padding:80px 40px; }
.billing-toggle { display:flex; align-items:center; justify-content:center; gap:12px; margin-bottom:52px; }
.tog-lbl { font-size:.84rem; font-weight:500; color:var(--text-muted); }
.tog-lbl.on { color:var(--text); }
.tog { width:44px; height:24px; background:var(--text); border-radius:12px; position:relative; cursor:pointer; flex-shrink:0; }
.tog::after { content:''; position:absolute; top:3px; left:3px; width:18px; height:18px; background:#fff; border-radius:50%; transition:transform .3s ease; }
.tog.annual::after { transform:translateX(20px); }
.save-pill { background:#22c55e; color:#fff; font-size:.72rem; font-weight:600; padding:3px 9px; border-radius:100px; }

.pkgs-full-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pfc { border:1px solid var(--border); border-radius:4px; overflow:hidden; transition:var(--ease); }
.pfc:hover { border-color:var(--accent); box-shadow:0 20px 60px rgba(0,0,0,.09); transform:translateY(-4px); }
.pfc.feat { border-color:var(--accent); }
.pfc-head { padding:30px 26px; background:#fff; border-bottom:1px solid var(--border); }
.pfc.feat .pfc-head { background:var(--text); }
.pfc-name { font-family:var(--font-display); font-size:1.55rem; font-weight:500; margin-bottom:5px; }
.pfc.feat .pfc-name { color:#fff; }
.pfc-tag { font-size:.8rem; color:var(--text-muted); margin-bottom:20px; line-height:1.5; }
.pfc.feat .pfc-tag { color:rgba(255,255,255,.42); }
.pfc-cur { font-size:1.3rem; vertical-align:super; }
.pfc-amt { font-family:var(--font-display); font-size:2.9rem; font-weight:300; letter-spacing:-0.04em; }
.pfc.feat .pfc-amt, .pfc.feat .pfc-cur { color:#fff; }
.pfc-per { font-size:.79rem; color:var(--text-muted); }
.pfc.feat .pfc-per { color:rgba(255,255,255,.4); }
.pfc-body { padding:26px; background:var(--bg); }
.pfc.feat .pfc-body { background:#1a1a1a; }
.pfc-sec-title { font-size:.72rem; font-weight:600; letter-spacing:.13em; text-transform:uppercase; color:var(--text-muted); margin-bottom:12px; margin-top:20px; }
.pfc.feat .pfc-sec-title { color:rgba(255,255,255,.28); }
.pfc-feats { list-style:none; margin-bottom:6px; }
.pfc-feats li { font-size:.84rem; color:var(--text-light); padding:8px 0; border-bottom:1px solid var(--border); display:flex; gap:9px; align-items:flex-start; }
.pfc.feat .pfc-feats li { color:rgba(255,255,255,.58); border-color:rgba(255,255,255,.07); }
.pfc-feats li::before { content:'✓'; color:var(--accent); font-weight:600; flex-shrink:0; margin-top:1px; }
.btn-pfc { width:100%; padding:14px; font-size:.8rem; font-weight:500; letter-spacing:.08em; text-transform:uppercase; cursor:pointer; border-radius:2px; transition:var(--ease); border:1px solid var(--text); background:transparent; color:var(--text); margin-top:24px; }
.btn-pfc:hover, .pfc.feat .btn-pfc { background:var(--accent); border-color:var(--accent); color:#fff; }

/* ================================
   PACKAGE TYPE CARDS
================================ */
.pkg-tabs-wrap { background:#fff; border-bottom:1px solid var(--border); position:sticky; top:68px; z-index:99; }
.pkg-tabs { max-width:var(--max); margin:0 auto; padding:0 40px; display:flex; gap:0; overflow-x:auto; scrollbar-width:none; }
.pkg-tabs::-webkit-scrollbar { display:none; }
.ptab { background:none; border:none; border-bottom:2px solid transparent; padding:16px 22px; font-family:var(--font-body); font-size:.78rem; font-weight:500; letter-spacing:.07em; text-transform:uppercase; color:var(--text-muted); cursor:pointer; white-space:nowrap; transition:var(--ease); }
.ptab:hover { color:var(--text); }
.ptab.active { color:var(--text); border-bottom-color:var(--text); }
.pkgs-type-wrap { max-width:var(--max); margin:0 auto; padding:64px 40px; }
.pkgs-type-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
.ptcard { border:1px solid var(--border); border-radius:6px; overflow:hidden; background:#fff; transition:var(--ease); display:flex; flex-direction:column; }
.ptcard:hover { box-shadow:0 24px 64px rgba(0,0,0,.1); transform:translateY(-4px); border-color:rgba(14,140,90,.4); }
.ptcard.feat { border-color:var(--accent); box-shadow:0 8px 40px rgba(14,140,90,.15); }
.ptcard.hide { display:none !important; }
.ptcard.wide-card { grid-column:span 2; }
.ptcard-top { background:var(--bg); padding:28px 28px 24px; border-bottom:1px solid var(--border); }
.feat-top { background:var(--bg-dark); border-bottom-color:rgba(255,255,255,.08); }
.wide-top { background:var(--bg-dark); border-bottom-color:rgba(255,255,255,.08); display:flex; align-items:flex-start; justify-content:space-between; gap:40px; }
.ptcard-type { display:inline-block; font-size:.72rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; padding:4px 12px; border-radius:100px; margin-bottom:10px; }
.onpage-type { background:#EFF6FF; color:#2563EB; }
.gsc-type { background:rgba(14,140,90,.15); color:var(--accent); }
.ecom-type { background:#F0FDF4; color:#16A34A; }
.local-type { background:#FFF7ED; color:#EA580C; }
.retainer-type { background:rgba(14,140,90,.15); color:var(--accent-light); }
.ptcard-name { font-family:var(--font-display); font-size:1.55rem; font-weight:500; margin-bottom:6px; }
.feat-top .ptcard-name, .wide-top .ptcard-name { color:#fff; }
.ptcard-sub { font-size:.83rem; color:var(--text-light); line-height:1.65; margin-bottom:16px; max-width:420px; }
.feat-top .ptcard-sub, .wide-top .ptcard-sub { color:rgba(255,255,255,.42); max-width:460px; }
.ptcard-price { display:flex; align-items:baseline; gap:3px; }
.ptcard-cur { font-size:1.2rem; color:var(--text); }
.feat-top .ptcard-cur, .wide-top .ptcard-cur { color:#fff; }
.ptcard-amt { font-family:var(--font-display); font-size:2.6rem; font-weight:300; color:var(--text); letter-spacing:-0.04em; }
.feat-top .ptcard-amt, .wide-top .ptcard-amt { color:#fff; }
.ptcard-freq { font-size:.78rem; color:var(--text-muted); margin-left:4px; }
.feat-top .ptcard-freq, .wide-top .ptcard-freq { color:rgba(255,255,255,.35); }
.wide-badges { display:flex; flex-wrap:wrap; gap:8px; flex-shrink:0; align-content:flex-start; padding-top:4px; }
.wb { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.12); color:rgba(255,255,255,.55); font-size:.72rem; padding:5px 12px; border-radius:100px; white-space:nowrap; }
.ptcard-body { padding:24px 28px; flex:1; display:flex; flex-direction:column; }
.wide-body { padding:28px; }
.wide-cols { display:grid; grid-template-columns:1fr 1fr; gap:36px; margin-bottom:28px; }
.ptcard-section { font-size:.72rem; font-weight:700; letter-spacing:.13em; text-transform:uppercase; color:var(--text-muted); margin:18px 0 8px; }
.ptcard-section:first-child { margin-top:0; }
.ptcard-feats { list-style:none; }
.ptcard-feats li { font-size:.83rem; color:var(--text-light); padding:7px 0; border-bottom:1px solid var(--border); display:flex; gap:9px; align-items:flex-start; line-height:1.5; }
.ptcard-feats li::before { content:'✓'; color:var(--accent); font-weight:700; flex-shrink:0; font-size:.82rem; margin-top:1px; }
.ptcard-btn { margin-top:22px; width:100%; padding:14px; font-family:var(--font-body); font-size:.8rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; cursor:pointer; border-radius:3px; transition:var(--ease); border:1px solid var(--border); background:transparent; color:var(--text); }
.ptcard-btn:hover { background:var(--text); color:#fff; border-color:var(--text); }
.feat-btn { background:var(--accent); border-color:var(--accent); color:#fff; }
.feat-btn:hover { background:#0A6E47; border-color:#0A6E47; }

/* ================================
   COMPARE TABLE
================================ */
.compare-wrap { background:var(--bg); padding:80px 40px; border-top:1px solid var(--border); }
.compare-inner { max-width:var(--max); margin:0 auto; }
.compare-scroll { overflow-x:auto; margin-top:44px; border-radius:4px; border:1px solid var(--border); }
.compare-table { width:100%; border-collapse:collapse; min-width:700px; }
.compare-table th { font-size:.75rem; font-weight:600; letter-spacing:.07em; text-transform:uppercase; padding:16px; background:var(--text); color:rgba(255,255,255,.7); text-align:center; border-right:1px solid rgba(255,255,255,.08); }
.compare-table th:first-child { text-align:left; color:rgba(255,255,255,.5); }
.compare-table th small { display:block; font-size:.7rem; color:rgba(255,255,255,.4); font-weight:400; margin-top:3px; letter-spacing:0; text-transform:none; }
.compare-table th.feat-col { background:var(--accent); color:#fff; }
.compare-table th.feat-col small { color:rgba(255,255,255,.65); }
.compare-table td { font-size:.84rem; padding:13px 16px; border-bottom:1px solid var(--border); text-align:center; color:#22c55e; font-weight:600; }
.compare-table td:first-child { text-align:left; color:var(--text); font-weight:500; }
.compare-table td.feat-col { background:rgba(14,140,90,.04); }
.compare-table tr:last-child td { border-bottom:none; }
.compare-table tr:hover td { background:rgba(0,0,0,.02); }
.compare-table td.na { color:var(--border); font-weight:400; }

/* ================================
   PROCESS STEPS
================================ */
.process-wrap { background:var(--bg-dark); padding:96px 40px; }
.process-inner { max-width:var(--max); margin:0 auto; }
.process-steps { display:grid; grid-template-columns:repeat(5,1fr); gap:0; margin-top:56px; position:relative; }
.process-steps::before { content:''; position:absolute; top:19px; left:10%; right:10%; height:1px; background:rgba(255,255,255,.09); }
.process-step { text-align:center; padding:0 14px; }
.p-num { width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.14); display:flex; align-items:center; justify-content:center; font-size:.78rem; color:var(--accent-light); font-weight:600; margin:0 auto 18px; position:relative; z-index:1; }
.p-title { font-family:var(--font-display); font-size:1.05rem; font-weight:500; color:#fff; margin-bottom:8px; }
.p-desc { font-size:.78rem; color:rgba(255,255,255,.38); line-height:1.62; }

/* ================================
   ABOUT PAGE
================================ */
.about-grid { max-width:var(--max); margin:0 auto; padding:80px 40px; display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:start; }
.about-img { background:var(--bg-dark); border-radius:4px; aspect-ratio:auto; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:14px; color:rgba(255,255,255,.18); font-size:.76rem; letter-spacing:.1em; text-transform:uppercase; position:sticky; top:88px; overflow:visible; padding:32px; }
.about-img::after { content:''; position:absolute; bottom:-80px; right:-80px; width:240px; height:240px; background:radial-gradient(circle,rgba(14,140,90,.18) 0%,transparent 70%); }
.about-icon { width:56px; height:56px; border:1px solid rgba(255,255,255,.1); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:1.4rem; }
.about-content h1 { font-family:var(--font-display); font-size:clamp(2.4rem,4vw,3.7rem); font-weight:300; line-height:1.1; letter-spacing:-0.03em; margin-bottom:22px; }
.about-content p { color:var(--text-light); line-height:1.82; margin-bottom:18px; font-size:.95rem; }
.metrics-row { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin:40px 0; }
.metric { text-align:center; padding:22px 16px; background:#fff; border:1px solid var(--border); border-radius:4px; }
.m-num { font-family:var(--font-display); font-size:2.4rem; font-weight:300; letter-spacing:-0.04em; }
.m-num span { color:var(--accent); }
.m-lbl { font-size:.72rem; color:var(--text-muted); margin-top:4px; }

.tools-wrap { background:#fff; padding:80px 40px; border-top:1px solid var(--border); }
.tools-chips { max-width:var(--max); margin:44px auto 0; display:flex; flex-wrap:wrap; gap:10px; }
.chip { background:var(--bg); border:1px solid var(--border); padding:7px 17px; border-radius:100px; font-size:.8rem; color:var(--text-light); font-weight:500; transition:var(--ease); cursor:default; }
.chip:hover { border-color:var(--accent); color:var(--accent); }

/* ================================
   CASE STUDIES PAGE
================================ */
.results-hero { background:var(--bg-dark); padding:80px 40px; text-align:center; }
.results-hero h1 { font-family:var(--font-display); font-size:clamp(2.6rem,5vw,4.6rem); font-weight:300; color:#fff; letter-spacing:-0.03em; max-width:660px; margin:16px auto 20px; }
.results-hero p { color:rgba(255,255,255,.4); max-width:460px; margin:0 auto; }

.cases-grid { max-width:var(--max); margin:0 auto; padding:80px 40px; display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.case-card { background:#fff; border:1px solid var(--border); border-radius:4px; overflow:hidden; transition:var(--ease); }
.case-card:hover { box-shadow:0 20px 60px rgba(0,0,0,.09); transform:translateY(-4px); border-color:var(--accent); }
.case-card.wide { grid-column:span 2; }
.case-head { background:var(--bg-dark); padding:36px 36px; display:flex; align-items:flex-start; justify-content:space-between; gap:24px; }
.case-card.wide .case-head { padding:44px; }
.case-ind { display:inline-block; background:rgba(14,140,90,.2); color:var(--accent-light); font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; padding:4px 11px; border-radius:100px; margin-bottom:11px; }
.case-title { font-family:var(--font-display); font-size:1.55rem; font-weight:400; color:#fff; margin-bottom:6px; }
.case-card.wide .case-title { font-size:1.9rem; }
.case-subtitle { font-size:.82rem; color:rgba(255,255,255,.38); }
.case-metrics { display:flex; gap:28px; flex-shrink:0; }
.cm { text-align:center; }
.cm-num { font-family:var(--font-display); font-size:2.1rem; font-weight:300; color:var(--accent-light); letter-spacing:-0.04em; line-height:1; }
.cm-lbl { font-size:.72rem; color:rgba(255,255,255,.32); letter-spacing:.07em; margin-top:3px; }
.case-body { padding:28px 32px; }
.case-section { font-size:.72rem; font-weight:600; letter-spacing:.13em; text-transform:uppercase; color:var(--text-muted); margin-bottom:9px; }
.case-body p { font-size:.86rem; color:var(--text-light); line-height:1.72; margin-bottom:18px; }
.case-tags { display:flex; flex-wrap:wrap; gap:7px; }
.ctag { background:var(--bg); border:1px solid var(--border); padding:4px 11px; border-radius:100px; font-size:.73rem; color:var(--text-light); }

/* ================================
   BLOG PAGE
================================ */
.blog-hero { background:var(--bg-dark); padding:80px 40px; text-align:center; }
.blog-hero h1 { font-family:var(--font-display); font-size:clamp(2.4rem,5vw,4rem); font-weight:300; color:#fff; letter-spacing:-0.03em; max-width:580px; margin:14px auto 0; }
.blog-grid { max-width:var(--max); margin:0 auto; padding:80px 40px; display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card { border:1px solid var(--border); border-radius:4px; overflow:hidden; background:#fff; transition:var(--ease); }
.blog-card:hover { box-shadow:0 18px 56px rgba(0,0,0,.08); transform:translateY(-4px); border-color:var(--accent); }
.blog-card.wide { grid-column:span 2; }
.blog-img { background:var(--bg-dark); height:200px; display:flex; flex-direction:column; align-items:center; justify-content:center; color:rgba(255,255,255,.5); font-size:.72rem; letter-spacing:.1em; text-transform:uppercase; position:relative; overflow:hidden; }
.blog-card.wide .blog-img { height:260px; }
.blog-img .img-icon { font-size:3.2rem; margin-bottom:10px; filter:drop-shadow(0 4px 12px rgba(0,0,0,.3)); position:relative; z-index:1; }
.blog-img .img-label { font-size:.72rem; font-weight:600; letter-spacing:.14em; color:rgba(255,255,255,.45); position:relative; z-index:1; }
.blog-img::before { content:''; position:absolute; width:200px; height:200px; border-radius:50%; opacity:.15; z-index:0; }
.blog-img::after { content:''; position:absolute; width:120px; height:120px; border-radius:50%; opacity:.1; z-index:0; }

/* Algorithm Updates — warm gold */
.blog-img.img-algorithm { background:linear-gradient(160deg, #0f0d08 0%, #1a1408 40%, #231a08 100%); }
.blog-img.img-algorithm::before { background:radial-gradient(circle, #0E8C5A, transparent 70%); top:-40px; right:-40px; }
.blog-img.img-algorithm::after { background:radial-gradient(circle, #16A368, transparent 70%); bottom:-30px; left:-20px; }
.blog-img.img-algorithm .img-icon { color:#16A368; }

/* Technical SEO — cool blue */
.blog-img.img-technical { background:linear-gradient(160deg, #080c14 0%, #0a1525 40%, #0d1a30 100%); }
.blog-img.img-technical::before { background:radial-gradient(circle, #2563EB, transparent 70%); top:-50px; right:-30px; }
.blog-img.img-technical::after { background:radial-gradient(circle, #3b82f6, transparent 70%); bottom:-40px; left:-40px; }
.blog-img.img-technical .img-icon { color:#60a5fa; }

/* Local SEO — warm orange */
.blog-img.img-local { background:linear-gradient(160deg, #0f0a06 0%, #1a0f08 40%, #241408 100%); }
.blog-img.img-local::before { background:radial-gradient(circle, #EA580C, transparent 70%); top:-40px; left:-40px; }
.blog-img.img-local::after { background:radial-gradient(circle, #f97316, transparent 70%); bottom:-30px; right:-30px; }
.blog-img.img-local .img-icon { color:#fb923c; }

/* E-commerce — green */
.blog-img.img-ecommerce { background:linear-gradient(160deg, #060f08 0%, #081a0c 40%, #0a2410 100%); }
.blog-img.img-ecommerce::before { background:radial-gradient(circle, #16A34A, transparent 70%); top:-30px; right:-50px; }
.blog-img.img-ecommerce::after { background:radial-gradient(circle, #22c55e, transparent 70%); bottom:-40px; left:-30px; }
.blog-img.img-ecommerce .img-icon { color:#4ade80; }

/* Strategy — purple */
.blog-img.img-strategy { background:linear-gradient(160deg, #0d0814 0%, #150a20 40%, #1c0e2a 100%); }
.blog-img.img-strategy::before { background:radial-gradient(circle, #7c3aed, transparent 70%); top:-40px; left:-30px; }
.blog-img.img-strategy::after { background:radial-gradient(circle, #a78bfa, transparent 70%); bottom:-30px; right:-40px; }
.blog-img.img-strategy .img-icon { color:#a78bfa; }
.blog-glow { position:absolute; width:160px; height:160px; border-radius:50%; background:radial-gradient(circle,rgba(14,140,90,.28) 0%,transparent 70%); }
.blog-content { padding:26px; }
.blog-meta { display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.blog-cat { font-size:.72rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; color:var(--accent); }
.blog-date { font-size:.73rem; color:var(--text-muted); }
.blog-title { font-family:var(--font-display); font-size:1.25rem; font-weight:500; line-height:1.3; margin-bottom:10px; }
.blog-card.wide .blog-title { font-size:1.55rem; }
.blog-exc { font-size:.83rem; color:var(--text-light); line-height:1.72; margin-bottom:18px; }
.blog-more { font-size:.76rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--text); text-decoration:none; display:inline-flex; align-items:center; gap:6px; cursor:pointer; }
.blog-more::after { content:'→'; transition:transform .28s ease; }
.blog-card:hover .blog-more::after { transform:translateX(4px); }

/* ================================
   CONTACT PAGE
================================ */
.contact-layout { max-width:var(--max); margin:0 auto; padding:80px 40px; display:grid; grid-template-columns:1fr 1fr; gap:96px; align-items:start; }
.contact-left h1 { font-family:var(--font-display); font-size:clamp(2.4rem,4vw,3.7rem); font-weight:300; letter-spacing:-0.03em; line-height:1.1; margin-bottom:18px; }
.contact-left p { color:var(--text-light); line-height:1.82; margin-bottom:36px; font-size:.95rem; }
.c-infos { display:flex; flex-direction:column; gap:18px; }
.c-info { display:flex; align-items:flex-start; gap:14px; }
.c-icon { width:40px; height:40px; background:#fff; border:1px solid var(--border); border-radius:4px; display:flex; align-items:center; justify-content:center; font-size:.95rem; flex-shrink:0; }
.c-title { font-size:.74rem; font-weight:600; letter-spacing:.05em; text-transform:uppercase; margin-bottom:2px; color:var(--text-muted); }
.c-val { font-size:.9rem; color:var(--text-light); }
.form-box { background:#fff; border:1px solid var(--border); border-radius:4px; padding:38px; }
.form-box h2 { font-family:var(--font-display); font-size:1.55rem; font-weight:500; margin-bottom:26px; }
.fg { margin-bottom:18px; }
.fl { display:block; font-size:.72rem; font-weight:600; letter-spacing:.09em; text-transform:uppercase; color:var(--text-light); margin-bottom:7px; }
.fi, .fsel, .fta { width:100%; padding:12px 15px; background:var(--bg); border:1px solid var(--border); border-radius:2px; font-family:var(--font-body); font-size:.9rem; color:var(--text); transition:var(--ease); outline:none; }
.fi:focus, .fsel:focus, .fta:focus { border-color:var(--text); }
.fta { resize:vertical; min-height:108px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.f-sub { width:100%; background:var(--text); color:var(--bg); padding:15px; font-family:var(--font-body); font-size:.82rem; font-weight:600; letter-spacing:.1em; text-transform:uppercase; border:none; border-radius:2px; cursor:pointer; transition:var(--ease); margin-top:6px; }
.f-sub:hover { background:var(--accent); }

/* ================================
   RESPONSIVE - 1024px
================================ */
@media(max-width:1024px){
  nav { padding:0 24px; }
  .hero { grid-template-columns:1fr; gap:52px; min-height:auto; }
  .pkgs-grid { grid-template-columns:1fr 1fr; }
  .pkgs-grid .pkg-card:last-child { grid-column:span 2; }
  .pkgs-full-grid { grid-template-columns:1fr; max-width:540px; }
  .process-steps { grid-template-columns:repeat(3,1fr); gap:24px; }
  .process-steps::before { display:none; }
  .about-grid { grid-template-columns:1fr; gap:52px; }
  .about-img { aspect-ratio:auto; position:static !important; }
  .cases-grid { grid-template-columns:1fr; }
  .case-card.wide { grid-column:span 1; }
  .case-head { flex-direction:column; }
  .blog-grid { grid-template-columns:1fr 1fr; }
  .blog-card.wide { grid-column:span 2; }
  .contact-layout { grid-template-columns:1fr; gap:56px; }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .fix-grid { grid-template-columns:1fr 1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .pkgs-header { flex-direction:column; align-items:flex-start; }
  .metrics-row { grid-template-columns:repeat(3,1fr); }
  .pkgs-type-grid { grid-template-columns:1fr; }
  .ptcard.wide-card { grid-column:span 1; }
  .wide-top { flex-direction:column; gap:18px; }
  .wide-cols { grid-template-columns:1fr; gap:0; }
  .home-pkgs-grid { grid-template-columns:1fr 1fr; }
  .hpkg-wide { grid-column:span 2; }
  .hpkg-wide-inner { grid-template-columns:1fr 1fr; gap:24px; }
  .hpkg-wide .btn-pkg { grid-column:span 2; }
}

/* ================================
   RESPONSIVE - 768px
================================ */
@media(max-width:768px){
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .section { padding:60px 20px; }
  .hero { padding:52px 20px; }
  .hero-title { font-size:clamp(2.8rem,10vw,3.6rem); }
  .pkgs-preview-wrap { padding: 52px 20px !important; }
  .cta-banner { padding: 52px 20px !important; }
  .svc-hero, .results-hero, .blog-hero { padding: 44px 20px !important; }
  .trust-strip { padding: 20px !important; flex-wrap: wrap !important; gap: 10px !important; font-size: .72rem !important; }
  .svc-hero h1, .results-hero h1, .blog-hero h1 { margin: 10px auto 14px !important; }
  .pkgs-header { margin-bottom: 28px !important; }
  .hero { padding: 40px 20px !important; gap: 28px !important; min-height: auto !important; }
  .faq-section { padding: 52px 20px !important; }
  .pkgs-grid { grid-template-columns:1fr; }
  .pkgs-grid .pkg-card:last-child { grid-column:span 1; }
  .home-pkgs-grid { grid-template-columns:1fr; }
  .hpkg-wide { grid-column:span 1; }
  .hpkg-wide-inner { grid-template-columns:1fr; gap:16px; }
  .hpkg-wide .btn-pkg { min-width:auto; width:100%; }
  .fix-grid { grid-template-columns:1fr; }
  .testi-grid { grid-template-columns:1fr; }
  .about-grid, .contact-layout { padding:52px 20px; }
  .cases-grid, .blog-grid { padding:52px 20px; }
  .blog-grid { grid-template-columns:1fr; }
  .blog-card.wide { grid-column:span 1; }
  .metrics-row { grid-template-columns:1fr 1fr; }
  .process-steps { grid-template-columns:1fr 1fr; }
  .footer-grid { grid-template-columns:1fr; gap:28px; }
  .footer-bottom { flex-direction:column; gap:10px; text-align:center; }
  .f-row { grid-template-columns:1fr; }
  .tools-wrap { padding:60px 20px; }
  .wrap { padding:0 20px; }
  .case-metrics { flex-wrap:wrap; gap:20px; }
  .pkgs-type-wrap { padding:40px 20px; }
  .pkg-tabs { padding:0 20px; }
  .compare-wrap { padding:52px 20px; }

  /* Mobile fixes for inline-styled grids - works on ANY element */
  [style*="grid-template-columns:repeat(4,1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
  /* Override inline padding anywhere */
  [style*="padding:80px 40px"],
  [style*="padding:64px 40px"],
  [style*="padding:60px 40px"] {
    padding: 32px 16px !important;
  }
  [style*="padding:40px"] { padding: 20px !important; }
  /* Ensure images/cards never overflow */
  .pf-card, .brand-tile, .testi-card, .fix-card, .hpkg, .author-box {
    max-width: 100%;
    box-sizing: border-box;
  }
  .pf-card { padding: 20px !important; min-height: auto !important; }
  .pf-card-head img { width: 36px !important; height: 36px !important; }
  .pf-title { font-size: 1.2rem !important; }
  .pf-desc { font-size: .86rem !important; }
  /* Tables: keep wrapped tables inside scrollable container, don't force display:block */
  .pricing-compare-table { min-width: 680px !important; font-size: .78rem !important; }
  .pricing-compare-table th, .pricing-compare-table td { padding: 10px 8px !important; }
  /* Standalone tables scroll on mobile */
  main > table, article table { display: block; overflow-x: auto; white-space: normal; -webkit-overflow-scrolling: touch; max-width: 100%; }
  /* Headings scale down nicely on mobile */
  .section-title, h1, main h2 {
    font-size: clamp(1.9rem, 7.2vw, 2.7rem) !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }
  .hero-title { font-size: clamp(2.4rem, 9vw, 3.4rem) !important; line-height: 1.12 !important; }
  .hero-desc { font-size: 1rem !important; line-height: 1.6 !important; }
  .section-sub { font-size: 1.02rem !important; line-height: 1.7 !important; }
  h3 { font-size: 1.25rem !important; line-height: 1.25 !important; }
  /* Article page padding */
  .article-wrap { padding: 30px 18px !important; }
  /* Hero actions full-width buttons */
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  /* Breadcrumb navigation */
  nav[aria-label="Breadcrumb"] { padding: 12px 16px 0 !important; font-size: .76rem !important; }
  /* Trust pills wrap */
  [style*="border-radius:999px"][style*="flex-wrap:wrap"] {
    padding: 10px 16px !important;
    font-size: .74rem !important;
    gap: 8px !important;
  }
  /* Fix side padding on section modifiers - no negative margin on mobile */
  .section[style*="margin:0 -40px"] { margin: 0 !important; padding-left: 20px !important; padding-right: 20px !important; width: 100% !important; }
  /* Pricing cards */
  [style*="transform:scale(1.02)"] { transform: none !important; }
  /* WhatsApp float smaller on mobile */
  .whatsapp-float { width: 48px !important; height: 48px !important; bottom: 80px !important; right: 16px !important; }
  /* Mobile sticky CTA offset from whatsapp */
  .mobile-sticky-cta { display: block !important; }
  /* Author box wraps cleanly */
  .author-box { flex-direction: column !important; align-items: flex-start !important; padding: 20px !important; }
  .author-avatar { width: 72px !important; height: 72px !important; }
  /* Breadcrumb in article */
  .breadcrumb { padding: 12px 16px 0 !important; }
  /* Navigation on mobile */
  nav#nav { padding: 0 16px !important; height: 60px !important; }
  .nav-logo { font-size: 1.1rem !important; }
  /* Sync mobile-menu top + main padding-top with the shrunken 60px nav (fixes 8px gap) */
  .mobile-menu { top: 60px !important; }
  main { padding-top: 60px !important; }
  /* Footer grids */
  .footer-inner { padding: 40px 20px 20px !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  /* CTA banner full-width buttons on mobile */
  .cta-banner .btn { width: 100%; justify-content: center; }
  .cta-banner [style*="display:flex"][style*="gap:14px"] { flex-direction: column !important; align-items: stretch !important; }
}

/* Extra small devices < 420px */
@media(max-width:420px){
  .hero-title { font-size: clamp(2.1rem, 9.5vw, 2.8rem) !important; line-height: 1.12 !important; }
  .section-label { font-size: .7rem !important; }
  .btn { padding: 12px 20px !important; font-size: .82rem !important; }
  .hpkg-price { font-size: 2rem !important; }
  .hpkg-name { font-size: 1.5rem !important; }
  .hpkg-feats li { font-size: .95rem !important; }
  h1 { font-size: clamp(1.75rem, 8vw, 2.3rem) !important; line-height: 1.15 !important; }
  main h2 { font-size: clamp(1.6rem, 7.2vw, 2rem) !important; line-height: 1.2 !important; }
  .section-title { font-size: clamp(1.7rem, 7.6vw, 2.2rem) !important; line-height: 1.18 !important; }
  .section-sub, .hero-desc { font-size: 1rem !important; line-height: 1.65 !important; }
  h3 { font-size: 1.2rem !important; }
  .article-wrap { padding: 24px 14px !important; }
  .pf-title { font-size: 1.1rem !important; }
  .faq-q { font-size: .86rem !important; padding: 14px 16px !important; }
  .faq-a p { font-size: .84rem !important; }
}

/* ================================================================
   MOBILE LAYOUT FIX — 2026-05-28
   Overrides earlier rules to:
   1. Make the mobile menu scrollable + fit any viewport (15 links!)
   2. Kill horizontal overflow from inline-styled grids / wide cards
   3. Add long-word / URL break safety so blog posts never break layout
   ================================================================ */

/* ---------- Global safety net (all viewports) ---------- */
html, body { max-width: 100%; overflow-x: clip; }
h1, h2, h3, h4, h5, h6, p, li, a, span, blockquote, dt, dd, td, th, label {
  overflow-wrap: break-word;
  word-wrap: break-word;
}
img, video, iframe, svg, picture, embed, object {
  max-width: 100%;
  height: auto;
}
pre, code, kbd, samp {
  max-width: 100%;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-word;
}
/* Let flex/grid items shrink below their intrinsic content min-width.
   Without this, a long URL or table inside a flex child can force the
   whole row past the viewport edge. */
nav, main, section, article, aside, header, footer,
.hero, .hero-stats, .wrap, .footer-grid, .pkgs-grid,
.home-pkgs-grid, .pkgs-type-grid, .fix-grid, .testi-grid,
.cases-grid, .blog-grid, .contact-layout, .about-grid,
.compare-scroll, .process-steps, .metrics-row,
.hero-actions, .trust-strip {
  min-width: 0;
}

/* ---------- MOBILE: ≤ 768px ---------- */
@media (max-width: 768px) {
  /* ===== Mobile menu: scrollable, top-aligned, full-width tap targets ===== */
  .mobile-menu {
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0 !important;
    padding: 16px 0 96px !important; /* extra bottom padding clears sticky CTA bar */
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    /* Ensure it covers the viewport below the shrunken 60px nav */
    top: 60px !important;
    height: calc(100vh - 60px) !important;
    height: calc(100dvh - 60px) !important; /* uses dynamic viewport on iOS */
  }
  .mobile-menu a {
    font-size: 1.35rem !important;
    line-height: 1.25 !important;
    padding: 14px 22px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    border-bottom: 1px solid rgba(11, 27, 20, 0.06) !important;
    text-align: left !important;
    display: block !important;
  }
  .mobile-menu .mobile-sub {
    font-size: 1rem !important;
    padding: 10px 22px 10px 42px !important;
    border-bottom: 1px solid rgba(11, 27, 20, 0.04) !important;
    color: var(--text-light) !important;
  }
  .mobile-menu a:last-child {
    border-bottom: 0 !important;
  }
  /* Lock body scroll when menu is open so it can't double-scroll */
  body.menu-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
  }

  /* ===== Horizontal overflow guards for inline-styled containers ===== */
  /* Hero stats — let the boxes shrink instead of overflow */
  .hero-stats { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
  .stat-num { font-size: 2rem !important; }
  .hero-visual { padding: 24px !important; }

  /* Trust strip wraps cleanly */
  .trust-strip {
    padding: 12px 16px !important;
    gap: 10px !important;
  }
  .trust-strip > * { flex-shrink: 1; min-width: 0; }

  /* Nav logo never crowds the hamburger */
  .nav-logo img,
  nav .nav-logo img { max-width: 150px !important; height: 28px !important; width: auto !important; }

  /* Sticky CTA never overlaps content */
  .mobile-sticky-cta { box-sizing: border-box !important; max-width: 100% !important; }

  /* WhatsApp float never overlaps sticky CTA */
  .whatsapp-float { z-index: 998 !important; }

  /* Cards / grids that use inline padding can't push past viewport */
  [style*="padding:48px"], [style*="padding: 48px"],
  [style*="padding:56px"], [style*="padding: 56px"] {
    padding: 24px !important;
  }
  [style*="padding:32px"], [style*="padding: 32px"] {
    padding: 20px !important;
  }

  /* Inline-styled flex rows with big gaps collapse to column */
  [style*="display:flex"][style*="gap:48px"],
  [style*="display:flex"][style*="gap:40px"],
  [style*="display:flex"][style*="gap:32px"] {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Pricing card "popular" scale-up causes overflow */
  [style*="transform:scale(1.02)"],
  [style*="transform:scale(1.05)"],
  [style*="transform:scale(1.08)"] { transform: none !important; }

  /* Negative-margin sections (used for full-bleed dark strips) reset on mobile */
  [style*="margin:0 -40px"],
  [style*="margin:0 -48px"],
  [style*="margin:0 -64px"] {
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }

  /* Big SVG / decorative shapes never escape their container */
  .hero-visual::before { width: 140px !important; height: 140px !important; top: -40px !important; right: -40px !important; }

  /* Inline-styled circles / images with fixed pixel widths shrink */
  [style*="width:200px"], [style*="width:180px"], [style*="width:160px"],
  [style*="width:240px"], [style*="width:280px"], [style*="width:320px"] {
    max-width: 100% !important;
  }

  /* Section min-heights using vh can cause weird stacking — clamp them */
  .hero { min-height: auto !important; }
}

/* ---------- VERY SMALL: ≤ 420px ---------- */
@media (max-width: 420px) {
  .mobile-menu { padding: 12px 0 96px !important; }
  .mobile-menu a { font-size: 1.2rem !important; padding: 12px 18px !important; }
  .mobile-menu .mobile-sub { font-size: .92rem !important; padding: 9px 18px 9px 36px !important; }

  /* Even tighter nav logo on iPhone SE-class devices */
  .nav-logo img { max-width: 130px !important; height: 24px !important; }
  nav#nav { padding: 0 12px !important; }

  /* Hero stats stack vertically when there's no horizontal room */
  .hero-stats { grid-template-columns: 1fr !important; gap: 10px !important; }
  .stat-num { font-size: 1.7rem !important; }

  /* Tighter side gutters everywhere */
  .section, .wrap, .article-wrap { padding-left: 14px !important; padding-right: 14px !important; }
  [style*="padding:32px"], [style*="padding: 32px"] { padding: 16px !important; }

  /* Tag/pill rows wrap to 2 lines cleanly */
  [style*="border-radius:999px"] { font-size: .72rem !important; padding: 8px 12px !important; }
}

/* ================================
   BREADCRUMBS
================================ */
.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 16px 40px 0; }
.breadcrumb ol { display: flex; align-items: center; gap: 8px; list-style: none; }
.breadcrumb li { font-size: 0.76rem; color: var(--text-muted); }
.breadcrumb li a { color: var(--text-light); text-decoration: none; transition: var(--ease); }
.breadcrumb li a:hover { color: var(--accent); }
.breadcrumb li + li::before { content: '›'; margin-right: 8px; color: var(--text-muted); }

/* ================================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 998;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; text-decoration: none;
  box-shadow: 0 4px 18px rgba(37,211,102,.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ================================
   STICKY MOBILE CTA
================================ */
.mobile-sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--text); padding: 12px 20px;
  text-align: center;
}
.mobile-sticky-cta a {
  display: block; color: var(--bg); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none;
  padding: 12px; background: var(--accent); border-radius: 2px;
}
@media(max-width: 768px) {
  .mobile-sticky-cta { display: block; }
  .whatsapp-float { bottom: 80px; }
  .breadcrumb { padding: 12px 20px 0; }
}

/* ================================
   FAQ SECTION
================================ */
.faq-section { max-width: var(--max); margin: 0 auto; padding: 80px 40px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 22px 0;
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 500;
  color: var(--text); text-align: left; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--accent); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q::after { content: '\2212'; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 22px; }
.faq-a p { font-size: 0.92rem; color: var(--text-light); line-height: 1.78; }

/* ================================
   BLOG POST STYLES
================================ */
.article-wrap { max-width: 740px; margin: 0 auto; padding: 60px 40px 80px; }
.article-wrap h1 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; line-height: 1.15; letter-spacing: -0.025em; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article-meta span { font-size: 0.84rem; color: var(--text-muted); }
.article-meta a { color: var(--accent); text-decoration: none; }
.article-wrap h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin: 40px 0 16px; letter-spacing: -0.02em; }
.article-wrap h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; margin: 32px 0 12px; }
.article-wrap p { font-size: 1.02rem; color: var(--text-light); line-height: 1.85; margin-bottom: 20px; }
.article-wrap ul, .article-wrap ol { margin: 16px 0 24px 24px; }
.article-wrap li { font-size: 0.98rem; color: var(--text-light); line-height: 1.78; margin-bottom: 8px; }
.article-wrap blockquote { border-left: 3px solid var(--accent); padding: 16px 24px; margin: 24px 0; background: #fff; }
.article-wrap blockquote p { color: var(--text); font-style: italic; margin-bottom: 0; }
.article-author { display: flex; align-items: center; gap: 16px; padding: 28px; background: #fff; border: 1px solid var(--border); border-radius: 4px; margin-top: 48px; }
.article-author-info .a-name { font-size: 0.95rem; font-weight: 600; }
.article-author-info .a-role { font-size: 0.82rem; color: var(--text-muted); }
.related-posts { max-width: 740px; margin: 0 auto; padding: 0 40px 80px; }
.related-posts h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 24px; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.related-card { display:block; background:#fff; border:1px solid var(--border); border-radius:4px; padding:22px; text-decoration:none; color:inherit; transition:var(--ease); }
.related-card:hover { border-color:var(--accent); box-shadow:0 8px 30px rgba(0,0,0,.08); transform:translateY(-2px); }
.rc-cat { font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); display:block; margin-bottom:8px; }
.rc-title { font-family:var(--font-display); font-size:1.1rem; font-weight:500; line-height:1.3; margin-bottom:6px; color:var(--text); }
.rc-desc { font-size:.82rem; color:var(--text-light); line-height:1.65; }

/* Author box (blog posts) */
.author-box { display:flex; align-items:center; gap:16px; padding:24px; background:#fff; border:1px solid var(--border); border-radius:4px; max-width:740px; margin:40px auto 0; }
.author-avatar { width:52px; height:52px; border-radius:50%; background:var(--accent); color:#fff; display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-size:1.3rem; font-weight:500; flex-shrink:0; object-fit:cover; border:2px solid var(--accent); }
.author-info h4 { font-size:.92rem; font-weight:600; margin-bottom:2px; }
.author-info p { font-size:.82rem; color:var(--text-muted); line-height:1.6; margin:0; }

/* Blog CTA box — !important needed to override .article-wrap specificity */
.cta-box, .article-cta { max-width:740px; margin:48px auto 0 !important; padding:36px !important; background:var(--text) !important; border-radius:6px; text-align:center; }
.cta-box h3, .article-wrap .article-cta h3 { font-family:var(--font-display); font-size:1.4rem !important; font-weight:400; color:#fff !important; margin-bottom:10px !important; }
.cta-box p, .article-wrap .article-cta p { font-size:.9rem !important; color:rgba(255,255,255,.5) !important; margin-bottom:22px !important; line-height:1.7; }
.cta-box a, .article-wrap .article-cta a { display:inline-block; background:var(--accent); color:#fff !important; padding:13px 28px; border-radius:2px; text-decoration:none !important; font-size:.8rem !important; font-weight:600; letter-spacing:.08em; text-transform:uppercase; transition:var(--ease); }
.cta-box a:hover, .article-wrap .article-cta a:hover { background:#0A6E47; transform:translateY(-1px); }

/* Author box — override article-wrap specificity */
.article-wrap .author-box { display:flex; align-items:center; gap:16px; padding:24px !important; background:#fff; border:1px solid var(--border); border-radius:4px; margin:40px 0 0 !important; }
.article-wrap .author-box .author-info p { font-size:.82rem !important; color:var(--text-muted) !important; line-height:1.6; margin:0 !important; }

/* Related articles — override article-wrap */
.article-wrap .related-posts { padding:0 !important; margin-top:48px; }
.article-wrap .related-card { display:block; background:#fff; border:1px solid var(--border); border-radius:4px; padding:22px; text-decoration:none !important; color:inherit; transition:var(--ease); }
.article-wrap .related-card:hover { border-color:var(--accent); box-shadow:0 8px 30px rgba(0,0,0,.08); transform:translateY(-2px); }

/* Blog article meta */
.article-cat { font-size:.72rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); }
.article-date { font-size:.82rem; color:var(--text-muted); }

/* Article hero for blog posts */
.article-hero { background:var(--bg-dark); padding:60px 40px 48px; margin-bottom:0; }
.article-hero .article-wrap { padding-top:0; padding-bottom:0; }
.article-hero h1 { color:#fff; }
.article-hero .article-meta { border-bottom-color:rgba(255,255,255,.1); }
.article-hero .article-meta span { color:rgba(255,255,255,.4); }
.article-hero .article-meta a { color:var(--accent-light); }

/* ================================
   SERVICE LANDING PAGE
================================ */
.svc-landing-hero { background: var(--bg-dark); padding: 80px 40px 60px; }
.svc-landing-hero .wrap { max-width: var(--max); margin: 0 auto; }
.svc-landing-hero h1 { font-family: var(--font-display); font-size: clamp(2.4rem, 4.5vw, 4rem); font-weight: 300; color: #fff; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px; }
.svc-landing-hero p { color: rgba(255,255,255,.45); max-width: 560px; line-height: 1.78; font-size: 1rem; }
.svc-landing-content { max-width: var(--max); margin: 0 auto; padding: 64px 40px; }
.svc-landing-content h2 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; margin: 36px 0 14px; letter-spacing: -0.02em; }
.svc-landing-content p { font-size: 0.96rem; color: var(--text-light); line-height: 1.82; margin-bottom: 18px; }
.svc-landing-content ul { margin: 14px 0 24px 20px; }
.svc-landing-content li { font-size: 0.92rem; color: var(--text-light); line-height: 1.72; margin-bottom: 6px; }
.svc-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 36px 0; }
.svc-feature { background: #fff; border: 1px solid var(--border); border-radius: 4px; padding: 24px; }
.svc-feature h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 500; margin-bottom: 8px; }
.svc-feature p { font-size: 0.86rem; color: var(--text-light); line-height: 1.68; margin-bottom: 0; }
.svc-pricing-box { background: var(--bg-dark); border-radius: 6px; padding: 40px; margin: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.svc-pricing-box h3 { font-family: var(--font-display); font-size: 1.8rem; color: #fff; font-weight: 300; }
.svc-pricing-box .price { font-family: var(--font-display); font-size: 2.6rem; font-weight: 600; color: #6FE3B4; }
.svc-pricing-box .price span:not(.js-price) { font-size: 0.88rem; color: rgba(255,255,255,.7); font-family: var(--font-body); }

@media(max-width: 768px) {
  .article-wrap { padding: 40px 20px 60px; }
  .related-grid { grid-template-columns: 1fr; }
  .related-posts { padding: 0 20px 60px; }
  .svc-landing-hero { padding: 60px 20px 48px; }
  .svc-landing-content { padding: 40px 20px; }
  .svc-features-grid { grid-template-columns: 1fr; }
  .svc-pricing-box { flex-direction: column; text-align: center; padding: 28px; }
}

/* ================================
   ACTIVE NAV STATE
================================ */
.nav-links a.active { color: var(--text); }

/* ================================
   PHILOSOPHY SECTION (About)
================================ */
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.philosophy-card { padding: 32px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; }
.philosophy-card h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; margin-bottom: 10px; }
.philosophy-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.72; }
@media(max-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

/* ================================
   INDUSTRIES SECTION (Guwahati)
================================ */
.industries-inner .section-label,
.industries-inner .section-title,
.industries-inner .section-sub { text-align: center; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
  text-align: left;
}
.industry-card {
  position: relative;
  background: #fff;
  padding: 26px 22px 22px;
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: transform .28s cubic-bezier(.25,.46,.45,.94), box-shadow .28s ease, border-color .28s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
}
.industry-card::after {
  content: "\2192";
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--accent);
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .25s ease, transform .25s ease;
}
.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px -20px rgba(24,20,15,.24);
  border-color: var(--accent);
}
.industry-card:hover::after { opacity: 1; transform: translateX(0); }
.industry-card:hover .industry-icon {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.industry-icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--accent);
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
  flex-shrink: 0;
}
.industry-icon svg { width: 22px; height: 22px; }
.industry-ttl {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  display: block;
  color: var(--text);
}
.industry-dsc {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.68;
  margin: 0;
  flex-grow: 1;
}
.industry-stat {
  display: inline-block;
  margin-top: 6px;
  padding: 5px 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--accent);
  align-self: flex-start;
}
.industries-cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 16px;
  font-size: .95rem;
  color: var(--text-light);
}
.industries-cta p { margin: 0; }
.industries-cta-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, gap .2s ease;
}
.industries-cta-link:hover { border-bottom-color: var(--accent); }
.industries-cta-link span {
  display: inline-block;
  transition: transform .2s ease;
}
.industries-cta-link:hover span { transform: translateX(4px); }

/* Brand tiles — homepage portfolio grid (was inline + embedded <style> on index.html) */
.brand-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 10px;
}
.brand-tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  transition: all .22s ease;
}
.brand-tile:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(20,20,20,.06);
}
.brand-fav {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  padding: 4px;
  background: var(--bg-light);
  object-fit: contain;
  flex-shrink: 0;
}
.brand-info { min-width: 0; flex: 1; }
.brand-name {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 500;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.brand-loc {
  font-size: .7rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 960px) { .brand-tile-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px) { .brand-tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .brand-tile-grid { grid-template-columns: 1fr; } }

/* Industry tiles — homepage "Industries We Serve" grid */
.industry-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  text-align: center;
}
.industry-tile {
  background: #fff;
  padding: 28px 20px;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 110px;
  transition: all .2s ease;
}
.industry-tile:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20,20,20,.06);
}
.industry-tile-ttl {
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}
.industry-tile-sub {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
@media (max-width: 960px) { .industry-tile-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-tile-grid { grid-template-columns: 1fr; } }

/* Testimonial grid mobile fallback */
@media (max-width: 720px) {
  .testimonial-grid { grid-template-columns: 1fr !important; }
}

/* Currency toggle — base styles. JS swaps background/color inline for the active button. */
.currency-toggle {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.currency-toggle.toggle-dark,
.pkgs-preview-wrap .currency-toggle {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.14);
}
.currency-toggle button {
  border: none;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .76rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: background .2s ease, color .2s ease;
}
.js-price { white-space: nowrap; }

/* Scroll reveal — initial state stays partially visible so a slow JS fire never looks "broken" */
.reveal { opacity: .55; transform: translateY(8px); transition: opacity .35s ease, transform .35s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

@media(max-width: 1024px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
  .industries-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px !important; margin-top: 28px; }
  .industry-card { padding: 20px 16px 18px; border-radius: 12px; }
  .industry-card::after { top: 18px; right: 16px; }
  .industry-icon { width: 40px; height: 40px; border-radius: 10px; }
  .industry-icon svg { width: 20px; height: 20px; }
  .industry-ttl { font-size: 1.02rem !important; }
  .industry-dsc { font-size: .82rem; line-height: 1.58; }
  .industry-stat { font-size: .68rem; padding: 4px 9px; }
  .industries-cta { margin-top: 30px; font-size: .88rem; flex-direction: column; text-align: center; gap: 6px; }
}
@media(max-width: 420px) {
  .industries-grid { grid-template-columns: 1fr !important; }
  .industry-card { padding: 22px 18px 20px; }
}

/* Services dropdown */
.nav-dropdown{position:relative}.nav-caret{font-size:0.65rem;opacity:0.55;margin-left:2px;vertical-align:1px}.nav-submenu{position:absolute;top:calc(100% + 4px);left:-16px;min-width:230px;background:#fff;border:1px solid var(--border);border-radius:4px;box-shadow:0 12px 36px rgba(11,27,20,0.08);padding:8px 0;list-style:none;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity 0.18s ease,transform 0.18s ease,visibility 0s linear 0.18s;z-index:1100}.nav-dropdown:hover .nav-submenu,.nav-dropdown:focus-within .nav-submenu{opacity:1;visibility:visible;transform:translateY(0);transition:opacity 0.18s ease,transform 0.18s ease,visibility 0s linear 0s}.nav-submenu li{margin:0}.nav-submenu a{display:block;padding:10px 18px;font-size:0.76rem;color:var(--text-light);text-decoration:none;letter-spacing:0.06em;text-transform:uppercase;font-weight:500;transition:background 0.15s ease,color 0.15s ease}.nav-submenu a:hover{background:var(--bg);color:var(--text)}.nav-submenu-divider{height:1px;background:var(--border);margin:6px 0;list-style:none}.nav-submenu-all{color:var(--accent) !important;font-weight:600 !important}.mobile-menu .mobile-sub{font-size:1.2rem !important;color:var(--text-light) !important;padding-left:18px}

/* ===== Readability pass 2026-06-16: header menu + secondary text ===== */
#nav .nav-links a{font-size:0.85rem;letter-spacing:0.05em;color:var(--text)}
#nav .nav-links a:hover,#nav .nav-links a.active{color:var(--accent)}
.nav-submenu a{font-size:0.8rem;color:#2E3A33}
.nav-submenu a:hover{color:var(--accent)}
.mobile-menu .mobile-sub{color:#2E3A33 !important}

.breadcrumb{position:relative;display:block;height:auto;padding:0;background:none;border:none}

/* ===== Energy lift 2026-06-17: vibrant green CTAs + brighter hero accent (visual-only) ===== */
.btn-dark{background:linear-gradient(160deg,#11975F 0%,#0B7048 100%);color:#fff;box-shadow:0 6px 18px rgba(14,140,90,.30);text-shadow:0 1px 2px rgba(0,0,0,.18)}
.btn-dark:hover{background:linear-gradient(160deg,#15B071 0%,#0E8C5A 100%);transform:translateY(-2px);box-shadow:0 10px 26px rgba(14,140,90,.42)}
.nav-cta{background:linear-gradient(160deg,#11975F 0%,#0B7048 100%) !important;color:#fff !important;box-shadow:0 4px 14px rgba(14,140,90,.28);text-shadow:0 1px 2px rgba(0,0,0,.18)}
.nav-cta:hover{background:linear-gradient(160deg,#15B071 0%,#0E8C5A 100%) !important;color:#fff !important;transform:translateY(-1px)}
.hero-visual::before{background:radial-gradient(circle,rgba(22,190,120,.34) 0%,transparent 70%) !important}

/* --- Mobile tap targets (WCAG 2.2 SC 2.5.8: min 24x24). Footer list links and
   standalone contact links were 18-19px tall. Inline links inside sentences are
   exempt under the "Inline" exception and are deliberately left alone. --- */
@media (max-width:768px){
  footer li>a,footer .footer-inner>div>a,footer p.footer-desc>a{display:inline-block;padding:7px 0;line-height:1.35}
  footer li{margin-bottom:2px}
  .c-val a{display:inline-block;padding:6px 0}
  .brand-name a,.brand-info a{display:inline-block;padding:3px 0}
  main a[target="_blank"]{min-height:24px}
  .hero-stats{text-align:center;justify-items:center}
  .article-toc a{min-height:24px;display:flex;align-items:center}
  .author-bio a,.article-meta a{display:inline-block;padding:4px 0}
}

/* 2026-08-25 mobile: 6 pricing cards stacked = ~3000px. Swipe carousel keeps all six, costs one card. */
.pkgs-swipe-hint{display:none;font-size:.82rem;color:rgba(255,255,255,.55);margin:0 0 14px;text-align:center}
@media (max-width:640px){
.pkgs-swipe-hint{display:block}
.home-pkgs-grid{display:flex!important;grid-template-columns:none!important;overflow-x:auto;scroll-snap-type:x mandatory;gap:12px;padding:2px 0 12px;-webkit-overflow-scrolling:touch;scrollbar-width:none}
.home-pkgs-grid::-webkit-scrollbar{display:none}
.home-pkgs-grid>.hpkg{flex:0 0 84%!important;scroll-snap-align:start;grid-column:auto!important}
.home-pkgs-grid>.hpkg-wide{flex:0 0 92%!important}
.section{padding:46px 20px!important}
.faq-section{padding:44px 20px!important}
}

/* 2026-08-25: wide tables were being CLIPPED (html/body have overflow-x:clip), so mobile
   users could not see right-hand columns at all. Wrap makes them scroll instead of vanish. */
.table-scroll{overflow-x:auto;-webkit-overflow-scrolling:touch;max-width:100%;margin:0 0 20px}
.table-scroll>table{margin-bottom:0}
@media (max-width:640px){.table-scroll{scrollbar-width:thin}}
