/* ═══════════════════════════════════════════════════════════════════
   Technology2  |  site.css
   Cormorant Garamond (display) + Plus Jakarta Sans (body)
   Corporate White theme — blue accent, orange highlight
═══════════════════════════════════════════════════════════════════ */

:root {
  --blue: #1a22b8; --blue-dk: #12199a; --blue-lt: #eef0fd; --blue-pale: #f4f5ff;
  --orange: #f0790a; --orange-lt: #fff4e8;
  --white: #ffffff; --off: #f8f9fc; --border: #e4e7f0; --border-dk: #ced2e8;
  --text: #0d1020; --text-mid: #38406a; --text-muted: #7680a8;
  --green: #0aac6e; --navy: #0d1020;
  --r: 14px; --rlg: 22px; --rxl: 32px;
  --sh-sm: 0 2px 12px rgba(13,16,32,.07);
  --sh-md: 0 8px 32px rgba(13,16,32,.09);
  --sh-lg: 0 20px 64px rgba(13,16,32,.13);
  --pad: 96px 0;
  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--ff-body); background: #fff; color: var(--text);
       overflow-x: hidden; line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2 { font-family: var(--ff-display); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
address { font-style: normal; }

/* ── UTIL ─────────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.tag { display: inline-block; font-family: var(--ff-body); font-size: .7rem; font-weight: 700;
       letter-spacing: 1.8px; text-transform: uppercase; color: var(--blue);
       background: var(--blue-lt); padding: 5px 14px; border-radius: 50px; margin-bottom: 18px; }
.tag-or { color: var(--orange); background: var(--orange-lt); }
.tag-wh { color: rgba(255,255,255,.85); background: rgba(255,255,255,.12); }
.section-title { font-family: var(--ff-display); font-size: clamp(2rem, 3.5vw, 2.9rem);
                 font-weight: 700; color: var(--text); line-height: 1.1; margin-bottom: 16px; }
.section-sub { font-size: 1rem; color: var(--text-muted); line-height: 1.78;
               font-weight: 300; max-width: 560px; }
.section-head { margin-bottom: 56px; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── SKIP LINK ────────────────────────────────────────────────── */
.skip-link { position: absolute; top: -99px; left: 4px; background: var(--blue);
             color: #fff; padding: 8px 16px; border-radius: 4px; z-index: 9999;
             font-size: .85rem; transition: top .2s; }
.skip-link:focus { top: 4px; }

/* ── SCROLL REVEAL ────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px);
          transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-body);
       font-weight: 600; font-size: .88rem; padding: 11px 24px; border-radius: 50px;
       cursor: pointer; transition: all .24s; border: none; letter-spacing: .2px; white-space: nowrap; }
.btn-blue  { background: var(--blue); color: #fff; box-shadow: 0 4px 18px rgba(26,34,184,.26); }
.btn-blue:hover  { background: var(--blue-dk); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(26,34,184,.36); }
.btn-orange { background: var(--orange); color: #fff; box-shadow: 0 4px 16px rgba(240,121,10,.28); }
.btn-orange:hover { background: #d96b00; transform: translateY(-2px); }
.btn-ob  { background: transparent; color: var(--blue); border: 1.5px solid var(--blue); }
.btn-ob:hover  { background: var(--blue-lt); }
.btn-w   { background: #fff; color: var(--blue); font-weight: 700; }
.btn-w:hover   { background: var(--blue-pale); transform: translateY(-2px); }
.btn-sm  { padding: 8px 18px; font-size: .8rem; }
.btn-enq { background: var(--blue-lt); color: var(--blue); border: 1.5px solid rgba(26,34,184,.18);
           padding: 8px 18px; font-size: .78rem; font-weight: 700; border-radius: 50px;
           display: inline-flex; align-items: center; gap: 6px; transition: all .2s;
           cursor: pointer; margin-top: 14px; letter-spacing: .2px; text-decoration: none; }
.btn-enq:hover { background: var(--blue); color: #fff; border-color: var(--blue); transform: translateY(-1px); }
.btn-enq-wh  { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-enq-wh:hover { background: rgba(255,255,255,.22); color: #fff; }

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb-nav { background: var(--off); border-bottom: 1px solid var(--border); padding: 10px 0; }
.breadcrumb { display: flex; align-items: center; flex-wrap: wrap; gap: 4px;
              list-style: none; font-size: .8rem; color: var(--text-muted); }
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.bc-sep { margin: 0 4px; }

/* ── NAV ──────────────────────────────────────────────────────── */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 999;
      background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border); height: 66px;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; transition: box-shadow .3s; }
