/* ═══════════════════════════════════════════════════
   NexCommerce - Digital  |  style.css
   Shared across all pages
   ═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  --p:    #1C7F84;
  --pd:   #145f63;
  --pll:  #e8f4f5;
  --s:    #F58220;
  --sl:   #fff4e8;
  --sup:  #5DAE3C;
  --supl: #edf7e8;
  --acc:  #E53935;

  --bg:     #F8F8F6;
  --bg2:    #EFEFED;
  --card:   #FFFFFF;
  --border: rgba(28,127,132,.13);
  --border2:rgba(28,127,132,.26);
  --muted:  #6b6b65;
  --text:   #222220;

  --gp: rgba(28,127,132,.08);
  --gs: rgba(245,130,32,.08);
  --gg: rgba(93,174,60,.08);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', system-ui, sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--p); }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Syne', sans-serif; line-height: 1.1; letter-spacing: -.03em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 5vw, 4.2rem); font-weight: 800; letter-spacing: -.04em; }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); font-weight: 700; }
h3 { font-size: 1rem; font-weight: 700; }
h2 em, h1 em { font-style: normal; color: var(--p); }

/* ── SKIP LINK ── */
.skip-link { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; }
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; background: var(--p); color: #fff; padding: .5rem 1rem; border-radius: 6px; }

/* ═══════════════════════
   NAV
═══════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 72px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  background: rgba(248,248,246,.94);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled { background: rgba(248,248,246,.98); box-shadow: 0 2px 20px rgba(0,0,0,.06); }
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 62px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: .875rem; font-weight: 400; letter-spacing: .01em; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--p); }
.nav-cta { background: var(--p) !important; color: #fff !important; font-weight: 600 !important; padding: .48rem 1.2rem; border-radius: 6px; transition: background .2s, transform .2s !important; }
.nav-cta:hover { background: var(--pd) !important; transform: translateY(-1px); }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--text); flex-direction: column; gap: 5px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-mobile { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--card); border-bottom: 1px solid var(--border); padding: 1.5rem 5vw; z-index: 199; flex-direction: column; gap: .5rem; box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.nav-mobile a { color: var(--muted); text-decoration: none; font-size: 1rem; font-weight: 400; padding: .6rem 0; border-bottom: 1px solid var(--border); display: block; transition: color .2s; }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--p); }
.nav-mobile.open { display: flex; }

/* ═══════════════════════
   TICKER BANNER
═══════════════════════ */
.ticker-wrap { overflow: hidden; background: var(--p); padding: .85rem 0; border-top: 1px solid rgba(28,127,132,.3); border-bottom: 1px solid rgba(28,127,132,.3); position: relative; z-index: 10; }
.ticker-track { display: flex; width: max-content; animation: ticker 38s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; gap: .6rem; padding: 0 2.4rem; white-space: nowrap; font-family: 'Syne', sans-serif; font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; }
.ticker-item .t-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; background: #fff; opacity: .45; }
.ticker-item .t-icon { font-size: .95rem; opacity: .9; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ═══════════════════════
   BUTTONS
═══════════════════════ */
.btn-p { background: var(--p); color: #fff; font-weight: 600; font-size: .92rem; padding: .85rem 1.8rem; border-radius: 8px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(28,127,132,.22); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(28,127,132,.3); color: #fff; }
.btn-s { background: var(--s); color: #fff; font-weight: 600; font-size: .92rem; padding: .85rem 1.8rem; border-radius: 8px; text-decoration: none; transition: transform .2s, box-shadow .2s; box-shadow: 0 4px 20px rgba(245,130,32,.2); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.btn-s:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,130,32,.28); color: #fff; }
.btn-g { color: var(--text); font-size: .92rem; font-weight: 400; padding: .85rem 1.4rem; border-radius: 8px; text-decoration: none; border: 1px solid var(--border2); background: #fff; transition: border-color .2s, color .2s; display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.btn-g:hover { border-color: var(--p); color: var(--p); }

/* ═══════════════════════
   SECTION COMMONS
═══════════════════════ */
section { padding: 5.5rem 5vw; }
.sec-label { font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: .15em; color: var(--p); margin-bottom: .8rem; display: flex; align-items: center; gap: 9px; }
.sec-label::before { content: ''; width: 20px; height: 1px; background: var(--p); }
.sec-copy { font-size: .97rem; color: var(--muted); max-width: 520px; margin-top: .85rem; font-weight: 300; line-height: 1.75; }

/* ═══════════════════════
   PAGE HERO (inner pages)
═══════════════════════ */
.page-hero { padding: 130px 5vw 5rem; background: var(--card); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(28,127,132,.06) 0%, transparent 60%); pointer-events: none; }
.page-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(28,127,132,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(28,127,132,.03) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 100% 100% at 50% 50%, black 20%, transparent 100%); pointer-events: none; }
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(28,127,132,.08); border: 1px solid rgba(28,127,132,.22); color: var(--p); font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px; margin-bottom: 1.5rem; }
.page-hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--p); border-radius: 50%; box-shadow: 0 0 7px var(--p); }
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p.lead { font-size: 1.08rem; color: var(--muted); font-weight: 300; line-height: 1.78; max-width: 600px; }

