/* =========================================================
   DIGISEC TECHNOLOGIES — THEME STYLESHEET
   Design tokens carried over from corporate deck for brand consistency
   ========================================================= */
:root{
  --navy:#0F2444;
  --navy-dark:#0A1830;
  --navy-mid:#13294F;
  --teal:#00B8A9;
  --teal-light:#E3F6F4;
  --slate:#8FA0BC;
  --offwhite:#F7F9FC;
  --card:#EEF2F8;
  --text-dark:#15203A;
  --muted:#5C6B85;
  --white:#FFFFFF;
  --red:#C0392B;
  --radius:14px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Calibri','Segoe UI',system-ui,-apple-system,Arial,sans-serif;
  color:var(--text-dark);
  background:var(--white);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{
  font-family:Cambria,'Iowan Old Style','Times New Roman',serif;
  font-weight:700;
  line-height:1.15;
  color:var(--text-dark);
}
a{text-decoration:none; color:inherit;}
img,svg{display:block; max-width:100%;}
ul{list-style:none;}
.container{max-width:1200px; margin:0 auto; padding:0 32px;}
.eyebrow{font-size:12.5px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--teal);}
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:14px 28px; border-radius:8px; font-weight:700; font-size:15px;
  font-family:'Calibri','Segoe UI',sans-serif; cursor:pointer; border:none;
  transition:transform .15s ease, box-shadow .15s ease; white-space:nowrap;
}
.btn:hover{transform:translateY(-2px);}
.btn-primary{background:var(--teal); color:var(--navy-dark); box-shadow:0 8px 24px rgba(0,184,169,.35);}
.btn-ghost{background:transparent; color:var(--white); border:1.5px solid rgba(255,255,255,.35);}
.btn-ghost:hover{border-color:var(--teal); color:var(--teal);}
.btn-dark{background:var(--navy); color:var(--white);}
.btn-outline-dark{background:transparent; color:var(--navy); border:1.5px solid var(--navy);}
.btn-outline-dark:hover{background:var(--navy); color:var(--white);}
.btn-block{width:100%; justify-content:center;}