nav.scrolled { box-shadow: var(--sh-md); }
.nlb {  color: #fff; font-family: var(--ff-body);
       font-weight: 700; font-size: 1.08rem; padding: 6px 14px;
       border-radius: 8px; letter-spacing: -.2px; }
.nlb span { color: var(--orange); }
.nlinks { display: flex; gap: 2px; list-style: none; align-items: center; }
.nlinks a { color: var(--text-mid); font-size: .84rem; font-weight: 500;
            padding: 7px 11px; border-radius: 8px; transition: all .2s; }
.nlinks a:hover, .nlinks a.active { color: var(--blue); background: var(--blue-lt); }
.nlinks .ncta { background: var(--blue); color: #fff !important;
                border-radius: 50px; padding: 8px 20px; font-weight: 600; margin-left: 6px; }
.nlinks .ncta:hover { background: var(--blue-dk) !important; }
.hbg { display: none; flex-direction: column; gap: 5px; cursor: pointer;
       background: none; border: none; padding: 4px; }
.hbg span { display: block; width: 22px; height: 2px; background: var(--text);
            border-radius: 2px; transition: .3s; }
.mnav { position: fixed; inset: 0; background: #fff; z-index: 998;
        display: flex; flex-direction: column; align-items: center; justify-content: center;
        gap: 28px; transform: translateX(100%); transition: transform .35s ease; }
.mnav.open { transform: translateX(0); }
.mnav a { font-size: 1.4rem; font-weight: 700; color: var(--text); font-family: var(--ff-display); }
.mnav a:hover { color: var(--blue); }
.mnav-close { position: absolute; top: 20px; right: 20px; background: var(--off);
              border: 1px solid var(--border); border-radius: 50%; width: 40px; height: 40px;
              font-size: 1.1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.mnav-backdrop { display: none; position: fixed; inset: 0; z-index: 997; }
.mnav.open ~ .mnav-backdrop { display: block; }

/* ── HERO ─────────────────────────────────────────────────────── */
#hero { padding: 128px 5% 88px; background: #fff; position: relative; overflow: hidden; }
.hacc1 { position: absolute; width: 540px; height: 540px; border-radius: 50%;
         background: radial-gradient(circle, rgba(26,34,184,.07) 0%, transparent 72%);
         top: -160px; right: -100px; pointer-events: none; }
.hacc2 { position: absolute; width: 360px; height: 360px; border-radius: 50%;
         background: radial-gradient(circle, rgba(240,121,10,.07) 0%, transparent 72%);
         bottom: -80px; left: 5%; pointer-events: none; }
.hline { position: absolute; top: 0; bottom: 0; right: 38%; width: 1px;
         background: linear-gradient(to bottom, transparent, var(--border) 30%, var(--border) 70%, transparent);
         pointer-events: none; }
.hero-inner { max-width: 1180px; margin: 0 auto; display: grid;
              grid-template-columns: 1.15fr 1fr; gap: 64px; align-items: center;
              position: relative; z-index: 2; }
.hey { display: inline-flex; align-items: center; gap: 8px; font-size: .75rem;
       font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--blue);
       margin-bottom: 22px; animation: fu .6s ease both; }
.hey::before { content: ''; width: 24px; height: 2px; background: var(--blue); border-radius: 2px; }
h1.hh1 { font-family: var(--ff-display); font-size: clamp(2.8rem, 5vw, 4.2rem);
         font-weight: 700; color: var(--text); line-height: 1.07; margin-bottom: 22px;
         animation: fu .65s .08s ease both; }
h1.hh1 em   { font-style: italic; color: var(--blue); }
h1.hh1 mark { background: none; color: var(--orange); font-style: italic; }
.hdesc { font-size: 1.03rem; color: var(--text-muted); line-height: 1.78; font-weight: 300;
         max-width: 520px; margin-bottom: 36px; animation: fu .65s .16s ease both; }