/* ═══════════════════════
   STAT STRIP
═══════════════════════ */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat { padding: 2.6rem 1.8rem; border-right: 1px solid var(--border); text-align: center; }
.stat:last-child { border-right: none; }
.stat-num { font-family: 'Syne', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--text); letter-spacing: -.04em; line-height: 1; }
.stat-num span { color: var(--p); }
.stat-lbl { font-size: .75rem; color: var(--muted); margin-top: .35rem; text-transform: uppercase; letter-spacing: .08em; }

/* ═══════════════════════
   ABOUT BAND
═══════════════════════ */
.about-band { background: var(--p); padding: 2rem 5vw; text-align: center; }
.about-band p { font-size: 1rem; color: rgba(255,255,255,.88); font-weight: 300; max-width: 720px; margin: 0 auto; line-height: 1.7; }
.about-band strong { color: #fff; font-weight: 600; }

/* ═══════════════════════
   ECOSYSTEM
═══════════════════════ */
.ecosystem-section { background: var(--card); }
.eco-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 3rem; }
.eco-img-wrap img { width: 100%; max-width: 520px; margin: 0 auto; filter: drop-shadow(0 8px 32px rgba(28,127,132,.12)); }
.eco-points { display: grid; gap: 1.4rem; margin-top: 2rem; }
.eco-point { display: flex; align-items: flex-start; gap: 14px; }
.eco-icon { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1rem; }
.eco-icon.teal  { background: var(--pll); color: var(--p); }
.eco-icon.orange{ background: var(--sl);  color: var(--s); }
.eco-icon.green { background: var(--supl);color: var(--sup); }
.eco-icon.red   { background: rgba(229,57,53,.07); color: var(--acc); }
.eco-point h3 { font-size: .9rem; margin-bottom: .25rem; }
.eco-point p { font-size: .83rem; color: var(--muted); font-weight: 300; line-height: 1.6; }

