@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #1C2B7E;
  --blue-d:   #14205e;
  --blue-m:   #2845c5;
  --orange:   #F7941D;
  --orange-d: #de7f0a;
  --cyan:     #29ABE2;
  --blue-pale:#EEF2FF;
  --white:    #ffffff;
  --off:      #F7F9FC;
  --bd:       #D5E0EE;
  --grey-t:   #64748B;
  --dark:     #0D1B2A;
  --font: 'Inter', system-ui, sans-serif;
  --r: 4px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--dark); background: var(--white); overflow-x: hidden; line-height: 1.6; }
a { color: inherit; text-decoration: none; }

/* ── NAV ── */
nav { position: relative; padding: 16px 24px; background: var(--blue); }
.nw { max-width: 1080px; margin: 0 auto; height: 60px; display: flex; align-items: center; justify-content: space-between; background: rgba(26,43,126,.6); border: 1px solid rgba(255,255,255,.1); border-radius: 8px; padding: 0 28px; }
.logo { display: flex; align-items: center; gap: 9px; }
.lname { font-size: 14px; font-weight: 800; color: #fff; letter-spacing: 1.5px; text-transform: uppercase; }
.lname span { color: var(--orange); }
.nlinks { display: flex; gap: 2px; list-style: none; }
.nlinks a { color: rgba(255,255,255,.65); font-size: 14px; font-weight: 500; padding: 6px 14px; border-radius: var(--r); transition: all .15s; }
.nlinks a:hover { color: #fff; background: rgba(255,255,255,.09); }
.ncta { background: var(--orange) !important; color: #fff !important; font-weight: 700 !important; }
.ncta:hover { background: var(--orange-d) !important; }

/* ── HERO ── */
.hero { background: var(--blue); min-height: calc(100vh - 92px); display: flex; align-items: center; padding: 72px 24px 80px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 28px 28px; pointer-events: none; }
.hero::after { content: ''; position: absolute; top: 0; bottom: 0; right: 38%; width: 1px; background: linear-gradient(to bottom, transparent, rgba(232,87,26,.3) 30%, rgba(232,87,26,.3) 70%, transparent); pointer-events: none; }
.hi { max-width: 1080px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hlabel { font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
.hlabel::before { content: ''; width: 24px; height: 1px; background: var(--orange); }
.hero h1 { font-size: clamp(36px,4.8vw,58px); font-weight: 800; line-height: 1.08; letter-spacing: -2px; color: #fff; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--orange); }
.hero-sub { font-size: 17px; color: rgba(255,255,255,.58); line-height: 1.72; max-width: 430px; margin-bottom: 20px; }
.hproof { display: flex; align-items: center; gap: 12px; padding: 13px 17px; border: 1px solid rgba(232,87,26,.4); border-radius: var(--r); margin-bottom: 34px; max-width: 400px; }
.hproof svg { color: var(--orange); flex-shrink: 0; }
.hproof-txt { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.88); }
.hproof-txt span { color: var(--orange); }
.hbtns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn { display: inline-block; padding: 13px 26px; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; border: none; font-family: var(--font); transition: all .15s; }
.btn-p { background: var(--orange); color: #fff; }
.btn-p:hover { background: var(--orange-d); }
.btn-s { background: transparent; color: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.22); }
.btn-s:hover { border-color: rgba(255,255,255,.5); color: #fff; }

/* ── OPS PANEL ── */
.ops { background: var(--white); border: 1px solid rgba(255,255,255,.18); border-radius: var(--r); overflow: hidden; }
.ops-top { background: #0d1b2a; padding: 11px 16px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,.08); }
.ops-ttl { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); letter-spacing: .06em; text-transform: uppercase; }
.ops-live { display: flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; color: #22C55E; }
.ops-dot { width: 7px; height: 7px; background: #22C55E; border-radius: 50%; animation: bl 2s ease infinite; }
@keyframes bl { 0%,100%{opacity:1;} 50%{opacity:.2;} }
.ops-feed { padding: 14px 16px; }
.ofhdr { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-t); margin-bottom: 10px; }
.tkt { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--off); opacity: 0; transform: translateY(4px); transition: all .3s; }
.tkt:last-child { border-bottom: none; }
.tkt.in { opacity: 1; transform: none; }
.tbar { width: 3px; height: 32px; border-radius: 2px; flex-shrink: 0; }
.tg { background: #16A34A; } .ty { background: #D97706; } .tb { background: var(--blue-m); }
.tinf { flex: 1; min-width: 0; }
.tcl { font-size: 12px; font-weight: 700; color: var(--dark); }
.tds { font-size: 11px; color: var(--grey-t); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ttag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 2px; flex-shrink: 0; }
.tr { background: #DCFCE7; color: #15803D; }
.tp { background: var(--blue-pale); color: var(--blue-m); }
.to { background: #FEF3C7; color: #B45309; }
.ops-bar { padding: 11px 16px; background: var(--off); display: flex; align-items: center; justify-content: space-between; }
.obt { font-size: 11px; color: var(--grey-t); }
.obv { font-size: 13px; font-weight: 800; color: #16A34A; }
.ubr { height: 4px; background: var(--bd); border-radius: 2px; margin-top: 6px; overflow: hidden; }
.ubf { height: 100%; background: #16A34A; width: 0; transition: width 1.6s ease .5s; }

/* ── CREDENTIALS ── */
.creds { background: var(--off); border-top: 1px solid var(--bd); border-bottom: 1px solid var(--bd); padding: 20px 24px; }
.creds-inner { max-width: 1080px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cl { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--grey-t); white-space: nowrap; }
.cdiv { width: 1px; height: 20px; background: var(--bd); }
.citems { display: flex; gap: 8px; flex-wrap: wrap; }
.cbadge { display: flex; align-items: center; gap: 7px; padding: 6px 14px; background: var(--white); border: 1px solid var(--bd); border-radius: var(--r); font-size: 12px; font-weight: 600; color: var(--dark); }
.cbadge svg { color: var(--orange); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 88px 24px; }
.si { max-width: 1080px; margin: 0 auto; }
.slbl { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 10px; display: flex; align-items: center; gap: 8px; }
.slbl::before { content: ''; width: 18px; height: 1px; background: var(--orange); }
.sh { font-size: clamp(26px,3vw,40px); font-weight: 800; letter-spacing: -1.2px; line-height: 1.12; margin-bottom: 14px; }
.ssub { font-size: 16px; color: var(--grey-t); line-height: 1.7; max-width: 500px; }
.shdr { margin-bottom: 52px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s, transform .55s; }
.reveal.in { opacity: 1; transform: none; }
.d1{transition-delay:.08s;} .d2{transition-delay:.16s;} .d3{transition-delay:.24s;} .d4{transition-delay:.32s;}

/* ── PAIN ── */
.pain-bg { background: var(--blue); padding: 64px 24px; }
.pain-c { max-width: 900px; margin: 0 auto; text-align: center; }
.pain-c h2 { font-size: clamp(22px,2.8vw,34px); font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.3; margin-bottom: 12px; }
.pain-c h2 em { font-style: normal; color: var(--orange); }
.pain-c p { font-size: 16px; color: rgba(255,255,255,.5); max-width: 640px; margin: 0 auto 32px; }
.plist { display: flex; flex-wrap: wrap; gap: 9px; justify-content: center; }
.pchip { padding: 8px 16px; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r); font-size: 13px; color: rgba(255,255,255,.65); }

/* ── WHAT WE HANDLE ── */
.what-bg { background: var(--off); }
.what-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 1px; background: var(--bd); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.wcard { background: var(--white); padding: 28px 24px; transition: background .15s; }
.wcard:hover { background: var(--blue-pale); }
.wcard-icon { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; color: var(--blue-m); }
.wcard h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.wcard p { font-size: 13px; color: var(--grey-t); line-height: 1.55; }

/* ── PRICING ── */
.price-bg { background: var(--white); }
.price-model { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.pm-main { padding: 40px; border-right: 1px solid var(--bd); }
.pm-from { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-t); margin-bottom: 6px; }
.pm-price { font-size: 52px; font-weight: 800; letter-spacing: -2.5px; color: var(--blue); line-height: 1; margin-bottom: 10px; }
.pm-price span { font-size: 17px; font-weight: 400; color: var(--grey-t); letter-spacing: 0; }
.pm-desc { font-size: 14px; color: var(--grey-t); line-height: 1.6; margin-bottom: 24px; }
.pm-plus { display: flex; align-items: flex-start; gap: 14px; padding: 18px; background: var(--blue-pale); border-radius: var(--r); border: 1px solid var(--bd); }
.pm-plus-icon { width: 28px; height: 28px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.pm-plus-label { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 4px; }
.pm-plus-note { font-size: 13px; color: var(--grey-t); line-height: 1.55; }
.pm-includes { padding: 40px; background: var(--off); }
.pm-inc-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--grey-t); margin-bottom: 20px; }
.pm-list { list-style: none; }
.pm-list li { display: flex; align-items: center; gap: 10px; padding: 9px 0; font-size: 14px; color: var(--dark); border-bottom: 1px solid var(--bd); }
.pm-list li:last-child { border-bottom: none; }
.pli { color: var(--orange); flex-shrink: 0; }

/* ── WHY HUDDLE ── */
.why-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; padding: 48px 0; border-bottom: 1px solid var(--bd); }
.why-row:last-child { border-bottom: none; }
.why-row.flip .wstat { order: -1; }
.wtxt .ilbl { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.wtxt .ilbl svg { color: var(--orange); }
.wtxt .ilbl span { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--orange); }
.wtxt h3 { font-size: 22px; font-weight: 800; letter-spacing: -.6px; margin-bottom: 10px; }
.wtxt p { font-size: 15px; color: var(--grey-t); line-height: 1.75; margin-bottom: 10px; }
.wtxt .pnote { font-size: 13px; font-weight: 700; color: var(--blue-m); }
.wstat { background: var(--off); border: 1px solid var(--bd); border-radius: var(--r); padding: 32px; text-align: center; }
.wstat-n { font-size: 52px; font-weight: 800; letter-spacing: -3px; color: var(--blue); line-height: 1; display: block; }
.wstat-l { font-size: 13px; color: var(--grey-t); margin-top: 6px; line-height: 1.5; }

/* ── INDUSTRIES ── */
.ind-bg { background: var(--off); }
.ind-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 1px; background: var(--bd); border: 1px solid var(--bd); border-radius: var(--r); overflow: hidden; }
.icard { background: var(--white); padding: 28px 22px; transition: background .15s; }
.icard:hover { background: var(--blue-pale); }
.icard-ico { color: var(--blue-m); margin-bottom: 12px; }
.icard h4 { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.icard p { font-size: 12px; color: var(--grey-t); line-height: 1.55; }

/* ── TESTIMONIAL ── */
.testi-w { max-width: 780px; margin: 0 auto; border-left: 4px solid var(--orange); padding: 26px 34px; background: var(--off); border-radius: 0 var(--r) var(--r) 0; }
.tq { font-size: 19px; font-weight: 500; line-height: 1.65; color: var(--dark); margin-bottom: 18px; font-style: italic; }
.tsrc { font-size: 13px; font-weight: 700; color: var(--blue); }
.tsrc span { font-weight: 400; color: var(--grey-t); }

/* ── CONTACT ── */
.contact-bg { background: var(--blue); }
.contact-grid { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.cleft .slbl { color: var(--orange); }
.cleft .sh { color: #fff; font-size: clamp(24px,3vw,36px); }
.cleft > p { font-size: 15px; color: rgba(255,255,255,.5); line-height: 1.75; margin-bottom: 28px; }
.cmethod { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.cmethod:last-child { border-bottom: none; }
.cmethod svg { color: var(--orange); flex-shrink: 0; }
.cml { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.35); }
.cmv { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.85); }
.cmv a { color: rgba(255,255,255,.85); }
.cform { background: var(--white); border-radius: var(--r); padding: 36px; }
.cfh { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--dark); }
.cfs { font-size: 13px; color: var(--grey-t); margin-bottom: 24px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ff { margin-bottom: 14px; }
.ff label { display: block; font-size: 12px; font-weight: 700; color: var(--dark); margin-bottom: 5px; letter-spacing: .03em; text-transform: uppercase; }
.ff input, .ff textarea, .ff select { width: 100%; padding: 10px 13px; border: 1px solid var(--bd); border-radius: var(--r); font-size: 14px; font-family: var(--font); color: var(--dark); background: var(--off); transition: border-color .15s; }
.ff input:focus, .ff textarea:focus, .ff select:focus { outline: none; border-color: var(--blue-m); background: #fff; }
.ff textarea { resize: vertical; min-height: 80px; }
.fcon { display: flex; gap: 9px; align-items: flex-start; margin-bottom: 18px; font-size: 13px; color: var(--grey-t); }
.fcon input { width: auto; margin-top: 2px; accent-color: var(--blue); }
.fcon a { color: var(--blue-m); }
.bsub { width: 100%; background: var(--orange); color: #fff; padding: 14px; border: none; border-radius: var(--r); font-size: 15px; font-weight: 700; cursor: pointer; font-family: var(--font); transition: background .15s; }
.bsub:hover { background: var(--orange-d); }
.bsub:disabled { opacity: .6; cursor: not-allowed; }
.form-success { text-align: center; padding: 32px; }
.form-success h3 { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--grey-t); }
.form-error { font-size: 13px; color: #dc2626; margin-top: 10px; }

/* ── FOOTER ── */
footer { background: #0a1929; border-top: 1px solid rgba(255,255,255,.07); padding: 52px 24px 28px; }
.fg { max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 24px; }
.fb-logo { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; }
.fb p { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 250px; margin-bottom: 18px; }
.li-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: var(--r); font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); transition: all .15s; }
.li-btn:hover { border-color: #0A66C2; background: #0A66C2; color: #fff; }
.fc h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.85); margin-bottom: 14px; }
.fc ul { list-style: none; }
.fc li { margin-bottom: 9px; }
.fc a { font-size: 13px; color: rgba(255,255,255,.4); transition: color .15s; }
.fc a:hover { color: var(--orange); }
.fbot { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px; }
.fbot a { color: rgba(255,255,255,.25); }
.fbot a:hover { color: var(--orange); }

/* ── RESPONSIVE ── */
@media(max-width:800px){
  .hi { grid-template-columns: 1fr; }
  .nlinks { display: none; }
  section { padding: 64px 20px; }
  .why-row, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .why-row.flip .wstat { order: 0; }
  .fg { grid-template-columns: 1fr 1fr; gap: 24px; }
  .frow { grid-template-columns: 1fr; }
  .price-model { grid-template-columns: 1fr; }
  .pm-main { border-right: none; border-bottom: 1px solid var(--bd); }
}
@media(max-width:480px){ .fg { grid-template-columns: 1fr; } }