.hbtns { display: flex; gap: 14px; flex-wrap: wrap; animation: fu .65s .24s ease both; }
.hstats { display: flex; margin-top: 52px; border-top: 1px solid var(--border);
          padding-top: 36px; animation: fu .65s .32s ease both; }
.hst { flex: 1; padding-right: 24px; border-right: 1px solid var(--border); margin-right: 24px; }
.hst:last-child { border-right: none; margin-right: 0; }
.hstn { font-family: var(--ff-display); font-size: 2.3rem; font-weight: 700; color: var(--blue); line-height: 1; }
.hstn sup { font-size: 1.1rem; }
.hstl { font-size: .76rem; color: var(--text-muted); margin-top: 5px; font-weight: 500; }
.hpanel { animation: fu .65s .2s ease both; }
.hcard { background: var(--off); border: 1px solid var(--border); border-radius: var(--rlg); padding: 28px; position: relative; }
.hcard h4 { font-weight: 700; font-size: .97rem; color: var(--text); margin-bottom: 4px; }
.hcard p  { font-size: .84rem; color: var(--text-muted); font-weight: 300; }
.hfloat { position: absolute; top: -20px; right: -20px; background: var(--blue); color: #fff;
          border-radius: var(--r); padding: 14px 18px; font-size: .84rem; font-weight: 600;
          box-shadow: 0 10px 30px rgba(26,34,184,.3); white-space: nowrap; }
.hfloat span { display: block; font-size: .7rem; font-weight: 400; opacity: .75; margin-top: 2px; }
.hicons { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.hico { width: 44px; height: 44px; background: #fff; border: 1px solid var(--border);
        border-radius: 10px; display: flex; align-items: center; justify-content: center;
        font-size: 1.3rem; box-shadow: var(--sh-sm); transition: transform .2s; }
.hico:hover { transform: translateY(-3px); }
.ppills { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.ppill { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--border);
         border-radius: 50px; padding: 8px 16px; font-size: .8rem; font-weight: 600;
         color: var(--text); box-shadow: var(--sh-sm); transition: all .2s; }
.ppill:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.pd { width: 8px; height: 8px; border-radius: 50%; }
.pd-b { background: var(--blue); } .pd-g { background: var(--green); }
@keyframes fu { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ── TRUST STRIP ──────────────────────────────────────────────── */
.trust-strip { background: var(--off); border-top: 1px solid var(--border);
               border-bottom: 1px solid var(--border); padding: 18px 5%;
               display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.ti   { display: flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 500; color: var(--text-mid); }
.tsep { width: 1px; height: 20px; background: var(--border); }

/* ── ABOUT ────────────────────────────────────────────────────── */
#about, .about-section { padding: var(--pad); background: #fff; }
.about-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: center; }
.av-stack { position: relative; padding-bottom: 28px; }
.av-main  { background: var(--blue); border-radius: var(--rxl); padding: 44px; color: #fff;
            position: relative; overflow: hidden; }
.av-main::before { content: '"'; position: absolute; font-family: var(--ff-display);
                   font-size: 18rem; top: -60px; right: -20px; color: rgba(255,255,255,.04); line-height: 1; }
.av-main h3 { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; margin-bottom: 16px; position: relative; }
.av-main p  { font-size: .91rem; line-height: 1.78; color: rgba(255,255,255,.72); font-weight: 300; position: relative; }
.ametrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 28px; }
.ambox  { background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r); padding: 18px; }
.amnum  { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--orange); line-height: 1; }
.amlbl  { font-size: .76rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.av-float { position: absolute; bottom: 0; right: -24px; background: #fff; border: 1px solid var(--border);
            border-radius: var(--r); padding: 18px 22px; box-shadow: var(--sh-lg);
            font-size: .87rem; color: var(--text); font-weight: 600; white-space: nowrap; }
.av-float span { display: block; font-size: .74rem; color: var(--text-muted); font-weight: 400; margin-top: 2px; }
.at p { font-size: .96rem; color: var(--text-mid); line-height: 1.82; font-weight: 300; margin-bottom: 20px; }
.team-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.tc { flex: 1; min-width: 155px; background: var(--off); border: 1px solid var(--border);
      border-radius: var(--r); padding: 18px 20px; position: relative; overflow: hidden; }
.tc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--blue); }
.tn { font-weight: 700; font-size: .96rem; color: var(--text); }
.tr { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.certs { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.cert { display: inline-flex; align-items: center; gap: 6px; background: #fff;
        border: 1px solid var(--border); border-radius: 8px; padding: 7px 14px;
        font-size: .78rem; font-weight: 500; color: var(--text-mid); box-shadow: var(--sh-sm); }

/* ── SERVICES ─────────────────────────────────────────────────── */
.services-section { padding: var(--pad); background: var(--off); }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.sc { background: #fff; border: 1px solid var(--border); border-radius: var(--r);
      padding: 26px 22px; transition: all .28s; position: relative; overflow: hidden;
      display: flex; flex-direction: column; }
.sc::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
             background: var(--blue); transform: scaleY(0); transform-origin: bottom; transition: transform .28s; }
.sc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border-dk); }
.sc:hover::after { transform: scaleY(1); }
.sci { width: 46px; height: 46px; background: var(--blue-lt); border-radius: 12px;
       display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
       margin-bottom: 16px; flex-shrink: 0; }