/* ═══════════════════════
   SERVICES GRID
═══════════════════════ */
.services-section { background: var(--bg2); }
.svc-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2.8rem; flex-wrap: wrap; gap: 1.5rem; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.svc { background: var(--card); padding: 2.2rem; position: relative; transition: background .25s; }
.svc:hover { background: #fafaf8; }
.svc::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, var(--p), transparent); opacity: 0; transition: opacity .3s; }
.svc:hover::after { opacity: 1; }
.svc-num { font-size: .68rem; font-weight: 700; color: var(--p); letter-spacing: .12em; text-transform: uppercase; margin-bottom: 1rem; opacity: .65; }
.svc h3 { font-size: 1rem; margin-bottom: .5rem; }
.svc p { font-size: .84rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 1rem; }
.svc-tags span { font-size: .68rem; color: var(--p); background: rgba(28,127,132,.06); border: 1px solid rgba(28,127,132,.14); padding: 3px 9px; border-radius: 100px; }
.svc-cta-strip { background: linear-gradient(90deg, rgba(28,127,132,.06), rgba(245,130,32,.04)); border: 1px solid var(--border); border-radius: 12px; padding: 2rem 2.5rem; margin-top: 2.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.svc-cta-strip p { font-size: .95rem; font-weight: 300; color: var(--muted); max-width: 560px; }
.svc-cta-strip strong { color: var(--text); font-weight: 600; }

/* ═══════════════════════
   WORK / PORTFOLIO
═══════════════════════ */
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2.8rem; }
.work-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: transform .3s, border-color .3s, box-shadow .3s; }
.work-card:hover { transform: translateY(-4px); border-color: var(--border2); box-shadow: 0 12px 36px rgba(28,127,132,.09); }
.work-thumb { height: 175px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.wt-1 { background: linear-gradient(135deg, #ddf0ea, #c4e6da); }
.wt-2 { background: linear-gradient(135deg, #dde8f0, #c4d9e6); }
.wt-3 { background: linear-gradient(135deg, #f0e8dd, #e6d9c4); }
.wt-4 { background: linear-gradient(135deg, #f0dddd, #e6c4c4); }
.work-thumb::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(28,127,132,.12), transparent 60%); }
.work-logo-text { font-family: 'Syne', sans-serif; font-size: 1.1rem; font-weight: 800; color: rgba(0,0,0,.14); letter-spacing: -.02em; position: relative; z-index: 1; }
.work-pill { position: absolute; top: 12px; right: 12px; font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 3px 10px; border-radius: 100px; }
.pill-live { background: rgba(28,127,132,.1); border: 1px solid rgba(28,127,132,.26); color: var(--p); }
.pill-dev  { background: rgba(245,130,32,.09); border: 1px solid rgba(245,130,32,.26); color: var(--s); }
.pill-buy  { background: rgba(93,174,60,.09);  border: 1px solid rgba(93,174,60,.26);  color: var(--sup); }
.work-info { padding: 1.3rem; }
.work-info h3 { font-size: .92rem; margin-bottom: .3rem; }
.work-info p { font-size: .81rem; color: var(--muted); font-weight: 300; line-height: 1.6; }
.work-link { display: inline-flex; align-items: center; gap: 5px; color: var(--p); font-size: .79rem; font-weight: 500; text-decoration: none; margin-top: .65rem; transition: gap .2s; }
.work-link:hover { gap: 9px; }

/* ═══════════════════════
   PACKAGES
═══════════════════════ */
.packages-section { background: var(--bg2); }
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.pkg { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 2.1rem; transition: border-color .3s, transform .3s, box-shadow .3s; }
.pkg:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(28,127,132,.08); }
.pkg.feat { background: linear-gradient(155deg, var(--s) 0%, #d95c10 100%); border-color: transparent; transform: translateY(-4px); box-shadow: 0 14px 40px rgba(245,130,32,.22); }
.pkg.feat:hover { transform: translateY(-6px); }
.pkg-badge { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--p); margin-bottom: .75rem; }
.pkg.feat .pkg-badge { color: rgba(255,255,255,.7); }
.pkg h3 { font-size: 1.05rem; margin-bottom: .4rem; }
.pkg.feat h3 { color: #fff; }
.pkg-price { font-family: 'Syne', sans-serif; font-size: 1.9rem; font-weight: 800; color: var(--text); line-height: 1; display: block; margin-bottom: .7rem; }
.pkg.feat .pkg-price { color: #fff; }
.pkg > p { font-size: .83rem; color: var(--muted); line-height: 1.6; font-weight: 300; }
.pkg.feat > p { color: rgba(255,255,255,.72); }
.pkg-list { margin-top: 1.1rem; list-style: none; display: grid; gap: .55rem; }
.pkg-list li { font-size: .81rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pkg.feat .pkg-list li { color: rgba(255,255,255,.8); }
.pkg-list li::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--p); flex-shrink: 0; margin-top: .35em; }
.pkg.feat .pkg-list li::before { background: rgba(255,255,255,.9); }
.pkg-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 1.4rem; font-size: .82rem; font-weight: 600; color: var(--p); text-decoration: none; transition: gap .2s; }
.pkg.feat .pkg-cta { color: #fff; }
.pkg-cta:hover { gap: 10px; }

/* ═══════════════════════
   PAYMENT PLAN
═══════════════════════ */
.payment-plan { margin-top: 2.4rem; border: 1px solid rgba(28,127,132,.2); border-radius: 14px; overflow: hidden; background: var(--card); }
.payment-plan-header { display: flex; align-items: center; gap: 14px; padding: 1.4rem 2rem; background: linear-gradient(90deg, rgba(28,127,132,.07), rgba(245,130,32,.04)); border-bottom: 1px solid rgba(28,127,132,.12); }
.payment-plan-icon { width: 40px; height: 40px; background: var(--p); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.1rem; }
.payment-plan-header h3 { font-size: 1rem; margin: 0; }
.payment-plan-header p { font-size: .82rem; color: var(--muted); font-weight: 300; margin: .18rem 0 0; }
.payment-plan-body { display: grid; grid-template-columns: 1fr 1fr; }
.pp-left { padding: 1.8rem 2rem; border-right: 1px solid rgba(28,127,132,.1); }
.pp-left p { font-size: .88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }
.pp-right { padding: 1.8rem 2rem; }
.pp-terms { list-style: none; display: grid; gap: .75rem; }
.pp-terms li { font-size: .84rem; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; line-height: 1.55; font-weight: 300; }
.pp-icon { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .75rem; margin-top: .05em; }
.pp-icon.teal   { background: rgba(28,127,132,.09); color: var(--p); }
.pp-icon.orange { background: rgba(245,130,32,.09);  color: var(--s); }
.pp-icon.green  { background: rgba(93,174,60,.09);   color: var(--sup); }
.pp-icon.red    { background: rgba(229,57,53,.07);   color: var(--acc); }
.pp-terms li strong { color: var(--text); font-weight: 600; }
.pp-footer { padding: 1.2rem 2rem; background: rgba(28,127,132,.04); border-top: 1px solid rgba(28,127,132,.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.pp-footer p { font-size: .8rem; color: var(--muted); font-weight: 300; font-style: italic; max-width: 560px; }
.pp-footer p strong { color: var(--text); font-style: normal; font-weight: 600; }

/* ═══════════════════════
   ABOUT / MANIFESTO
═══════════════════════ */
.about-section { background: var(--card); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 3rem; }
.about-cards { display: grid; gap: 1.4rem; }
.acard { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color .3s, box-shadow .3s; }
.acard:hover { border-color: var(--border2); box-shadow: 0 6px 22px rgba(28,127,132,.07); }
.acard h3 { font-size: .95rem; margin-bottom: .6rem; }
.acard p { font-size: .84rem; color: var(--muted); line-height: 1.7; font-weight: 300; }
.a-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 600; padding: 6px 14px; border-radius: 100px; margin-right: .5rem; margin-top: .5rem; }
.a-tag.teal   { background: rgba(28,127,132,.07); border: 1px solid rgba(28,127,132,.18); color: var(--p); }
.a-tag.green  { background: rgba(93,174,60,.07);  border: 1px solid rgba(93,174,60,.18);  color: var(--sup); }
.a-tag.orange { background: rgba(245,130,32,.07); border: 1px solid rgba(245,130,32,.18); color: var(--s); }
.about-statement { font-family: 'Syne', sans-serif; font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; line-height: 1.2; color: var(--text); letter-spacing: -.03em; }
.about-statement em { color: var(--p); font-style: normal; }
.about-copy { font-size: .9rem; color: var(--muted); line-height: 1.75; font-weight: 300; margin-top: 1rem; }

/* ═══════════════════════
   RESULTS
═══════════════════════ */
.results-section { background: var(--bg2); }
.results-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; margin-top: 2.8rem; align-items: start; }
.outcomes { list-style: none; display: grid; gap: .9rem; }
.outcomes li { font-size: .9rem; color: var(--muted); display: flex; align-items: flex-start; gap: 11px; line-height: 1.6; font-weight: 300; }
.outcomes li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: linear-gradient(135deg, var(--sup), var(--p)); flex-shrink: 0; margin-top: .42em; }
.testi { background: linear-gradient(155deg, var(--p) 0%, var(--pd) 100%); border-radius: 14px; padding: 2.2rem; }
.testi blockquote { font-family: 'Syne', sans-serif; font-size: 1.35rem; font-weight: 700; color: #fff; line-height: 1.25; letter-spacing: -.02em; margin-bottom: 1.8rem; font-style: normal; }
.testi-name { font-size: .86rem; font-weight: 600; color: #fff; display: block; }
.testi-role { font-size: .8rem; color: rgba(255,255,255,.6); display: block; margin-top: .25rem; line-height: 1.6; }

/* ═══════════════════════
   ADD-ONS
═══════════════════════ */
.addons-section { background: var(--card); }
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.addon { background: var(--bg); border: 1px solid var(--border); border-radius: 12px; padding: 1.8rem; transition: border-color .3s, transform .3s, box-shadow .3s; }
.addon:hover { border-color: var(--border2); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(28,127,132,.07); }
.addon-icon { width: 38px; height: 38px; background: var(--pll); border: 1px solid rgba(28,127,132,.16); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 1rem; margin-bottom: 1rem; }
.addon h3 { font-size: .9rem; margin-bottom: .45rem; }
.addon p { font-size: .82rem; color: var(--muted); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════
   CTA SECTION
═══════════════════════ */
.cta-section { padding: 5.5rem 5vw; }
.cta-inner { background: linear-gradient(135deg, rgba(28,127,132,.08) 0%, rgba(245,130,32,.04) 100%); border: 1px solid rgba(28,127,132,.18); border-radius: 20px; padding: 4.5rem; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%); width: 380px; height: 380px; background: radial-gradient(circle, rgba(28,127,132,.1), transparent 70%); pointer-events: none; }
.cta-inner h2 { position: relative; }
.cta-inner p { font-size: .97rem; color: var(--muted); max-width: 480px; margin: .9rem auto 2.2rem; font-weight: 300; line-height: 1.75; position: relative; }
.cta-actions { display: flex; align-items: center; justify-content: center; gap: .9rem; flex-wrap: wrap; position: relative; }
.cta-trust { display: flex; align-items: center; justify-content: center; gap: 1.5rem; margin-top: 1.8rem; flex-wrap: wrap; }
.cta-trust span { font-size: .78rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.cta-trust span::before { content: '✓'; color: var(--sup); font-weight: 700; }

/* ═══════════════════════
   FOOTER
═══════════════════════ */
footer { border-top: 1px solid var(--border); padding: 3.5rem 5vw 2rem; background: var(--card); }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2.8rem; border-bottom: 1px solid var(--border); }
.footer-brand img { height: 56px; width: auto; }
.footer-desc { font-size: .82rem; color: var(--muted); font-weight: 300; line-height: 1.7; max-width: 255px; margin-top: .55rem; }
.footer-tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .9rem; }
.ftag { font-size: .7rem; font-weight: 500; padding: 4px 11px; border-radius: 7px; }
.ftag-p { background: rgba(28,127,132,.07); border: 1px solid rgba(28,127,132,.18); color: var(--p); }
.ftag-s { background: rgba(245,130,32,.07);  border: 1px solid rgba(245,130,32,.16); color: var(--s); }
.ftag-g { background: rgba(93,174,60,.07);   border: 1px solid rgba(93,174,60,.16);  color: var(--sup); }
.footer-col h4 { font-family: 'Syne', sans-serif; font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; color: rgba(0,0,0,.28); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .5rem; }
.footer-col a { color: var(--muted); text-decoration: none; font-size: .84rem; font-weight: 300; transition: color .2s; }
.footer-col a:hover { color: var(--p); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.8rem; flex-wrap: wrap; gap: .8rem; }
.footer-bottom p { font-size: .76rem; color: rgba(0,0,0,.26); }
.footer-bottom span { color: var(--p); }
.socials { display: flex; gap: .5rem; }
.soc { width: 32px; height: 32px; border: 1px solid var(--border); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--muted); text-decoration: none; font-size: .78rem; transition: border-color .2s, color .2s, background .2s; }
.soc:hover { border-color: var(--p); color: var(--p); background: rgba(28,127,132,.05); }

/* ═══════════════════════
   CONTACT PAGE
═══════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 4rem; margin-top: 3rem; align-items: start; }
.contact-form { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2.5rem; }
.contact-form h2 { font-size: 1.4rem; margin-bottom: 1.6rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: .4rem; letter-spacing: .01em; }
.form-group input,
.form-group select,
.form-group textarea { width: 100%; padding: .75rem 1rem; background: var(--bg); border: 1px solid var(--border2); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--text); transition: border-color .2s, box-shadow .2s; outline: none; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--p); box-shadow: 0 0 0 3px rgba(28,127,132,.1); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; margin-top: .5rem; justify-content: center; font-size: .95rem; padding: .95rem; border: none; cursor: pointer; }
.form-note { font-size: .76rem; color: var(--muted); text-align: center; margin-top: .75rem; font-weight: 300; }
.contact-info { display: grid; gap: 1.4rem; }
.cinfo-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 1.6rem; }
.cinfo-card h3 { font-size: .9rem; margin-bottom: .5rem; }
.cinfo-card p { font-size: .84rem; color: var(--muted); font-weight: 300; line-height: 1.65; }
.cinfo-card a { color: var(--p); text-decoration: none; font-weight: 500; }
.trust-list { list-style: none; display: grid; gap: .65rem; margin-top: .75rem; }
.trust-list li { font-size: .83rem; color: var(--muted); display: flex; align-items: center; gap: 8px; font-weight: 300; }
.trust-list li::before { content: '✓'; color: var(--sup); font-weight: 700; font-size: .85rem; }

/* ═══════════════════════
   ABOUT PAGE EXTRAS
═══════════════════════ */
.team-section { background: var(--bg2); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 2.8rem; }
.value-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 2rem; transition: border-color .3s, transform .3s; }
.value-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.value-icon { font-size: 1.6rem; margin-bottom: 1rem; }
.value-card h3 { font-size: .95rem; margin-bottom: .5rem; }
.value-card p { font-size: .83rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.timeline { margin-top: 3rem; display: grid; gap: 0; }
.tl-item { display: grid; grid-template-columns: 100px 1fr; gap: 2rem; padding-bottom: 2.4rem; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 49px; top: 32px; bottom: 0; width: 1px; background: var(--border2); }
.tl-date { font-family: 'Syne', sans-serif; font-size: .82rem; font-weight: 700; color: var(--p); padding-top: .2rem; text-align: right; }
.tl-dot { width: 10px; height: 10px; background: var(--p); border-radius: 50%; border: 2px solid var(--bg); box-shadow: 0 0 0 2px var(--p); position: absolute; left: 45px; top: 6px; }
.tl-body h3 { font-size: .95rem; margin-bottom: .35rem; }
.tl-body p { font-size: .84rem; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ═══════════════════════
   LEGAL PAGES (privacy/terms)
═══════════════════════ */
.legal-content { max-width: 800px; margin: 0 auto; padding: 5rem 5vw; }
.legal-content h1 { margin-bottom: .5rem; }
.legal-content .legal-date { font-size: .82rem; color: var(--muted); margin-bottom: 3rem; }
.legal-content h2 { font-size: 1.2rem; margin: 2.5rem 0 .75rem; }
.legal-content h3 { font-size: 1rem; margin: 1.5rem 0 .5rem; }
.legal-content p { font-size: .92rem; color: var(--muted); line-height: 1.8; margin-bottom: 1rem; font-weight: 300; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: .92rem; color: var(--muted); line-height: 1.75; margin-bottom: .4rem; font-weight: 300; }
.legal-content a { color: var(--p); }
.legal-nav { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.legal-nav a { font-size: .82rem; color: var(--p); text-decoration: none; padding: .35rem .9rem; border: 1px solid rgba(28,127,132,.22); border-radius: 100px; transition: background .2s; }
.legal-nav a:hover { background: var(--pll); }

/* ═══════════════════════
   SCROLL REVEAL
═══════════════════════ */
.r { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.r.v { opacity: 1; transform: translateY(0); }

/* ═══════════════════════
   RESPONSIVE
═══════════════════════ */
@media (max-width: 1024px) {
  .eco-grid, .about-grid, .results-inner, .contact-grid { grid-template-columns: 1fr; }
  .hero-layout { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg.feat { transform: none; }
  .addons-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-right: 1px solid var(--border); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links li:not(:last-child) { display: none; }
  .nav-hamburger { display: flex; }
  .payment-plan-body { grid-template-columns: 1fr; }
  .pp-left { border-right: none; border-bottom: 1px solid rgba(28,127,132,.1); }
}
@media (max-width: 600px) {
  .svc-grid, .addons-grid, .values-grid, .form-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-inner { padding: 3rem 1.5rem; }
  .tl-item { grid-template-columns: 70px 1fr; gap: 1rem; }
  .pkg-grid { grid-template-columns: 1fr; }
}
