*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --black:#0A0A0A;--white:#FFFFFF;--bg:#F4F5F7;--border:#E5E7EB;
  --muted:#6B7280;--muted2:#9CA3AF;
  --green:#a3c24d;--green-bg:#F4F9E8;--green-border:#D4E8A0;
  --field:#E2E4E8;
  --sans:'Inter',system-ui,sans-serif;
}
html{scroll-behavior:smooth;overflow-x:clip}
body{font-family:var(--sans);background:var(--white);color:var(--black);font-size:16px;line-height:1.6;-webkit-font-smoothing:antialiased;overflow-x:clip;transition:background-color .25s,color .25s}

/* ── NAV ─────────────────────────────────────────────── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:200;
  height:64px;display:flex;align-items:center;
  padding:0 5rem;justify-content:space-between;
  background:var(--white);
  border-bottom:1px solid transparent;
  transition:border-color 0.35s ease,background-color .25s;
}
nav.scrolled{border-color:var(--border)}
.nav-logo{display:flex;align-items:center;gap:10px;text-decoration:none}
.logo-circle{width:38px;height:38px;border-radius:50%;background:var(--black);flex-shrink:0;overflow:hidden;display:flex;align-items:center;justify-content:center;transition:width .35s ease,height .35s ease}
.logo-circle img{width:100%;height:100%;display:block;object-fit:cover}
.logo-wordmark{overflow:hidden;white-space:nowrap;max-width:180px;opacity:1;transform:translateX(0);transition:max-width .35s ease,opacity .3s ease,transform .3s ease}
.logo-name{font-size:15px;font-weight:800;letter-spacing:.05em;color:var(--black);line-height:1;display:block}
.logo-sub{font-size:9px;color:var(--muted2);letter-spacing:.14em;text-transform:uppercase;margin-top:2px;display:block}
nav.scrolled .logo-circle{width:30px;height:30px}
nav.scrolled .logo-wordmark{max-width:0;opacity:0;transform:translateX(-10px)}
.nav-links{display:flex;list-style:none}
.nav-links a{font-size:13px;font-weight:500;color:var(--muted);text-decoration:none;padding:0 .6rem;height:64px;display:flex;align-items:center;transition:color .15s;white-space:nowrap}
.nav-links a:hover,.nav-links a.active{color:var(--black)}
.nav-cta{font-size:13px;font-weight:600;color:var(--white);background:var(--black);padding:.55rem 1.25rem;border-radius:8px;text-decoration:none;transition:opacity .15s;white-space:nowrap}
.nav-cta:hover{opacity:.75}

/* ── NAV END GROUP (toggle + cta + hamburger) ────────── */
.nav-end{display:flex;align-items:center;gap:20px}