.sc h3 { font-family: var(--ff-body); font-size: .93rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.sc p  { font-size: .81rem; color: var(--text-muted); line-height: 1.62; font-weight: 300; flex: 1; }
.sc.hl { background: var(--blue); border-color: transparent; }
.sc.hl .sci { background: rgba(255,255,255,.15); }
.sc.hl h3  { color: #fff; }
.sc.hl p   { color: rgba(255,255,255,.65); }
.sc.hl::after { background: var(--orange); }
.sc.hl .btn-enq { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.25); }
.sc.hl .btn-enq:hover { background: rgba(255,255,255,.25); }

/* ── SOFTWARE ─────────────────────────────────────────────────── */
.software-section { padding: var(--pad); background: #fff; }
.sw-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.swc { background: var(--off); border: 1px solid var(--border); border-radius: var(--rlg);
       padding: 30px 26px; display: flex; flex-direction: column; transition: all .28s; }
.swc:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--border-dk); }
.swc-top { display: flex; gap: 18px; align-items: flex-start; }
.swi { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center;
       justify-content: center; font-size: 1.4rem; flex-shrink: 0; }
.swb { background: var(--blue-lt); } .swo { background: var(--orange-lt); } .swg { background: #e8fdf4; }
.swc h4 { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.swc p  { font-size: .82rem; color: var(--text-muted); line-height: 1.62; font-weight: 300; }

/* ── PRODUCTS ─────────────────────────────────────────────────── */
.products-section { padding: var(--pad); background: var(--off); }
.prod-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pcard { border-radius: var(--rxl); padding: 48px; position: relative; overflow: hidden; display: flex; flex-direction: column; }
.pc-blue { background: var(--blue); } .pc-dark { background: #0d1020; }
.pcard::before { content: attr(data-l); position: absolute; right: -20px; bottom: -40px;
                 font-family: var(--ff-display); font-size: 14rem; font-weight: 700;
                 color: rgba(255,255,255,.04); line-height: 1; }
.pscope { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: 1.5px;
          text-transform: uppercase; padding: 5px 14px; border-radius: 50px; margin-bottom: 22px; }
.ps-uk { background: rgba(240,121,10,.2); color: #ffcc88; }
.ps-gl { background: rgba(10,172,110,.2);  color: #5effc0; }
.pcard h3 { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px; line-height: 1.12; }
.pcard > p { font-size: .92rem; color: rgba(255,255,255,.68); line-height: 1.78; font-weight: 300; margin-bottom: 28px; max-width: 380px; }
.pfeat { list-style: none; margin-bottom: 32px; flex: 1; }
.pfeat li { font-size: .84rem; color: rgba(255,255,255,.75); padding: 7px 0;
            display: flex; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255,255,255,.08); }
.pfeat li:last-child { border-bottom: none; }
.pfeat li::before { content: '✓'; color: var(--orange); font-weight: 700; font-size: .88rem; flex-shrink: 0; }
.pfeat.gl li::before { color: #5effc0; }
.pcard-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }

/* ── WHY ──────────────────────────────────────────────────────── */
.why-section { padding: var(--pad); background: var(--blue); position: relative; overflow: hidden; }
.why-section::before { content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px; }
.wi { position: relative; z-index: 1; }
.wh { margin-bottom: 56px; }
.wh .section-title { color: #fff; }
.wh .section-sub { color: rgba(255,255,255,.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wc { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--rlg); padding: 32px 26px; transition: all .3s; }
.wc:hover { background: rgba(255,255,255,.11); border-color: rgba(255,255,255,.25); transform: translateY(-4px); }
.wico { font-size: 2rem; margin-bottom: 16px; }
.wc h3 { font-family: var(--ff-body); font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 10px; }
.wc p  { font-size: .84rem; color: rgba(255,255,255,.6); line-height: 1.65; font-weight: 300; }

/* ── PROCESS ──────────────────────────────────────────────────── */
.process-section { padding: var(--pad); background: #fff; }
.proc-track { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
              position: relative; margin-top: 60px; }
.proc-track::before { content: ''; position: absolute; top: 36px;
  left: calc(12.5% + 18px); right: calc(12.5% + 18px);
  height: 1px; background: var(--border-dk); z-index: 0; }
.ps2 { display: flex; flex-direction: column; align-items: center; padding: 0 12px; position: relative; z-index: 1; }
.psn { width: 72px; height: 72px; border-radius: 50%; background: #fff; border: 2px solid var(--blue);
       display: flex; align-items: center; justify-content: center; font-family: var(--ff-display);
       font-size: 1.5rem; font-weight: 700; color: var(--blue); margin-bottom: 20px;
       box-shadow: 0 0 0 6px #fff, var(--sh-sm); }
.ps2 h4 { font-weight: 700; font-size: .97rem; color: var(--text); margin-bottom: 10px; }
.ps2 p  { font-size: .83rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ── TESTIMONIALS ─────────────────────────────────────────────── */
.testimonials-section { padding: var(--pad); background: var(--off); }
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.tcard { background: #fff; border: 1px solid var(--border); border-radius: var(--rlg);
         padding: 30px 28px; display: flex; flex-direction: column; gap: 16px;
         transition: all .28s; }
.tcard:hover { transform: translateY(-3px); box-shadow: var(--sh-md); }
.tcard.featured { background: var(--blue); border-color: transparent; }
.tcard.featured .tq     { color: rgba(255,255,255,.85); }
.tcard.featured .tname  { color: #fff; }
.tcard.featured .tauthor { color: rgba(255,255,255,.6); }
.tcard.featured .tstars  { color: var(--orange); }
.tcard.featured .tmeta   { border-color: rgba(255,255,255,.12); }
.tcard.featured .tq-icon { color: rgba(255,255,255,.3); }
.tcard.featured .tservice { background: rgba(255,255,255,.15); color: rgba(255,255,255,.85); }
.tcard.span2 { grid-column: span 2; }
.tq-icon { font-size: 1.8rem; color: var(--blue); line-height: 1; font-family: var(--ff-display); }
.tstars  { color: var(--orange); font-size: .9rem; letter-spacing: 1px; }
.tq { font-size: .88rem; color: var(--text-mid); line-height: 1.72; font-weight: 300; font-style: italic; flex: 1; }
.tmeta { border-top: 1px solid var(--border); padding-top: 14px; }
.tname   { font-weight: 700; font-size: .88rem; color: var(--text); }
.tauthor { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }
.tservice { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .8px;
            text-transform: uppercase; background: var(--blue-lt); color: var(--blue);
            padding: 3px 10px; border-radius: 50px; margin-top: 8px; }

/* ── BLOG ─────────────────────────────────────────────────────── */
.blog-section { padding: var(--pad); background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.bc { background: var(--off); border: 1px solid var(--border); border-radius: var(--rlg); overflow: hidden; transition: all .28s; }
.bc:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.bt { height: 175px; display: flex; align-items: center; justify-content: center; font-size: 2.5rem; position: relative; }
.bt1 { background: linear-gradient(135deg, #eef0fd, #c7cbf9); }
.bt2 { background: linear-gradient(135deg, #fff4e8, #ffd8a8); }
.bt3 { background: linear-gradient(135deg, #e8fdf4, #a8f0d0); }
.bcat { position: absolute; top: 14px; left: 14px; font-size: .68rem; font-weight: 700;
        letter-spacing: .8px; text-transform: uppercase; padding: 5px 12px;
        border-radius: 4px; background: var(--blue); color: #fff; }
.bb  { padding: 22px 24px; }
.bm  { font-size: .74rem; color: var(--text-muted); margin-bottom: 8px; }
.bc h3 { font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--text); line-height: 1.35; margin-bottom: 10px; }
.bc p  { font-size: .82rem; color: var(--text-muted); line-height: 1.62; font-weight: 300; }
.rm  { display: inline-flex; align-items: center; gap: 6px; color: var(--blue); font-size: .82rem; font-weight: 600; margin-top: 14px; transition: gap .2s; }
.rm:hover { gap: 10px; color: var(--orange); }

/* ── CONTACT / FORM ───────────────────────────────────────────── */
.contact-section { padding: var(--pad); background: var(--off); }
.cl { display: grid; grid-template-columns: 1fr 1.45fr; gap: 72px; align-items: start; }
.cleft h2 { font-family: var(--ff-display); font-size: 1.8rem; font-weight: 700; color: var(--text); margin-bottom: 16px; }
.cleft > p { font-size: .96rem; color: var(--text-muted); line-height: 1.78; font-weight: 300; margin-bottom: 36px; }
.cdr  { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.cdico { width: 42px; height: 42px; background: var(--blue-lt); border-radius: 11px;
         display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.cdlbl { font-size: .7rem; text-transform: uppercase; letter-spacing: .9px; color: var(--text-muted); font-weight: 600; }
.cdval { font-size: .88rem; color: var(--text); font-weight: 500; line-height: 1.5; margin-top: 2px; }
.cdval a { color: var(--blue); }
.fw  { background: #fff; border: 1px solid var(--border); border-radius: var(--rxl); padding: 44px; box-shadow: var(--sh-sm); }
.fw h3 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.fsub { font-size: .86rem; color: var(--text-muted); margin-bottom: 30px; font-weight: 300; }
.f2c { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg  { margin-bottom: 18px; }
.fg label { display: block; font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: .2px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 10px;
  font-family: var(--ff-body); font-size: .88rem; color: var(--text); background: #fff;
  outline: none; transition: border .2s, box-shadow .2s; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,34,184,.08); }
.fg textarea { min-height: 110px; resize: vertical; }
.fsub2 { width: 100%; padding: 14px; background: var(--blue); color: #fff; border: none;
         border-radius: 50px; font-family: var(--ff-body); font-weight: 700; font-size: .96rem;
         cursor: pointer; transition: all .25s; box-shadow: 0 4px 18px rgba(26,34,184,.28); }
.fsub2:hover { background: var(--orange); box-shadow: 0 8px 24px rgba(240,121,10,.3); transform: translateY(-2px); }
.fsuccess { display: none; text-align: center; padding: 32px 0; }
.fsuccess .fsi { font-size: 3rem; margin-bottom: 14px; }
.fsuccess h4 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--text); margin-bottom: 8px; }
.fsuccess p  { font-size: .88rem; color: var(--text-muted); font-weight: 300; }

/* ── BUDGET SLIDER ────────────────────────────────────────────── */
.budget-group label { display: flex; align-items: center; justify-content: space-between; }
.budget-display { font-family: var(--ff-display); font-size: 1.15rem; font-weight: 700;
                  color: var(--blue); background: var(--blue-lt); padding: 3px 12px;
                  border-radius: 50px; min-width: 80px; text-align: center; transition: all .2s; }
.slider-wrap { position: relative; margin: 10px 0 6px; }
.budget-slider { -webkit-appearance: none; appearance: none; width: 100%; height: 6px;
                 border-radius: 50px; background: var(--border-dk); outline: none;
                 cursor: pointer; position: relative; z-index: 2; }
.budget-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 22px; height: 22px;
  border-radius: 50%; background: var(--blue); cursor: pointer;
  box-shadow: 0 2px 10px rgba(26,34,184,.35); transition: transform .15s, box-shadow .15s;
  border: 3px solid #fff; }
.budget-slider::-webkit-slider-thumb:hover { transform: scale(1.18); box-shadow: 0 4px 16px rgba(26,34,184,.45); }
.budget-slider::-moz-range-thumb { width: 22px; height: 22px; border-radius: 50%;
  background: var(--blue); cursor: pointer; border: 3px solid #fff; box-shadow: 0 2px 10px rgba(26,34,184,.35); }
.slider-track-fill { position: absolute; top: 50%; left: 0; height: 6px; border-radius: 50px;
                     background: linear-gradient(90deg, var(--blue-lt), var(--blue));
                     transform: translateY(-50%); pointer-events: none; transition: width .1s; z-index: 1; }
.slider-labels { display: flex; justify-content: space-between; font-size: .7rem; color: var(--text-muted); margin-top: 4px; }

/* ── MODAL ────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(13,16,32,.55); z-index: 9999;
                 display: flex; align-items: center; justify-content: center;
                 opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box { background: #fff; border-radius: var(--rxl); padding: 44px; max-width: 560px;
             width: 90%; max-height: 88vh; overflow-y: auto; position: relative;
             transform: translateY(20px); transition: transform .3s; box-shadow: var(--sh-lg); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 18px; right: 18px; background: var(--off);
               border: 1px solid var(--border); border-radius: 50%; width: 36px; height: 36px;
               display: flex; align-items: center; justify-content: center; cursor: pointer;
               font-size: 1.1rem; transition: all .2s; }
.modal-close:hover { background: var(--blue-lt); color: var(--blue); }
.modal-service-badge { display: inline-block; background: var(--blue-lt); color: var(--blue);
                       font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
                       padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.modal-box h4 { font-family: var(--ff-display); font-size: 1.5rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }

/* ── FOOTER ───────────────────────────────────────────────────── */
footer { background: var(--navy); padding: 72px 5% 32px; }
.ft { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 56px; }
.flb { display: inline-block; color: #fff; font-family: var(--ff-body);
       font-weight: 700; font-size: 1.05rem; padding: 6px 14px; border-radius: 8px; margin-bottom: 16px; }
.flb span { color: var(--orange); }
.fld { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.75; font-weight: 300; max-width: 260px; margin-bottom: 20px; }
.fbadges { display: flex; gap: 8px; flex-wrap: wrap; }
.fbadge { font-size: .73rem; color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.12); border-radius: 6px; padding: 5px 10px; }
.fcol h5 { font-size: .75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.38); margin-bottom: 18px; }
.fcol a  { display: block; color: rgba(255,255,255,.58); font-size: .85rem; margin-bottom: 10px; transition: color .2s; }
.fcol a:hover { color: var(--orange); }
.faddr { font-size: .85rem; color: rgba(255,255,255,.53); line-height: 1.78; }
.faddr strong { color: rgba(255,255,255,.82); font-weight: 600; }
.faddr a { color: rgba(255,255,255,.7); display: inline; }
.fbot { border-top: 1px solid rgba(255,255,255,.08); padding-top: 28px;
        display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.fbot p { font-size: .78rem; color: rgba(255,255,255,.3); }
.fbot a { color: rgba(255,255,255,.3); margin-left: 20px; font-size: .78rem; }
.fbot a:hover { color: rgba(255,255,255,.6); }

/* ── INNER PAGE HERO ──────────────────────────────────────────── */
.page-hero { padding: 100px 5% 56px; background: var(--off);
             border-bottom: 1px solid var(--border); text-align: center; }
.page-hero h1 { font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.2rem);
                font-weight: 700; color: var(--text); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; font-weight: 300; }

/* ── VALIDATION ───────────────────────────────────────────────── */
.field-validation-error { color: #c0392b; font-size: .78rem; margin-top: 4px; display: block; }
.input-validation-error { border-color: #c0392b !important; }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hpanel { display: none; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .ft { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .nlinks { display: none; }
  .hbg { display: flex; }
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
  .prod-layout { grid-template-columns: 1fr; }
  .sw-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .proc-track { grid-template-columns: 1fr 1fr; gap: 32px; }
  .proc-track::before { display: none; }
  .tgrid { grid-template-columns: 1fr; }
  .tcard.span2 { grid-column: span 1; }
  .blog-grid { grid-template-columns: 1fr; }
  .cl { grid-template-columns: 1fr; gap: 40px; }
  .f2c { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .sw-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .ft { grid-template-columns: 1fr; }
  .hstats { flex-wrap: wrap; gap: 20px; }
  .hst { border-right: none; margin-right: 0; padding-right: 0; min-width: 40%; }
  .slider-labels span:nth-child(2),
  .slider-labels span:nth-child(4) { display: none; }
}