/* ---------- NAV ---------- */
header.site-header{
  position:sticky; top:0; z-index:200;
  background:rgba(10,24,48,.94); backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav{display:flex; align-items:center; justify-content:space-between; height:78px;}
.brand{display:flex; align-items:center; gap:10px;}
.brand-mark{width:36px; height:36px; border-radius:8px; background:var(--teal); display:flex; align-items:center; justify-content:center; flex:none;}
/* Explicit, high-specificity, !important rule so this can't be silently overridden by
   leftover CSS from a previous theme/page-builder plugin or a caching quirk. */
img.site-logo-img{
  height:50px !important; width:50px !important; max-width:50px !important;
  max-height:50px !important; min-width:0 !important; display:block !important;
}
img.site-logo-img-footer{ height:50px !important; width:50px !important; }
.brand-name{color:var(--white); font-family:Cambria,serif; font-weight:700; font-size:18px; letter-spacing:.3px;}
.brand-name span{color:var(--teal);}
.nav-links{display:flex; align-items:center; gap:34px;}
.nav-links a{color:#D7DEEC; font-size:14.5px; font-weight:600; position:relative; padding:4px 0;}
.nav-links a:hover, .nav-links a.active{color:var(--teal);}
.nav-links a.active::after{content:""; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--teal); border-radius:2px;}
.nav-cta{display:flex; align-items:center; gap:18px;}
.nav-cta .btn{padding:11px 22px; font-size:13.5px;}
.menu-toggle{display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none;}
.menu-toggle span{width:24px; height:2.5px; background:var(--white); border-radius:2px;}
.mobile-nav{display:none; position:fixed; top:78px; right:0; bottom:0; left:0; background:var(--navy-dark); z-index:190; padding:30px 32px; flex-direction:column; gap:22px; overflow-y:auto;}
.mobile-nav.open{display:flex;}
.mobile-nav a{color:var(--white); font-size:17px; font-weight:600;}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero{
  position:relative; overflow:hidden;
  background:radial-gradient(1000px 500px at 80% -10%, #16305c 0%, var(--navy) 45%, var(--navy-dark) 100%);
  padding:70px 0 64px;
}
.page-hero-decor{position:absolute; border-radius:50%; background:var(--navy-mid); opacity:.5;}
.page-hero-decor.d1{width:420px; height:420px; top:-180px; right:-120px;}
.page-hero .crumb{color:var(--slate); font-size:12.5px; margin-bottom:14px;}
.page-hero .crumb a{color:var(--teal);}
.page-hero h1{color:var(--white); font-size:38px; margin-bottom:14px; position:relative; z-index:2;}
.page-hero p{color:var(--slate); font-size:16px; max-width:620px; position:relative; z-index:2;}

/* ---------- HOME HERO ---------- */
.hero{
  position:relative; overflow:hidden;
  background:radial-gradient(1200px 600px at 78% -10%, #16305c 0%, var(--navy) 45%, var(--navy-dark) 100%);
  padding:88px 0 100px;
}
.hero-decor{position:absolute; border-radius:50%; background:var(--navy-mid); opacity:.55;}
.hero-decor.d1{width:520px; height:520px; top:-220px; right:-140px;}
.hero-decor.d2{width:340px; height:340px; bottom:-180px; left:-120px;}
.hero-grid{display:grid; grid-template-columns:1.05fr .95fr; gap:56px; align-items:center; position:relative; z-index:2;}
.hero h1{font-size:44px; color:var(--white); margin:18px 0 20px; letter-spacing:-.5px;}
.hero h1 em{font-style:normal; color:var(--teal);}
.hero p.lead{font-size:17px; color:var(--slate); max-width:520px; margin-bottom:30px; line-height:1.65;}
.hero-ctas{display:flex; gap:16px; margin-bottom:40px; flex-wrap:wrap;}
.hero-stats{display:flex; gap:0; border-top:1px solid rgba(255,255,255,.14); padding-top:24px; max-width:560px;}
.hero-stat{flex:1; padding-right:18px;}
.hero-stat .num{font-family:Cambria,serif; font-size:25px; font-weight:700; color:var(--white);}
.hero-stat .lbl{font-size:11px; color:var(--slate); text-transform:uppercase; letter-spacing:1px; margin-top:4px;}
.hero-visual{position:relative; height:440px; display:flex; align-items:center; justify-content:center;}
.mesh-ring{position:absolute; border-radius:50%; border:1px solid rgba(0,184,169,.25);}
.mesh-ring.r1{width:400px; height:400px;}
.mesh-ring.r2{width:300px; height:300px;}

/* ---------- TRUST BAR ---------- */
.trustbar{background:var(--navy-dark); padding:20px 0; border-top:1px solid rgba(255,255,255,.06);}
.trust-row{display:flex; justify-content:center; gap:48px; flex-wrap:wrap;}
.trust-item{display:flex; align-items:center; gap:9px; color:#B9C4DD; font-size:13px; font-weight:600;}
.trust-item svg{width:17px; height:17px; flex:none; stroke:var(--teal);}

/* ---------- SECTION GENERIC ---------- */
section{padding:84px 0;}
section.tight{padding:56px 0;}
.section-head{max-width:640px; margin:0 auto 48px; text-align:center;}
.section-head h2{font-size:30px; margin:12px 0 12px;}
.section-head p{color:var(--muted); font-size:15px;}
.section-head.left{margin:0 0 44px; text-align:left; max-width:100%;}
.bg-offwhite{background:var(--offwhite);}
.bg-navy{background:linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%); color:var(--white);}
.bg-navy h2, .bg-navy .section-head p{color:var(--white);}
.bg-navy .section-head p{color:var(--slate);}

/* ---------- SERVICES / SOLUTIONS CARDS ---------- */
.services-grid, .cards-grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:22px;}
.cards-grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.cards-grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.svc-card{background:var(--card); border-radius:var(--radius); padding:30px 26px; transition:transform .2s ease, box-shadow .2s ease; border:1px solid transparent;}
.svc-card:hover{transform:translateY(-6px); box-shadow:0 20px 40px rgba(15,36,68,.1); border-color:rgba(0,184,169,.25); background:var(--white);}
.svc-icon{width:54px; height:54px; border-radius:12px; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-bottom:18px; flex:none;}
.svc-icon svg{width:27px; height:27px; stroke:var(--teal);}
.svc-card h3{font-size:17.5px; margin-bottom:9px;}
.svc-card p{font-size:13.6px; color:var(--muted); line-height:1.55; margin-bottom:14px;}
.svc-card .link{font-size:13px; font-weight:700; color:var(--navy); display:inline-flex; align-items:center; gap:6px;}
.svc-card:hover .link{color:var(--teal);}

/* ---------- SOLUTIONS / SERVICES DETAIL BLOCKS ---------- */
.detail-block{display:grid; grid-template-columns:.9fr 1.1fr; gap:52px; align-items:start; padding:56px 0; border-bottom:1px solid #E7ECF5;}
.detail-block:last-child{border-bottom:none;}
.detail-block.reverse{grid-template-columns:1.1fr .9fr;}
.detail-block.reverse .detail-visual{order:2;}
.detail-tag{display:inline-flex; align-items:center; gap:8px; background:var(--teal-light); color:#0B7A70; font-size:11.5px; font-weight:700; letter-spacing:1px; text-transform:uppercase; padding:6px 14px; border-radius:20px; margin-bottom:16px;}
.detail-block h3{font-size:24px; margin-bottom:14px;}
.detail-block > div > p.desc{color:var(--muted); font-size:14.5px; margin-bottom:22px; line-height:1.65;}
.pill-list{display:flex; flex-direction:column; gap:12px;}
.pill-list li{display:flex; align-items:flex-start; gap:12px; background:var(--card); padding:13px 16px; border-radius:10px; font-size:13.6px;}
.pill-list li .dot{width:8px; height:8px; border-radius:50%; background:var(--teal); margin-top:5px; flex:none;}
.detail-visual{background:var(--navy); border-radius:18px; height:100%; min-height:280px; display:flex; align-items:center; justify-content:center; padding:30px;}

/* ---------- WHY / DIFFERENTIATORS ---------- */
.why-card{background:var(--white); border-radius:var(--radius); padding:32px 26px; box-shadow:0 2px 14px rgba(15,36,68,.05);}
.why-num{font-family:Cambria,serif; font-size:14px; color:var(--teal); font-weight:700; margin-bottom:12px;}
.why-card h3{font-size:17.5px; margin-bottom:9px;}
.why-card p{font-size:13.6px; color:var(--muted); line-height:1.6;}

/* ---------- IMPACT BAND ---------- */
.impact{background:linear-gradient(120deg, var(--navy) 0%, var(--navy-mid) 100%); padding:64px 0; position:relative; overflow:hidden;}
.impact-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px; position:relative; z-index:2;}
.impact-item{text-align:center; border-right:1px solid rgba(255,255,255,.12);}
.impact-item:last-child{border-right:none;}
.impact-item .num{font-family:Cambria,serif; font-size:40px; font-weight:700; color:var(--white);}
.impact-item .num span{color:var(--teal);}
.impact-item .lbl{font-size:12px; color:var(--slate); text-transform:uppercase; letter-spacing:1.2px; margin-top:8px;}

/* ---------- INDUSTRIES ---------- */
.industries-row{display:flex; justify-content:space-between; gap:16px; flex-wrap:wrap;}
.ind-chip{flex:1; min-width:150px; text-align:center; padding:26px 14px; background:var(--card); border-radius:12px;}
.ind-chip svg{width:28px; height:28px; margin:0 auto 12px; stroke:var(--navy);}
.ind-chip span{font-size:13px; font-weight:700; color:var(--text-dark); display:block;}
.ind-chip small{font-size:11px; color:var(--muted); display:block; margin-top:4px;}

/* ---------- CASE STUDY CARDS (anonymized) ---------- */
.cs-card{background:var(--navy); border-radius:18px; padding:48px; display:grid; grid-template-columns:1fr 1fr; gap:44px; align-items:center; margin-bottom:26px;}
.cs-card.light{background:var(--card);}
.cs-card.light h3, .cs-card.light .cs-tag{color:var(--text-dark);}
.cs-card.light p{color:var(--muted);}
.cs-tag{color:var(--teal); font-size:11.5px; font-weight:700; letter-spacing:2px; text-transform:uppercase; margin-bottom:12px;}
.cs-card.light .cs-tag{color:#0B7A70;}
.cs-card h3{color:var(--white); font-size:22px; margin-bottom:12px;}
.cs-card p{color:var(--slate); font-size:14px; line-height:1.7; margin-bottom:8px;}
.cs-stats{display:flex; gap:30px; margin-top:20px; flex-wrap:wrap;}
.cs-stats div .num{font-family:Cambria,serif; font-size:24px; color:var(--teal); font-weight:700;}
.cs-stats div .lbl{font-size:11px; color:var(--slate); text-transform:uppercase; letter-spacing:1px;}
.cs-card.light .cs-stats div .lbl{color:var(--muted);}
.cs-industry-badge{display:inline-block; background:rgba(0,184,169,.15); color:var(--teal); font-size:11px; font-weight:700; padding:5px 12px; border-radius:20px; margin-top:16px;}
.cs-card.light .cs-industry-badge{background:var(--teal-light); color:#0B7A70;}

/* ---------- CTA BANNER ---------- */
.cta-banner{background:var(--teal); border-radius:20px; padding:54px; text-align:center;}
.cta-banner h2{font-size:27px; color:var(--navy-dark); margin-bottom:14px;}
.cta-banner p{color:#0c4b45; margin-bottom:24px; font-size:15px;}
.cta-banner .btn-primary{background:var(--navy); color:var(--white); box-shadow:none;}

/* ---------- ABOUT PAGE ---------- */
.about-split{display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;}
.about-split p{color:var(--muted); font-size:15px; line-height:1.75; margin-bottom:16px;}
.about-visual{background:var(--card); border-radius:20px; padding:40px; min-height:380px; display:flex; align-items:center; justify-content:center;}
.timeline{display:flex; flex-direction:column; gap:0;}
.timeline-item{display:grid; grid-template-columns:70px 1fr; gap:18px; padding-bottom:30px; position:relative;}
.timeline-item::before{content:""; position:absolute; left:34px; top:36px; bottom:0; width:1px; background:#DCE3F0;}
.timeline-item:last-child::before{display:none;}
.timeline-dot{width:70px; height:70px; border-radius:50%; background:var(--navy); color:var(--white); display:flex; align-items:center; justify-content:center; font-family:Cambria,serif; font-weight:700; font-size:13px; text-align:center; flex:none;}
.timeline-content h4{font-size:16px; margin-bottom:6px;}
.timeline-content p{font-size:13.5px; color:var(--muted);}

/* ---------- CONTACT PAGE ---------- */
.contact-grid{display:grid; grid-template-columns:1fr 1.2fr; gap:48px;}
.contact-info-card{background:var(--navy); border-radius:18px; padding:38px; color:var(--white);}
.contact-info-card h3{color:var(--white); font-size:20px; margin-bottom:22px;}
.contact-row{display:flex; align-items:flex-start; gap:14px; margin-bottom:22px;}
.contact-row .ic{width:38px; height:38px; border-radius:9px; background:var(--teal); display:flex; align-items:center; justify-content:center; flex:none;}
.contact-row .ic svg{width:19px; height:19px; stroke:var(--navy-dark);}
.contact-row .txt{font-size:13.8px; color:#C7D2EE; line-height:1.5;}
.contact-row .txt strong{display:block; color:var(--white); font-size:12px; text-transform:uppercase; letter-spacing:.6px; margin-bottom:4px;}
.form-card{background:var(--card); border-radius:18px; padding:38px;}
.form-card h3{font-size:20px; margin-bottom:6px;}
.form-card > p{color:var(--muted); font-size:13.6px; margin-bottom:24px;}
.form-row{display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px;}
.form-field{display:flex; flex-direction:column; gap:6px;}
.form-field.full{grid-column:1/-1;}
.form-field label{font-size:12.5px; font-weight:700; color:var(--text-dark);}
.form-field input, .form-field select, .form-field textarea{
  border:1.5px solid #DCE3F0; border-radius:8px; padding:11px 14px; font-size:13.8px; font-family:inherit; background:var(--white); color:var(--text-dark);
}
.form-field textarea{resize:vertical; min-height:100px;}
.consent-row{display:flex; align-items:flex-start; gap:10px; margin:18px 0; font-size:12.3px; color:var(--muted); line-height:1.5;}
.consent-row input{margin-top:3px;}
.consent-row a{color:var(--teal); font-weight:600;}
.map-embed{border-radius:14px; overflow:hidden; margin-top:26px; border:1px solid #E7ECF5;}

/* ---------- PRIVACY / DPDP PAGE ---------- */
.policy-body{max-width:820px; margin:0 auto;}
.policy-body h2{font-size:22px; margin:34px 0 12px;}
.policy-body h2:first-child{margin-top:0;}
.policy-body p, .policy-body li{color:var(--muted); font-size:14.5px; line-height:1.75; margin-bottom:12px;}
.policy-body ul{padding-left:20px; list-style:disc;}
.policy-toc{background:var(--card); border-radius:14px; padding:26px 30px; margin-bottom:40px;}
.policy-toc h4{font-size:14px; margin-bottom:12px;}
.policy-toc a{display:block; font-size:13.5px; color:var(--navy); font-weight:600; margin-bottom:8px;}
.policy-toc a:hover{color:var(--teal);}

/* ---------- COOKIE CONSENT ---------- */
.cookie-banner{
  position:fixed; left:20px; right:20px; bottom:20px; z-index:500;
  background:var(--navy-dark); color:var(--white); border-radius:14px; padding:20px 24px;
  display:flex; align-items:center; gap:20px; box-shadow:0 20px 50px rgba(0,0,0,.35);
  max-width:900px; margin:0 auto; flex-wrap:wrap;
}
.cookie-banner.hidden{display:none;}
.cookie-banner p{font-size:13px; color:#C7D2EE; flex:1; min-width:220px;}
.cookie-banner p a{color:var(--teal); font-weight:700;}
.cookie-actions{display:flex; gap:10px;}
.cookie-actions button{padding:10px 18px; font-size:12.5px;}

/* ---------- FOOTER ---------- */
footer.site-footer{background:var(--navy-dark); color:#B9C4DD; padding:64px 0 0;}
.footer-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:44px; border-bottom:1px solid rgba(255,255,255,.08);}
.footer-brand p{font-size:13.3px; color:#8FA0BC; margin:16px 0 20px; line-height:1.6; max-width:280px;}
.footer-col h4{color:var(--white); font-size:13.5px; margin-bottom:16px; letter-spacing:.5px;}
.footer-col a{display:block; font-size:13.3px; margin-bottom:11px; color:#B9C4DD;}
.footer-col a:hover{color:var(--teal);}
.footer-bottom{display:flex; justify-content:space-between; align-items:center; padding:22px 0; font-size:12.3px; color:#7C8CAE; flex-wrap:wrap; gap:12px;}
.dpdp-badge{display:inline-flex; align-items:center; gap:6px; background:rgba(0,184,169,.12); color:var(--teal); padding:5px 12px; border-radius:20px; font-weight:700; font-size:11px;}
.social-row{display:flex; gap:10px; margin-top:18px;}
.social-row a{
  width:36px; height:36px; border-radius:8px; background:rgba(255,255,255,.06);
  display:flex; align-items:center; justify-content:center; transition:background .15s ease;
}
.social-row a:hover{background:var(--teal);}
.social-row a svg{width:17px; height:17px; stroke:#B9C4DD; transition:stroke .15s ease;}
.social-row a:hover svg{stroke:var(--navy-dark);}

/* =========================================================
   AI CHAT — EMBEDDED APP WINDOW (docked tab, not a bubble popup)
   ========================================================= */
.chat-launcher{
  position:fixed; top:50%; right:0; transform:translateY(-50%); z-index:400;
  background:var(--teal); color:var(--navy-dark); border:none; cursor:pointer;
  display:flex; align-items:center; gap:9px; padding:14px 16px 14px 14px;
  border-radius:12px 0 0 12px; box-shadow:-6px 6px 24px rgba(0,0,0,.18);
  writing-mode:horizontal-tb;
}
.chat-launcher svg{width:20px; height:20px; stroke:var(--navy-dark); flex:none;}
.chat-launcher .tab-label{font-size:12.5px; font-weight:700; letter-spacing:.3px; white-space:nowrap;}
.chat-launcher.tab-hidden{display:none;}

.chat-panel{
  position:fixed; top:0; right:0; bottom:0; z-index:410;
  width:420px; max-width:calc(100vw - 24px); height:100%;
  background:var(--white); box-shadow:-20px 0 60px rgba(10,24,48,.25);
  display:none; flex-direction:column; overflow:hidden; border-left:1px solid #E7ECF5;
}
.chat-panel.open{display:flex;}
.chat-head{background:var(--navy); padding:20px 22px; display:flex; align-items:center; gap:12px; flex:none;}
.chat-head .avatar{width:40px; height:40px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center; flex:none;}
.chat-head .avatar svg{width:20px; height:20px; stroke:var(--navy-dark);}
.chat-head .meta strong{color:var(--white); font-size:14.5px; display:block;}
.chat-head .meta span{color:var(--slate); font-size:11.5px; display:flex; align-items:center; gap:5px;}
.chat-head .meta span::before{content:""; width:7px; height:7px; border-radius:50%; background:#3ECF8E; display:inline-block;}
.chat-close{margin-left:auto; background:none; border:none; cursor:pointer; color:var(--slate); width:28px; height:28px;}
.chat-body{flex:1; overflow-y:auto; padding:20px; display:flex; flex-direction:column; gap:14px; background:var(--offwhite);}
.msg{max-width:88%; padding:12px 15px; border-radius:14px; font-size:13.3px; line-height:1.55;}
.msg.bot{background:var(--white); border:1px solid #E7ECF5; align-self:flex-start; border-bottom-left-radius:4px; color:var(--text-dark);}
.msg.user{background:var(--navy); color:var(--white); align-self:flex-end; border-bottom-right-radius:4px;}
.msg.suggestion{display:flex; flex-wrap:wrap; gap:8px; align-self:flex-start; max-width:100%;}
.msg.suggestion button{background:var(--teal-light); color:#0B7A70; border:none; padding:8px 13px; border-radius:20px; font-size:12px; font-weight:700; cursor:pointer;}
.chat-foot{padding:14px; border-top:1px solid #E7ECF5; display:flex; gap:10px; flex:none; background:var(--white);}
.chat-foot input{flex:1; border:1.5px solid #DCE3F0; border-radius:24px; padding:11px 16px; font-size:13.3px; font-family:inherit;}
.chat-foot button{width:42px; height:42px; border-radius:50%; background:var(--teal); border:none; display:flex; align-items:center; justify-content:center; cursor:pointer; flex:none;}
.chat-foot button svg{width:18px; height:18px; stroke:var(--navy-dark);}
.chat-disclaimer{font-size:10px; color:var(--muted); text-align:center; padding:0 14px 12px;}

/* Inline lead-capture form rendered inside the chat, with explicit consent */
.msg.lead-form{max-width:100%; width:100%; background:var(--white); border:1.5px solid var(--teal); display:flex; flex-direction:column; gap:9px;}
.lead-form-title{font-size:12.5px; font-weight:700; color:var(--navy); margin-bottom:2px;}
.lf-name, .lf-contact{border:1.5px solid #DCE3F0; border-radius:8px; padding:9px 12px; font-size:12.8px; font-family:inherit;}
.lf-consent{display:flex; align-items:flex-start; gap:8px; font-size:11px; color:var(--muted); line-height:1.4;}
.lf-consent input{margin-top:2px;}
.lf-consent a{color:var(--teal); font-weight:600;}
.lf-submit{background:var(--teal); color:var(--navy-dark); border:none; border-radius:8px; padding:10px; font-size:12.8px; font-weight:700; cursor:pointer;}
.lf-submit:disabled{opacity:.6; cursor:default;}
.lf-status{font-size:11.5px;}
.lf-status.ok{color:#0B7A70; font-weight:700;}
.lf-status.err{color:var(--red);}

/* Inline embedded chat section on the homepage ("comes onto the main page") */
.chat-inline-section{background:var(--navy-dark); padding:80px 0;}
.chat-inline-grid{display:grid; grid-template-columns:1fr 1fr; gap:52px; align-items:center;}
.chat-inline-copy .eyebrow{color:var(--teal);}
.chat-inline-copy h2{color:var(--white); font-size:30px; margin:14px 0 16px;}
.chat-inline-copy p{color:var(--slate); font-size:15px; line-height:1.7; margin-bottom:22px;}
.chat-inline-copy ul{display:flex; flex-direction:column; gap:12px; margin-bottom:28px;}
.chat-inline-copy ul li{display:flex; align-items:center; gap:10px; color:#D7DEEC; font-size:13.8px;}
.chat-inline-copy ul li svg{width:18px; height:18px; stroke:var(--teal); flex:none;}
.chat-inline-widget{
  background:var(--white); border-radius:20px; box-shadow:0 30px 70px rgba(0,0,0,.35);
  overflow:hidden; height:520px; display:flex; flex-direction:column;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width:1040px){
  .nav-links{display:none;}
  .nav-cta{display:none;}
  .menu-toggle{display:flex;}
}
@media (max-width:980px){
  .hero-grid{grid-template-columns:1fr;}
  .hero-visual{height:300px;}
  .services-grid, .cards-grid-4{grid-template-columns:repeat(2,1fr);}
  .cards-grid-3{grid-template-columns:1fr 1fr;}
  .why-grid, .cards-grid-3{grid-template-columns:1fr 1fr;}
  .impact-grid{grid-template-columns:repeat(2,1fr); row-gap:28px;}
  .impact-item{border-right:none;}
  .cs-card{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .detail-block, .detail-block.reverse{grid-template-columns:1fr;}
  .detail-block.reverse .detail-visual{order:0;}
  .about-split{grid-template-columns:1fr;}
  .contact-grid{grid-template-columns:1fr;}
  .chat-inline-grid{grid-template-columns:1fr;}
  .chat-inline-widget{height:460px;}
}
@media (max-width:640px){
  .brand-name{font-size:15px; white-space:nowrap;}
  .nav{gap:10px;}
  .hero h1, .page-hero h1{font-size:30px;}
  .hero-stats{flex-direction:column; gap:14px;}
  .services-grid, .cards-grid-4, .cards-grid-3, .cards-grid-2{grid-template-columns:1fr;}
  .industries-row{flex-direction:column;}
  .impact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .cta-banner{padding:34px 22px;}
  section{padding:52px 0;}
  .form-row{grid-template-columns:1fr;}
  .chat-panel{width:100vw; max-width:100vw;}
  .chat-launcher{padding:12px 10px 12px 10px;}
  .chat-launcher .tab-label{display:none;}
}