/* ── DARK MODE TOGGLE ────────────────────────────────── */
.theme-toggle{width:32px;height:32px;border:none;border-radius:0;background:transparent;cursor:pointer;display:flex;align-items:center;justify-content:center;flex-shrink:0;padding:0}
.theme-toggle:hover{background:transparent}
.theme-toggle svg{width:17px;height:17px;stroke:var(--muted2);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .15s,fill .15s}
/* Moon fills solid black on hover */
.theme-toggle:hover .icon-moon{fill:var(--black);stroke:var(--black)}
.theme-toggle:hover .icon-sun{stroke:var(--black)}
.icon-sun{display:none}
html.dark .icon-sun{display:block}
html.dark .icon-moon{display:none}
html.dark .theme-toggle svg{stroke:#555}
html.dark .theme-toggle:hover .icon-moon{fill:#F0F0F0;stroke:#F0F0F0}
html.dark .theme-toggle:hover .icon-sun{stroke:#F0F0F0}


/* ── HERO ─────────────────────────────────────────────── */
.hero{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden}
.hero-video{position:absolute;inset:0;z-index:0;width:100%;height:100%;object-fit:cover;object-position:center right}
.hero-overlay{position:absolute;inset:0;z-index:1;background:linear-gradient(to right,rgba(255,255,255,1) 0%,rgba(255,255,255,.96) 28%,rgba(255,255,255,.65) 52%,rgba(255,255,255,.08) 75%,rgba(255,255,255,0) 100%);transition:background .25s}
.hero-content{position:relative;z-index:2;padding:10rem 5rem 6rem;max-width:38vw;width:38vw}
.hero-badge{display:inline-flex;align-items:center;gap:6px;border:1px solid var(--border);border-radius:100px;padding:5px 12px 5px 8px;margin-bottom:2rem;font-size:12px;color:var(--muted);font-weight:500;background:rgba(255,255,255,.92);width:fit-content;flex-wrap:nowrap;white-space:nowrap;transition:background .25s,border-color .25s}
.badge-dot{width:7px;height:7px;border-radius:50%;background:var(--green);animation:blink 2.5s infinite;flex-shrink:0}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.25}}
.hero h1{font-size:clamp(40px,5vw,70px);font-weight:800;line-height:1;letter-spacing:-.03em;color:var(--black);margin-bottom:1.75rem;transition:color .25s}
.hero h1 .ac{color:var(--green)}
.hero-desc{font-size:17px;color:var(--muted);line-height:1.75;max-width:100%;margin-bottom:2.5rem}
.hero-btns{display:flex;gap:1rem;align-items:center;margin-bottom:4rem;flex-wrap:wrap}
.btn-black{background:var(--black);color:var(--white);padding:.85rem 2rem;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:opacity .15s;display:inline-flex;align-items:center;gap:6px}
.btn-black:hover{opacity:.78}
.btn-border{border:1px solid rgba(10,10,10,.25);color:var(--black);padding:.85rem 1.75rem;border-radius:10px;font-size:14px;font-weight:500;text-decoration:none;transition:border-color .15s,background .25s,color .25s;background:rgba(255,255,255,.78)}
.btn-border:hover{border-color:var(--black)}
.hero-stats{display:flex;gap:3rem;padding-top:2.5rem;border-top:1px solid var(--border);flex-wrap:wrap}
.stat-n{font-size:24px;font-weight:800;color:var(--black);line-height:1;transition:color .25s}
.stat-l{font-size:11px;color:var(--muted2);margin-top:4px}

/* ── STRIP ────────────────────────────────────────────── */
.strip{border-top:1px solid var(--border);border-bottom:1px solid var(--border);background:var(--bg);padding:.9rem 5rem;display:flex;align-items:center;gap:.65rem;flex-wrap:wrap;transition:background .25s,border-color .25s}
.strip-label{font-size:11px;color:var(--muted2);font-weight:600;letter-spacing:.1em;text-transform:uppercase;margin-right:.5rem;white-space:nowrap}
.strip-tag{font-size:12px;color:var(--muted);font-weight:500;background:var(--white);border:1px solid var(--border);border-radius:100px;padding:.25rem .8rem;transition:background .25s,border-color .25s}

/* ── SECTION HELPERS ──────────────────────────────────── */
.section{padding:6rem 5rem;background:var(--white);transition:background .25s}
.section-bg{padding:6rem 5rem;background:var(--bg);transition:background .25s}
.section-dark{padding:6rem 5rem;background:var(--black);color:var(--white)}
.s-eye{font-size:11px;font-weight:700;color:var(--muted2);letter-spacing:.14em;text-transform:uppercase;margin-bottom:.9rem;display:block}
.s-eye-green{color:var(--green)!important}
.s-h2{font-size:clamp(28px,3vw,42px);font-weight:800;line-height:1.1;letter-spacing:-.025em;color:var(--black);margin-bottom:1rem;transition:color .25s}
.s-h2-w{color:var(--white)}
.s-desc{font-size:16px;color:var(--muted);max-width:560px;line-height:1.75;margin-bottom:3.5rem}
.s-desc-w{color:#888;max-width:500px}

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero{padding:9rem 5rem 5rem;background:var(--bg);transition:background .25s}
.page-hero .s-eye{margin-bottom:.5rem}
.page-hero h1{font-size:clamp(32px,4vw,58px);font-weight:800;line-height:1.05;letter-spacing:-.03em;color:var(--black);margin-bottom:1rem;transition:color .25s}
.page-hero p{font-size:18px;color:var(--muted);max-width:580px;line-height:1.75}

/* ── WHAT WE DO ───────────────────────────────────────── */
.svc-list{border-top:1px solid var(--border);transition:border-color .25s}
.svc-row{display:grid;grid-template-columns:56px 44px 1fr auto;gap:0 1.5rem;align-items:start;padding:2.25rem 0;border-bottom:1px solid var(--border);transition:background .15s,border-color .25s;cursor:default;position:relative}
.svc-row:hover{background:var(--bg);margin:0 -5rem;padding-left:5rem;padding-right:5rem}
.svc-num{font-size:12px;color:var(--muted2);font-weight:500;padding-top:6px}
.svc-icon-wrap{padding-top:3px}
.svc-icon{width:38px;height:38px;display:flex;align-items:center;justify-content:center}
.svc-icon svg{width:26px;height:26px;stroke:var(--black);stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s}
.svc-body h3{font-size:20px;font-weight:700;letter-spacing:-.015em;line-height:1.2;margin-bottom:.45rem;color:var(--black);transition:color .25s}
.svc-body p{font-size:14px;color:var(--muted);line-height:1.75;max-width:580px}
.svc-tags{display:flex;gap:5px;margin-top:.8rem;flex-wrap:wrap}
.stag{font-size:11px;padding:2px 9px;border-radius:100px;background:var(--bg);color:var(--muted);border:1px solid var(--border);font-weight:500;transition:background .25s,border-color .25s}
.stag-green{background:var(--green-bg);color:#5C7020;border-color:var(--green-border)}
.svc-badge{font-size:10px;font-weight:700;letter-spacing:.07em;text-transform:uppercase;padding:3px 10px;border-radius:100px;white-space:nowrap;margin-top:4px}
.badge-new{background:var(--green-bg);color:#5C7020;border:1px solid var(--green-border)}
.badge-core{background:var(--bg);color:var(--muted2);border:1px solid var(--border)}

/* ── CONNECT ──────────────────────────────────────────── */
.conn-layout{display:grid;grid-template-columns:1fr 1fr;gap:5rem;align-items:start}
.hub{border:1px solid #333;border-radius:20px;padding:2.5rem;background:#161616}
.hub-top{display:flex;flex-direction:column;align-items:center;margin-bottom:2rem}
.hub-icon{width:60px;height:60px;background:var(--green);border-radius:16px;display:flex;align-items:center;justify-content:center;margin-bottom:.5rem}
.hub-icon svg{width:28px;height:28px;stroke:white;stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round}
.hub-lbl{font-size:10px;color:var(--green);font-weight:700;letter-spacing:.1em;text-transform:uppercase}
.hub-grid{display:grid;grid-template-columns:1fr 1fr;gap:8px}
.hub-node{border:1px solid var(--green);border-radius:10px;padding:.65rem .9rem;font-size:12px;font-weight:500;color:#aaa;display:flex;align-items:center;gap:8px;background:#1e1e1e}
.hub-node svg{width:14px;height:14px;stroke:var(--green);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.conn-list{display:flex;flex-direction:column;animation:none!important}
.conn-item{display:flex;gap:1.25rem;align-items:flex-start;padding:1.5rem 0;border-bottom:1px solid #222;animation:none!important;transform:none!important}
.conn-item:last-child{border-bottom:none}
.ci-icon{width:38px;height:38px;border:1px solid #333;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.ci-icon svg{width:18px;height:18px;stroke:var(--green);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round}
.ci-body h4{font-size:15px;font-weight:600;margin-bottom:3px}
.ci-body p{font-size:13px;color:#888;line-height:1.7}

/* ── PROCESS ──────────────────────────────────────────── */
.proc-grid{display:grid;grid-template-columns:repeat(4,1fr);border:1px solid var(--border);border-radius:16px;overflow:hidden;background:var(--white);transition:background .25s,border-color .25s}
.proc-step{padding:2.5rem 2rem;border-right:1px solid var(--border);transition:background .15s,border-color .25s}
.proc-step:last-child{border-right:none}
.proc-step:hover{background:var(--bg)}
.proc-icon{width:44px;height:44px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;border:1px solid var(--border);border-radius:11px;transition:border-color .25s}
.proc-icon svg{width:22px;height:22px;stroke:var(--black);stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s}
.proc-n{font-size:11px;font-weight:700;color:var(--muted2);letter-spacing:.08em;margin-bottom:.4rem}
.proc-step h3{font-size:15px;font-weight:700;margin-bottom:.4rem;color:var(--black);transition:color .25s}
.proc-step p{font-size:13px;color:var(--muted);line-height:1.7}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testi-section{background:var(--white);overflow:hidden;transition:background .25s}
.testi-outer{}
.testi-track *{animation:none}
.testi-card{border:1px solid var(--border);border-radius:16px;padding:2rem;background:var(--white);display:flex;flex-direction:column;height:100%;transition:background .25s,border-color .25s}
.testi-stars{display:flex;gap:3px;margin-bottom:1rem}
.testi-stars svg{width:13px;height:13px;fill:var(--green);stroke:none}
.testi-q{font-size:13px;color:#374151;line-height:1.8;margin-bottom:1.25rem;font-style:italic;flex:1;transition:color .25s}
.testi-author{display:flex;align-items:center;gap:10px}
.tav{width:34px;height:34px;border-radius:50%;background:var(--black);display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;color:white;flex-shrink:0}
.tname{font-size:13px;font-weight:600;color:var(--black);transition:color .25s}
.trole{font-size:11px;color:var(--muted2)}

/* ── ABOUT ────────────────────────────────────────────── */
.about-section{background:var(--bg);padding:6rem 5rem 7rem;overflow:hidden;transition:background .25s}
.about-face{width:380px;margin-bottom:2rem;margin-left:0}
.about-face img{width:100%;display:block;mix-blend-mode:normal}
.about-label{font-size:11px;font-weight:700;color:var(--muted2);letter-spacing:.14em;text-transform:uppercase;margin-bottom:.75rem;display:block}
.about-h2{font-size:clamp(24px,3vw,34px);font-weight:800;line-height:1.2;letter-spacing:-.025em;margin-bottom:1.5rem;color:var(--black);transition:color .25s}
.about-h2 .ac{color:var(--green)}
.about-body p{font-size:15px;color:var(--muted);line-height:1.85;margin-bottom:1rem;max-width:780px}
.about-nums{display:flex;gap:3rem;padding-top:2.5rem;border-top:1px solid var(--border);margin-top:1.5rem;flex-wrap:wrap;transition:border-color .25s}
.anum{font-size:28px;font-weight:800;color:var(--black);line-height:1;transition:color .25s}
.alabel{font-size:11px;color:var(--muted2);margin-top:4px}

/* ── CONTACT ──────────────────────────────────────────── */
.contact-section{padding:6rem 5rem;background:var(--white);transition:background .25s}
.contact-grid{display:grid;grid-template-columns:1fr 1.2fr;gap:5rem;align-items:start}
.contact-info h2{font-size:32px;font-weight:800;letter-spacing:-.025em;margin-bottom:1rem;line-height:1.2;transition:color .25s}
.contact-info p{font-size:15px;color:var(--muted);line-height:1.8;margin-bottom:1.75rem}
.contact-cta{display:inline-flex;align-items:center;gap:6px;background:var(--black);color:var(--white);padding:.85rem 2rem;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:opacity .15s;margin-bottom:2rem}
.contact-cta:hover{opacity:.78}
.contact-details{display:flex;flex-direction:column;gap:.75rem;margin-top:2rem}
.contact-item{display:flex;align-items:center;gap:.75rem;font-size:14px;color:var(--black);text-decoration:none;transition:color .15s}
.contact-item svg{width:18px;height:18px;stroke:var(--green);stroke-width:1.75;fill:none;stroke-linecap:round;stroke-linejoin:round;flex-shrink:0}
.contact-item:hover{color:var(--green)}

/* ── FORM ─────────────────────────────────────────────── */
.contact-form{display:flex;flex-direction:column;gap:.85rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.85rem}
.form-group{display:flex;flex-direction:column}
.form-group input,.form-group textarea,.form-group select{
  border:1.5px solid #9CA3AF;outline:none;border-radius:0;
  padding:.85rem 1rem;font-size:14px;font-family:var(--sans);
  color:var(--black);background:var(--white);width:100%;
  transition:border-color .15s,background .25s,color .25s;
}
.form-group input:focus,.form-group textarea:focus,.form-group select:focus{border-color:var(--black)}
.form-group input::placeholder,.form-group textarea::placeholder{color:var(--muted2)}
.form-group select{color:var(--muted2);appearance:none;-webkit-appearance:none;cursor:pointer}
.form-group select.has-value{color:var(--black)}
.form-group textarea{resize:vertical;min-height:120px}
.form-honeypot{display:none}
.form-note{font-size:11px;color:var(--muted2);margin-top:.3rem;padding-left:.25rem}
.phone-row{display:flex;gap:0}
.phone-prefix{display:flex;align-items:center;gap:0}
.phone-prefix select{
  border:1.5px solid #9CA3AF;border-right:none;border-radius:0!important;
  padding:.85rem .75rem;font-size:14px;font-family:var(--sans);
  color:var(--black);background:var(--white);outline:none;cursor:pointer;
  width:auto;flex-shrink:0;transition:border-color .15s,background .25s;
  -webkit-appearance:none;appearance:none;height:52px;line-height:1;box-sizing:border-box;
}
.phone-prefix select:focus{border-color:var(--black)}
.phone-input{flex:1}
.phone-input input{
  border:1.5px solid #9CA3AF!important;border-radius:0!important;
  padding:.85rem 1rem;font-size:14px;font-family:var(--sans);
  color:var(--black);background:var(--white);outline:none;width:100%;
  height:52px;box-sizing:border-box;transition:border-color .15s,background .25s;
}
.phone-input input:focus{border-color:var(--black)!important}
.spam-label{font-size:14px;font-weight:600;color:#374151;margin-bottom:.5rem;transition:color .25s}
.btn-submit{background:var(--black);color:var(--white);padding:.9rem 2rem;border-radius:0;font-size:14px;font-weight:600;font-family:var(--sans);cursor:pointer;transition:opacity .15s;align-self:flex-start;display:flex;align-items:center;gap:8px;margin-top:.25rem;border:none}
.btn-submit:hover{opacity:.78}
.btn-submit:disabled{opacity:.5;cursor:not-allowed}
.form-success{display:none;background:var(--green-bg);border:1px solid var(--green-border);border-radius:12px;padding:1.25rem 1.5rem;font-size:14px;color:#3D5C00;font-weight:500}
.form-error{display:none;background:#FEF2F2;border:1px solid #FECACA;border-radius:12px;padding:1.25rem 1.5rem;font-size:14px;color:#991B1B}

/* ── VOICEQUOTE ───────────────────────────────────────── */
.vq-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem;margin-top:3rem}
.vq-step{padding:2rem;border:1px solid var(--border);border-radius:16px;background:var(--white);transition:background .25s,border-color .25s}
.vq-icon{width:44px;height:44px;border:1px solid var(--border);border-radius:11px;display:flex;align-items:center;justify-content:center;margin-bottom:1.25rem;transition:border-color .25s}
.vq-icon svg{width:22px;height:22px;stroke:var(--green);stroke-width:1.5;fill:none;stroke-linecap:round;stroke-linejoin:round}
.vq-step h4{font-size:15px;font-weight:700;color:var(--black);margin-bottom:.5rem;transition:color .25s}
.vq-step p{font-size:13px;color:var(--muted);line-height:1.7}

/* ── TELL US ──────────────────────────────────────────── */
.tell-grid{display:grid;grid-template-columns:1fr 1.4fr;gap:5rem;align-items:start}
.tell-or{font-size:11px;color:var(--muted2);font-weight:700;letter-spacing:.1em;text-transform:uppercase;margin:1.75rem 0;display:flex;align-items:center;gap:1rem}
.tell-or::before,.tell-or::after{content:'';flex:1;height:1px;background:var(--border);transition:background .25s}

/* ── MESSAGING BUTTONS ────────────────────────────────── */
.msg-btns{display:flex;flex-direction:column;gap:.75rem}
.btn-wa{display:inline-flex;align-items:center;gap:10px;background:#25D366;color:#fff;padding:.85rem 1.75rem;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:opacity .15s}
.btn-wa:hover{opacity:.85}
.btn-tg{display:inline-flex;align-items:center;gap:10px;background:#229ED9;color:#fff;padding:.85rem 1.75rem;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:opacity .15s}
.btn-tg:hover{opacity:.85}
.btn-wa svg,.btn-tg svg{width:20px;height:20px;fill:white;flex-shrink:0}
.btn-schedule{display:inline-flex;align-items:center;gap:6px;background:var(--black);color:var(--white);padding:.85rem 1.75rem;border-radius:10px;font-size:14px;font-weight:600;text-decoration:none;transition:opacity .15s}
.btn-schedule:hover{opacity:.78}
/* Full-width variant */
.msg-btns-full .btn-schedule,
.msg-btns-full .btn-wa,
.msg-btns-full .btn-tg{width:100%;justify-content:center;box-sizing:border-box}
/* Auto-width: shrinks to widest button, all equal */
.msg-btns-auto{display:inline-flex;flex-direction:column;gap:.75rem}
.msg-btns-auto .btn-schedule,
.msg-btns-auto .btn-wa,
.msg-btns-auto .btn-tg{width:100%;justify-content:center;box-sizing:border-box}

/* ── SECTION CLICK-THROUGH CTA ────────────────────────── */
.section-cta{display:inline-flex;align-items:center;gap:8px;font-size:14px;font-weight:600;color:var(--black);text-decoration:none;margin-top:2.5rem;padding-bottom:.2rem;border-bottom:1.5px solid var(--border);transition:color .15s,border-color .15s}
.section-cta:hover{color:var(--green);border-color:var(--green)}
.section-cta svg{width:16px;height:16px;stroke:currentColor;stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:transform .2s}
.section-cta:hover svg{transform:translateX(4px)}
.section-cta-w{color:rgba(255,255,255,.65);border-color:rgba(255,255,255,.2)}
.section-cta-w:hover{color:var(--green);border-color:var(--green)}
html.dark .section-cta{color:#C0C0C0;border-color:#2A2A2A}
html.dark .section-cta:hover{color:var(--green);border-color:var(--green)}

/* ── FOOTER ───────────────────────────────────────────── */
footer{background:var(--black);padding:4rem 5rem 2.5rem;border-top:1px solid rgba(255,255,255,.1)}
.footer-top{display:grid;grid-template-columns:1.5fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-name{font-size:16px;font-weight:800;color:white;letter-spacing:.05em;margin-bottom:.5rem}
.footer-tagline{font-size:13px;color:rgba(255,255,255,.35);max-width:230px;line-height:1.65;margin-bottom:1rem}
.footer-contact a,.footer-contact div{display:block;font-size:13px;color:var(--green);text-decoration:none;margin-bottom:3px}
.footer-col h4{font-size:11px;color:rgba(255,255,255,.3);letter-spacing:.12em;text-transform:uppercase;margin-bottom:1rem;font-weight:600}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:.55rem}
.footer-col a{font-size:13px;color:rgba(255,255,255,.5);text-decoration:none;transition:color .15s}
.footer-col a:hover{color:white}
.footer-bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.footer-copy{font-size:12px;color:rgba(255,255,255,.2)}

/* ── ANIMATIONS ───────────────────────────────────────── */
@keyframes fadeUp{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:translateY(0)}}
.hero-content>*{animation:fadeUp .6s ease both}
.hero-content>*:nth-child(1){animation-delay:.1s}
.hero-content>*:nth-child(2){animation-delay:.2s}
.hero-content>*:nth-child(3){animation-delay:.3s}
.hero-content>*:nth-child(4){animation-delay:.4s}
.hero-content>*:nth-child(5){animation-delay:.5s}

/* ── EMBLA CAROUSEL ───────────────────────────────────── */
.embla{overflow:hidden;width:100%}
.embla__container{display:flex;gap:1.5rem}
.embla__slide{flex:0 0 calc(25% - 1.125rem);min-width:0}
.embla__controls{display:flex;align-items:center;justify-content:center;gap:1rem;margin-top:2rem}
.embla__btn{width:40px;height:40px;border:1px solid var(--border);border-radius:50%;background:var(--white);cursor:pointer;display:flex;align-items:center;justify-content:center;transition:background .15s,border-color .25s;flex-shrink:0}
.embla__btn:hover{background:var(--black);border-color:var(--black)}
.embla__btn:hover svg{stroke:white}
.embla__btn svg{width:16px;height:16px;stroke:var(--black);stroke-width:2;fill:none;stroke-linecap:round;stroke-linejoin:round;transition:stroke .25s}
.embla__btn:disabled{opacity:0.3;cursor:not-allowed}
.embla__dots{display:flex;gap:6px;align-items:center}
.embla__dot{min-width:28px;height:28px;border-radius:6px;background:transparent;border:1px solid var(--border);padding:0 6px;cursor:pointer;transition:background .2s,color .2s,border-color .25s;font-size:12px;font-weight:600;color:var(--muted2);font-family:var(--sans)}
.embla__dot.is-selected{background:var(--black);border-color:var(--black);color:var(--white)}

/* ── HAMBURGER ────────────────────────────────────────── */
.hamburger{display:none;flex-direction:column;justify-content:center;align-items:center;width:40px;height:40px;cursor:pointer;background:none;border:none;padding:0;gap:5px}
.hamburger span{display:block;width:22px;height:2px;background:var(--black);border-radius:2px;transition:transform 0.3s ease,opacity 0.3s ease,background .25s}
.hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.hamburger.open span:nth-child(2){opacity:0}
.hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
/* ── NAV COLLAPSE AT 1200PX ─── must be AFTER .hamburger{display:none} above */
@media(max-width:1200px){
  .hamburger{display:flex}
  .nav-links{display:none!important}
  .nav-end .nav-cta{display:none!important}
  nav{padding-left:2rem;padding-right:2rem}
}
.mobile-menu{display:none;position:fixed;top:64px;left:0;right:0;z-index:199;background:var(--white);border-bottom:1px solid var(--border);flex-direction:column;padding:1rem 0;box-shadow:0 8px 24px rgba(0,0,0,0.08);transition:background .25s,border-color .25s}
.mobile-menu.open{display:flex}
.mobile-menu a{font-size:15px;font-weight:500;color:var(--black);text-decoration:none;padding:0.85rem 2rem;border-bottom:1px solid var(--border);transition:background 0.15s,color .25s,border-color .25s;display:block}
.mobile-menu a:last-child{border-bottom:none}
.mobile-menu a:hover{background:var(--bg)}
.mobile-menu .mob-cta{background:var(--black);color:var(--white);padding:0.85rem 1.5rem;margin:0.75rem 2rem;font-weight:600;text-align:center;display:block;border-bottom:none;border-radius:8px}
.mobile-menu .mob-cta:hover{opacity:0.8;background:var(--black)}

/* ── PORTFOLIO GRID ───────────────────────────────────── */
.port-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:2rem}
.port-card{border:1px solid var(--border);border-radius:16px;overflow:hidden;background:var(--white);transition:background .25s,border-color .25s,transform .15s;cursor:pointer}
.port-card:hover{transform:translateY(-3px)}
.port-card-img{width:100%;aspect-ratio:16/9;background:var(--bg);display:flex;align-items:center;justify-content:center;overflow:hidden}
.port-card-img img{width:100%;height:100%;object-fit:cover;display:block}
.port-card-body{padding:1.5rem}
.port-card-tag{font-size:11px;font-weight:600;color:var(--green);letter-spacing:.08em;text-transform:uppercase;margin-bottom:.4rem}
.port-card h3{font-size:16px;font-weight:700;color:var(--black);margin-bottom:.4rem;transition:color .25s}
.port-card p{font-size:13px;color:var(--muted);line-height:1.7}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media(max-width:1600px) and (min-width:1101px){.hero-content{max-width:75vw;width:75vw}}
@media(max-width:1100px){
  nav,.strip,.contact-section,footer{padding-left:2.5rem;padding-right:2.5rem}
  .section,.section-bg,.section-dark,.about-section,.page-hero{padding-left:2.5rem;padding-right:2.5rem}
  .hero-content{padding:9rem 2.5rem 5rem;max-width:75vw;width:75vw}
  .svc-row:hover{margin:0 -2.5rem;padding-left:2.5rem;padding-right:2.5rem}
  .conn-layout{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .footer-top{grid-template-columns:1fr 1fr}
  .proc-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:768px){
  nav,.strip,.contact-section,footer{padding-left:1.25rem;padding-right:1.25rem}
  .hero-badge{white-space:normal;font-size:11px}
  .hero h1{font-size:clamp(32px,9vw,52px)}
  .section,.section-bg,.section-dark,.about-section,.page-hero{padding-left:1.25rem;padding-right:1.25rem;padding-top:3.5rem;padding-bottom:3.5rem}
  .hero-content{padding:7rem 1.25rem 4rem;max-width:100%!important;width:100%!important}
  .svc-row{grid-template-columns:40px 1fr;gap:0 1rem}
  .svc-row .svc-num{display:none}
  .svc-row:hover{margin:0 -1.25rem;padding-left:1.25rem;padding-right:1.25rem}
  .svc-badge{display:none}
  .testi-card{width:270px}
  .about-face{width:200px}
  .footer-top{grid-template-columns:1fr}
  .proc-grid{grid-template-columns:1fr 1fr}
  .form-row{grid-template-columns:1fr}
  .contact-grid{gap:3rem}
  .tell-grid{grid-template-columns:1fr}
  .vq-grid{grid-template-columns:1fr}
  .port-grid{grid-template-columns:1fr}
}
@media(max-width:900px){
  .vq-grid{grid-template-columns:1fr 1fr}
  .port-grid{grid-template-columns:1fr 1fr}
}
@media(max-width:1200px){.embla__slide{flex:0 0 calc(33.333% - 1rem)}}
@media(max-width:900px){.embla__slide{flex:0 0 calc(50% - 0.75rem)}}
@media(max-width:600px){.embla__slide{flex:0 0 100%}}

/* ── DARK MODE ────────────────────────────────────────── */
html.dark body{background:#111;color:#F0F0F0}
html.dark nav{background:#111}
html.dark nav.scrolled{border-bottom-color:#2A2A2A}
html.dark .logo-name{color:#F0F0F0}
html.dark .logo-sub{color:#6B7280}
html.dark .nav-links a{color:#9CA3AF}
html.dark .nav-links a:hover,html.dark .nav-links a.active{color:#F0F0F0}
html.dark .hamburger span{background:#F0F0F0}
html.dark .mobile-menu{background:#111;border-bottom-color:#2A2A2A;box-shadow:0 8px 24px rgba(0,0,0,.5)}
html.dark .mobile-menu a{color:#F0F0F0;border-bottom-color:#2A2A2A}
html.dark .mobile-menu a:hover{background:#1A1A1A}
html.dark .hero-overlay{background:linear-gradient(to right,rgba(17,17,17,1) 0%,rgba(17,17,17,.96) 28%,rgba(17,17,17,.65) 52%,rgba(17,17,17,.08) 75%,rgba(17,17,17,0) 100%)}
html.dark .hero-badge{background:rgba(17,17,17,.92);border-color:#2A2A2A}
html.dark .hero h1,html.dark .stat-n{color:#F0F0F0}
html.dark .btn-border{background:rgba(17,17,17,.78);color:#F0F0F0;border-color:rgba(240,240,240,.25)}
html.dark .btn-border:hover{border-color:#F0F0F0}
html.dark .strip{background:#1A1A1A;border-color:#2A2A2A}
html.dark .strip-tag{background:#111;border-color:#2A2A2A}
html.dark .section{background:#111}
html.dark .section-bg{background:#1A1A1A}
html.dark .page-hero{background:#1A1A1A}
html.dark .s-h2{color:#F0F0F0}
html.dark .page-hero h1{color:#F0F0F0}
html.dark .svc-list{border-top-color:#2A2A2A}
html.dark .svc-row{border-bottom-color:#2A2A2A}
html.dark .svc-row:hover{background:#1A1A1A}
html.dark .svc-body h3{color:#F0F0F0}
html.dark .svc-icon svg{stroke:#F0F0F0}
html.dark .stag{background:#1A1A1A;border-color:#2A2A2A;color:#9CA3AF}
html.dark .stag-green{background:#1C2800;color:var(--green);border-color:#3A5010}
html.dark .badge-new{background:#1C2800;color:var(--green);border-color:#3A5010}
html.dark .badge-core{background:#1A1A1A;color:#6B7280;border-color:#2A2A2A}
html.dark .proc-grid{background:#1A1A1A;border-color:#2A2A2A}
html.dark .proc-step{border-right-color:#2A2A2A}
html.dark .proc-step:hover{background:#222}
html.dark .proc-icon{border-color:#2A2A2A}
html.dark .proc-icon svg{stroke:#F0F0F0}
html.dark .proc-step h3{color:#F0F0F0}
html.dark .testi-section{background:#111}
html.dark .testi-card{background:#1A1A1A;border-color:#2A2A2A}
html.dark .testi-q{color:#C0C0C0}
html.dark .tname{color:#F0F0F0}
html.dark .about-section{background:#1A1A1A}
html.dark .about-h2{color:#F0F0F0}
html.dark .about-nums{border-top-color:#2A2A2A}
html.dark .anum{color:#F0F0F0}
html.dark .contact-section{background:#111}
html.dark .contact-info h2{color:#F0F0F0}
html.dark .contact-item{color:#F0F0F0}
html.dark .form-group input,html.dark .form-group textarea,html.dark .form-group select,
html.dark .phone-prefix select,html.dark .phone-input input{background:#1A1A1A;color:#F0F0F0;border-color:#3A3A3A}
html.dark .form-group input:focus,html.dark .form-group textarea:focus,html.dark .form-group select:focus{border-color:#F0F0F0}
html.dark .form-group input::placeholder,html.dark .form-group textarea::placeholder{color:#555}
html.dark .form-group select.has-value,html.dark .phone-prefix select{color:#F0F0F0}
html.dark .phone-input input{background:#1A1A1A!important;border-color:#3A3A3A!important}
html.dark .phone-input input:focus{border-color:#F0F0F0!important}
html.dark .spam-label{color:#C0C0C0}
html.dark .vq-step{background:#1A1A1A;border-color:#2A2A2A}
html.dark .vq-step h4{color:#F0F0F0}
html.dark .vq-icon{border-color:#2A2A2A}
html.dark .tell-or::before,html.dark .tell-or::after{background:#2A2A2A}
html.dark .embla__btn{background:#1A1A1A;border-color:#2A2A2A}
html.dark .embla__btn svg{stroke:#F0F0F0}
html.dark .embla__btn:hover{background:#F0F0F0;border-color:#F0F0F0}
html.dark .embla__btn:hover svg{stroke:#111}
html.dark .embla__dot{border-color:#2A2A2A;color:#6B7280}
html.dark .embla__dot.is-selected{background:#F0F0F0;border-color:#F0F0F0;color:#111}
html.dark .port-card{background:#1A1A1A;border-color:#2A2A2A}
html.dark .port-card h3{color:#F0F0F0}
html.dark .port-card-img{background:#222}
