@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* ─────────────────────────────────────
   EXACT LOGO PALETTE
   blue  #179ed9  — primary brand blue
   slate #465050  — "Infotech" charcoal
───────────────────────────────────── */
:root {
  --blue:        #179ed9;
  --blue-dark:   #0f7eb0;
  --blue-deep:   #0a5e85;
  --blue-pale:   #e8f5fc;
  --blue-light:  #d0ecf9;
  --blue-mid:    #a8d8f0;
  --slate:       #465050;
  --slate-dark:  #2a3232;
  --slate-mid:   #5a6868;
  --slate-light: #8a9898;

  --white:       #ffffff;
  --grey-50:     #f7f9fb;
  --grey-100:    #eef2f5;
  --grey-200:    #dde4ea;
  --grey-300:    #c8d4dc;
  --grey-400:    #a0b0ba;

  --ink:         #1a2228;
  --ink-mid:     #2c3840;
  --text-body:   #3a4848;
  --text-light:  #6a7a80;
  --text-xlight: #9aacb0;

  --border:      #dde4ea;
  --border-blue: rgba(23,158,217,0.2);

  --grad-blue:   linear-gradient(135deg, #179ed9, #0a8bc4);
  --grad-sky:    linear-gradient(135deg, #179ed9, #4fc3f7);
  --grad-deep:   linear-gradient(135deg, #0a5e85, #179ed9);

  --shadow-sm:   0 2px 8px rgba(23,158,217,0.08);
  --shadow-md:   0 6px 24px rgba(23,158,217,0.12);
  --shadow-lg:   0 16px 48px rgba(23,158,217,0.16);
  --shadow-card: 0 4px 20px rgba(26,34,40,0.08);
  --shadow-blue: 0 8px 32px rgba(23,158,217,0.28);

  --font-display: 'Manrope', sans-serif;
  --font-serif:   'Lora', serif;
}

*,*::before,*::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-font-smoothing:antialiased; }
body { font-family:var(--font-display); background:var(--white); color:var(--ink); overflow-x:hidden; }
img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }

/* ── UTILITY ── */
.text-blue { color:var(--blue); }
.text-slate { color:var(--slate); }

/* ── BUTTONS ── */
.btn { display:inline-flex; align-items:center; gap:.5rem; font-family:var(--font-display); font-weight:700; font-size:.88rem; letter-spacing:.01em; padding:.78rem 1.9rem; border-radius:4px; border:none; cursor:pointer; transition:all .25s; }
.btn-blue { background:var(--blue); color:#fff; box-shadow:var(--shadow-blue); }
.btn-blue:hover { background:var(--blue-dark); transform:translateY(-2px); box-shadow:0 12px 40px rgba(23,158,217,.35); }
.btn-outline { background:transparent; color:var(--blue); border:2px solid var(--blue); }
.btn-outline:hover { background:var(--blue); color:#fff; transform:translateY(-2px); }
.btn-white { background:#fff; color:var(--blue); }
.btn-white:hover { background:var(--blue-pale); transform:translateY(-2px); }
.btn-slate { background:var(--slate); color:#fff; }
.btn-slate:hover { background:var(--slate-dark); transform:translateY(-2px); }
.btn-outline-white { background:transparent; color:#fff; border:2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background:rgba(255,255,255,.1); border-color:#fff; transform:translateY(-2px); }
.arr::after { content:'→'; font-size:1rem; }

/* ── NAV ── */
.nav { position:fixed; top:0; left:0; right:0; z-index:1000; height:68px; display:flex; align-items:center; padding:0 2.5rem; justify-content:space-between; background:rgba(255,255,255,.95); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border-bottom:1px solid var(--border); transition:box-shadow .3s; }
.nav.scrolled { box-shadow:0 4px 24px rgba(23,158,217,.08); }
.nav-logo img { height:40px; }
.nav-links { display:flex; align-items:center; gap:2.25rem; }
.nav-links a { font-weight:600; font-size:.88rem; color:var(--text-body); transition:color .2s; position:relative; }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:0; width:0; height:2px; background:var(--blue); transition:width .28s; border-radius:1px; }
.nav-links a:hover, .nav-links a.active { color:var(--blue); }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:var(--blue) !important; color:#fff !important; padding:.44rem 1.3rem; border-radius:4px; }
.nav-cta::after { display:none !important; }
.nav-cta:hover { background:var(--blue-dark) !important; transform:translateY(-1px); box-shadow:var(--shadow-blue); }

.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.hamburger span { display:block; width:24px; height:2px; background:var(--ink); transition:all .3s; border-radius:1px; }
.hamburger.open span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }
.mobile-menu { display:none; flex-direction:column; background:#fff; border-bottom:1px solid var(--border); padding:1.5rem 2.5rem; gap:.5rem; box-shadow:var(--shadow-md); }
.mobile-menu.open { display:flex; }
.mobile-menu a { font-weight:600; font-size:1rem; color:var(--text-body); padding:.6rem 0; border-bottom:1px solid var(--grey-100); transition:color .2s; }
.mobile-menu a:hover { color:var(--blue); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
/* Blue accent bar on left edge */
.hero::before { content:''; position:absolute; left:0; top:0; bottom:0; width:5px; background:var(--grad-blue); }

.hero-left { padding:5rem 4rem 5rem 5.5rem; position:relative; z-index:1; }
.hero-right { background:var(--grey-50); display:flex; align-items:center; justify-content:center; padding:4rem; position:relative; min-height:100vh; border-left:1px solid var(--border); }

/* Subtle dot grid on right panel */
.hero-right::before {
  content:'';
  position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(23,158,217,.2) 1.5px, transparent 1.5px);
  background-size:28px 28px;
  opacity:.5;
  pointer-events:none;
}

.hero-tag { display:inline-flex; align-items:center; gap:.6rem; background:var(--blue-pale); border:1px solid var(--border-blue); border-radius:50px; padding:.35rem 1rem; font-size:.74rem; font-weight:700; letter-spacing:.16em; text-transform:uppercase; color:var(--blue); margin-bottom:2rem; animation:fadeUp .65s both; }
.tag-pulse { width:7px; height:7px; border-radius:50%; background:var(--blue); animation:pulse 2.2s ease infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.3;transform:scale(.7)} }

.hero-h1 { font-family:var(--font-serif); font-weight:700; font-size:clamp(2.8rem,5vw,5rem); line-height:1.1; color:var(--ink); margin-bottom:1.5rem; animation:fadeUp .65s .1s both; }
.hero-h1 .stroke { font-style:italic; color:transparent; -webkit-text-stroke:2px var(--blue); }
.hero-h1 .filled { color:var(--blue); }

.hero-desc { font-size:1rem; line-height:1.8; color:var(--text-light); max-width:440px; margin-bottom:2.5rem; animation:fadeUp .65s .2s both; }
.hero-actions { display:flex; gap:1rem; flex-wrap:wrap; margin-bottom:3rem; animation:fadeUp .65s .3s both; }

/* Hero stat strip */
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:0; border:1px solid var(--border); border-radius:8px; overflow:hidden; animation:fadeUp .65s .4s both; }
.hs-cell { padding:1.1rem 1.4rem; border-right:1px solid var(--border); }
.hs-cell:last-child { border-right:none; }
.hs-num { font-family:var(--font-display); font-weight:800; font-size:1.8rem; line-height:1; color:var(--blue); }
.hs-lbl { font-size:.75rem; color:var(--text-light); margin-top:.2rem; font-weight:500; }

/* Hero illustration */
.hero-illustration { width:100%; max-width:480px; position:relative; z-index:1; animation:fadeUp .8s .3s both; }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── TICKER ── */
.ticker { background:var(--blue); padding:.8rem 0; overflow:hidden; }
.ticker-track { display:flex; animation:marquee 30s linear infinite; white-space:nowrap; }
.ticker-item { display:flex; align-items:center; gap:.6rem; padding:0 2.5rem; font-size:.77rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,.75); flex-shrink:0; }
.ti-div { width:4px; height:4px; border-radius:50%; background:rgba(255,255,255,.4); }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── LAYOUT ── */
.container { max-width:1260px; margin:0 auto; padding:0 2rem; }
.container-narrow { max-width:1000px; margin:0 auto; padding:0 2rem; }
.section-pad { padding:7rem 0; }

/* Section heading */
.s-kicker { display:inline-flex; align-items:center; gap:.6rem; font-size:.73rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--blue); margin-bottom:.85rem; }
.kick-line { width:24px; height:2px; background:var(--blue); border-radius:1px; flex-shrink:0; }
.s-title { font-family:var(--font-serif); font-weight:700; font-size:clamp(2rem,3.5vw,2.8rem); line-height:1.15; color:var(--ink); margin-bottom:1rem; }
.s-title .blue { color:var(--blue); font-style:italic; }
.s-sub { font-size:1rem; line-height:1.8; color:var(--text-light); max-width:520px; }

/* ── SERVICES: LEFT-BORDER CARDS ── */
.svc-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; margin-top:3rem; }
.svc-card { background:var(--white); border:1px solid var(--border); border-radius:8px; border-left:4px solid var(--blue); padding:2rem; transition:all .28s; box-shadow:var(--shadow-sm); }
.svc-card:hover { border-left-color:var(--blue-dark); transform:translateY(-5px); box-shadow:var(--shadow-lg); }
.svc-ico { width:48px; height:48px; border-radius:10px; background:var(--blue-pale); display:flex; align-items:center; justify-content:center; font-size:1.35rem; margin-bottom:1.25rem; }
.svc-name { font-family:var(--font-display); font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:.55rem; }
.svc-desc { font-size:.88rem; line-height:1.65; color:var(--text-light); margin-bottom:1.1rem; }
.svc-link { font-size:.82rem; font-weight:700; color:var(--blue); display:inline-flex; align-items:center; gap:.35rem; transition:gap .2s; }
.svc-card:hover .svc-link { gap:.6rem; }

/* ── ABOUT: SPLIT WITH OFFSET BOXES ── */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
.about-left-img { position:relative; }
.about-img-main { background:var(--grey-50); border:1px solid var(--border); border-radius:12px; aspect-ratio:4/3; display:flex; align-items:center; justify-content:center; overflow:hidden; position:relative; }
.about-img-main::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg, rgba(23,158,217,.06) 0%, transparent 60%); }
/* Blue decorative squares */
.about-deco-1 { position:absolute; bottom:-24px; left:-24px; width:100px; height:100px; background:var(--blue-pale); border:2px solid var(--blue-mid); border-radius:8px; z-index:-1; }
.about-deco-2 { position:absolute; top:-20px; right:-20px; width:60px; height:60px; background:var(--blue); border-radius:6px; z-index:-1; opacity:.25; }

/* About stat boxes overlay */
.about-stat-box { position:absolute; background:#fff; border:1px solid var(--border); border-radius:10px; padding:1rem 1.25rem; box-shadow:var(--shadow-card); }
.asb-1 { bottom:-16px; right:-16px; }
.asb-2 { top:-16px; left:-16px; }
.asb-num { font-family:var(--font-display); font-weight:800; font-size:1.8rem; color:var(--blue); line-height:1; }
.asb-lbl { font-size:.72rem; font-weight:600; color:var(--text-light); letter-spacing:.08em; text-transform:uppercase; margin-top:.15rem; }

.feat-item { display:flex; gap:1rem; align-items:flex-start; margin-bottom:1.5rem; padding:1.25rem; border-radius:8px; transition:background .25s; }
.feat-item:hover { background:var(--blue-pale); }
.feat-ico-box { width:44px; height:44px; border-radius:10px; background:var(--blue-pale); border:1px solid var(--border-blue); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.feat-title { font-weight:700; font-size:.97rem; color:var(--ink); margin-bottom:.2rem; }
.feat-desc { font-size:.87rem; color:var(--text-light); line-height:1.55; }

/* ── STATS BAND ── */
.stats-band { background:var(--blue); padding:4rem 0; }
.stats-row { display:grid; grid-template-columns:repeat(4,1fr); }
.stat-cell { text-align:center; padding:1.5rem; border-right:1px solid rgba(255,255,255,.15); }
.stat-cell:last-child { border-right:none; }
.stat-big { font-family:var(--font-display); font-weight:800; font-size:3.5rem; line-height:1; color:#fff; }
.stat-lbl { font-size:.78rem; font-weight:600; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-top:.35rem; }

/* ── WHY CHOOSE: ALTERNATING BORDER ── */
.why-list { margin-top:3rem; }
.why-item { display:grid; grid-template-columns:auto 1fr; gap:1.5rem; align-items:flex-start; padding:2rem; border-bottom:1px solid var(--border); transition:background .25s; }
.why-item:hover { background:var(--grey-50); }
.why-item:last-child { border-bottom:none; }
.wi-num { font-family:var(--font-display); font-weight:800; font-size:2.5rem; color:var(--blue-light); line-height:1; width:60px; text-align:right; padding-top:.1rem; }
.wi-title { font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:.4rem; }
.wi-desc { font-size:.9rem; color:var(--text-light); line-height:1.7; }

/* ── INDUSTRIES ── */
.ind-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border); border:1px solid var(--border); border-radius:8px; overflow:hidden; margin-top:3rem; }
.ind-item { background:var(--white); padding:2rem; transition:all .25s; position:relative; }
.ind-item::before { content:''; position:absolute; top:0; left:0; bottom:0; width:3px; background:var(--blue); transform:scaleY(0); transform-origin:bottom; transition:transform .3s; }
.ind-item:hover { background:var(--grey-50); }
.ind-item:hover::before { transform:scaleY(1); }
.ii-ico { font-size:1.75rem; margin-bottom:.85rem; }
.ii-name { font-weight:700; font-size:1rem; color:var(--ink); margin-bottom:.4rem; }
.ii-desc { font-size:.84rem; color:var(--text-light); line-height:1.6; }

/* ── COMPLIANCE ── */
.comp-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; margin-top:3rem; }
.comp-card { background:var(--white); border:1.5px solid var(--border); border-radius:8px; padding:2rem; transition:all .28s; }
.comp-card:hover { border-color:var(--blue); box-shadow:var(--shadow-md); transform:translateY(-3px); }
.comp-name { font-family:var(--font-display); font-weight:800; font-size:1.6rem; color:var(--blue); margin-bottom:.25rem; }
.comp-full { font-size:.73rem; font-weight:700; letter-spacing:.12em; text-transform:uppercase; color:var(--text-xlight); margin-bottom:.75rem; }
.comp-desc { font-size:.86rem; color:var(--text-light); line-height:1.65; }

/* ── PROCESS ── */
.process-timeline { margin-top:3.5rem; }
.pt-step { display:grid; grid-template-columns:80px 1fr; gap:2rem; align-items:flex-start; margin-bottom:2rem; padding-bottom:2rem; border-bottom:1px solid var(--border); position:relative; }
.pt-step:last-child { border-bottom:none; margin-bottom:0; padding-bottom:0; }
.pt-step::before { content:''; position:absolute; left:39px; top:56px; bottom:-2rem; width:2px; background:var(--border); }
.pt-step:last-child::before { display:none; }
.pt-num-wrap { display:flex; flex-direction:column; align-items:center; gap:.5rem; }
.pt-num { width:52px; height:52px; border-radius:50%; background:var(--blue); color:#fff; font-family:var(--font-display); font-weight:800; font-size:1.1rem; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.pt-title { font-weight:700; font-size:1.05rem; color:var(--ink); margin-bottom:.5rem; padding-top:.75rem; }
.pt-desc { font-size:.9rem; color:var(--text-light); line-height:1.7; }

/* ── TECH GRID ── */
.tech-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1.25rem; margin-top:3rem; }
.tech-item { background:var(--grey-50); border:1.5px solid var(--border); border-radius:8px; padding:1.75rem; text-align:center; transition:all .25s; }
.tech-item:hover { border-color:var(--blue); background:var(--blue-pale); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.tech-emo { font-size:1.9rem; margin-bottom:.7rem; }
.tech-name { font-weight:700; font-size:.9rem; color:var(--ink); }
.tech-cat { font-size:.75rem; color:var(--text-xlight); margin-top:.2rem; }

/* ── CERT ROW ── */
.cert-row { display:flex; gap:1rem; flex-wrap:wrap; margin-top:3rem; }
.cert-item { flex:1; min-width:130px; background:var(--white); border:1.5px solid var(--border); border-radius:8px; padding:1.4rem; text-align:center; transition:all .25s; }
.cert-item:hover { border-color:var(--blue); transform:translateY(-3px); box-shadow:var(--shadow-md); }
.cert-ico { font-size:1.6rem; margin-bottom:.55rem; }
.cert-name { font-weight:700; font-size:.88rem; color:var(--ink); }
.cert-sub { font-size:.73rem; color:var(--text-xlight); margin-top:.15rem; }

/* ── CTA SECTION ── */
.cta-section { background:var(--blue); padding:6rem 2rem; position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:-60%; right:-10%; width:60%; height:200%; background:radial-gradient(ellipse, rgba(255,255,255,.12) 0%, transparent 60%); pointer-events:none; }
.cta-section::after { content:''; position:absolute; bottom:-50%; left:-5%; width:40%; height:180%; background:radial-gradient(ellipse, rgba(10,94,133,.4) 0%, transparent 60%); pointer-events:none; }
.cta-inner { text-align:center; position:relative; z-index:1; }
.cta-title { font-family:var(--font-serif); font-weight:700; font-size:clamp(2rem,4vw,3.2rem); line-height:1.1; color:#fff; margin-bottom:.85rem; }
.cta-title em { font-style:italic; color:rgba(255,255,255,.75); }
.cta-sub { font-size:1rem; color:rgba(255,255,255,.7); margin-bottom:2.25rem; }

/* ── PAGE HERO ── */
.page-hero { background:var(--grey-50); border-bottom:2px solid var(--blue); padding:8rem 2rem 4.5rem; position:relative; overflow:hidden; }
.ph-bg-stripe { position:absolute; left:0; top:0; bottom:0; width:5px; background:var(--grad-blue); }
.ph-dots { position:absolute; inset:0; background-image:radial-gradient(circle, rgba(23,158,217,.18) 1.5px, transparent 1.5px); background-size:32px 32px; opacity:.4; pointer-events:none; }
.ph-inner { max-width:1260px; margin:0 auto; position:relative; z-index:1; }
.breadcrumb { display:flex; gap:.4rem; font-size:.82rem; color:var(--text-xlight); margin-bottom:1.5rem; font-weight:500; }
.breadcrumb a { color:var(--text-xlight); transition:color .2s; }
.breadcrumb a:hover { color:var(--blue); }
.breadcrumb .sep { color:var(--grey-300); }
.page-hero h1 { font-family:var(--font-serif); font-weight:700; font-size:clamp(2.5rem,5.5vw,4.5rem); line-height:1.1; color:var(--ink); margin-bottom:.9rem; }
.page-hero h1 em { font-style:italic; color:var(--blue); }
.page-hero .ph-sub { font-size:1.05rem; color:var(--text-light); max-width:560px; line-height:1.75; }

/* ── SERVICES PAGE: DETAIL ROWS ── */
.svc-detail-row { display:grid; grid-template-columns:1fr 1fr; border-bottom:1px solid var(--border); }
.svc-detail-row:last-child { border-bottom:none; }
.sdr-text { padding:4.5rem 4rem; }
.sdr-visual { background:var(--grey-50); display:flex; align-items:center; justify-content:center; flex-direction:column; gap:1rem; position:relative; overflow:hidden; min-height:320px; border-left:1px solid var(--border); }
.sdr-visual-ico { font-size:5rem; }
.sdr-visual-lbl { font-family:var(--font-display); font-weight:800; font-size:5rem; color:rgba(23,158,217,.06); position:absolute; bottom:1rem; right:1.5rem; letter-spacing:-0.02em; white-space:nowrap; }
.sdr-visual::before { content:''; position:absolute; inset:0; background-image:radial-gradient(circle, rgba(23,158,217,.18) 1.5px, transparent 1.5px); background-size:28px 28px; opacity:.5; }
.sdr-tag { font-size:.72rem; font-weight:700; letter-spacing:.2em; text-transform:uppercase; color:var(--blue); margin-bottom:.85rem; }
.sdr-title { font-family:var(--font-serif); font-weight:700; font-size:clamp(1.8rem,3vw,2.6rem); color:var(--ink); margin-bottom:1rem; line-height:1.15; }
.sdr-desc { font-size:.97rem; line-height:1.8; color:var(--text-light); margin-bottom:1.5rem; }
.sdr-list { display:flex; flex-direction:column; gap:.5rem; margin-bottom:1.75rem; }
.sdr-list li { display:flex; align-items:center; gap:.75rem; font-size:.9rem; color:var(--text-body); }
.sdr-list li::before { content:''; width:8px; height:8px; border-radius:50%; background:var(--blue); flex-shrink:0; }
.tag-row { display:flex; flex-wrap:wrap; gap:.4rem; }
.stag { background:var(--blue-pale); border:1px solid var(--border-blue); color:var(--blue-dark); padding:.2rem .65rem; border-radius:50px; font-size:.72rem; font-weight:700; }
.svc-detail-row:nth-child(even) .sdr-text { order:2; }
.svc-detail-row:nth-child(even) .sdr-visual { order:1; border-left:none; border-right:1px solid var(--border); }

/* ── CONTACT ── */
.contact-split { display:grid; grid-template-columns:1fr 1fr; gap:5rem; align-items:start; }
.ci-block { display:flex; gap:1.1rem; align-items:flex-start; padding:1.4rem; border-radius:8px; border:1.5px solid var(--border); transition:border-color .25s; margin-bottom:1rem; }
.ci-block:hover { border-color:var(--blue); }
.ci-ico { width:44px; height:44px; background:var(--blue-pale); border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ci-lbl { font-size:.71rem; font-weight:700; letter-spacing:.15em; text-transform:uppercase; color:var(--blue); margin-bottom:.3rem; }
.ci-val { font-size:.94rem; color:var(--text-body); line-height:1.55; }
.ci-val a { color:var(--blue); transition:color .2s; }
.ci-val a:hover { color:var(--blue-dark); }

/* FAQ */
.faq-item { border-bottom:1px solid var(--border); }
.faq-q { display:flex; justify-content:space-between; align-items:center; gap:1rem; padding:1.35rem 0; cursor:pointer; font-weight:600; font-size:.97rem; color:var(--ink); transition:color .2s; }
.faq-q:hover { color:var(--blue); }
.faq-tog { width:28px; height:28px; border-radius:50%; border:2px solid var(--border); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--blue); font-size:1.05rem; font-weight:700; transition:all .25s; }
.faq-item.open .faq-tog { background:var(--blue); border-color:var(--blue); color:#fff; transform:rotate(45deg); }
.faq-ans { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.faq-item.open .faq-ans { max-height:200px; }
.faq-ans p { font-size:.93rem; color:var(--text-light); line-height:1.7; padding-bottom:1.25rem; }

/* ── POLICY ── */
.pol-layout { display:grid; grid-template-columns:200px 1fr; gap:5rem; }
.pol-sidebar { position:sticky; top:88px; }
.pol-nav-ttl { font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:var(--text-xlight); margin-bottom:1rem; }
.pol-nav a { display:block; font-size:.85rem; color:var(--text-light); padding:.32rem 0 .32rem .8rem; border-left:2px solid var(--border); transition:all .2s; margin-bottom:.2rem; }
.pol-nav a:hover { color:var(--blue); border-left-color:var(--blue); }
.pol-body h2 { font-family:var(--font-serif); font-weight:700; font-size:1.35rem; color:var(--ink); margin:3rem 0 .85rem; padding-bottom:.5rem; border-bottom:2px solid var(--blue-light); }
.pol-body p { font-size:.94rem; line-height:1.8; color:var(--text-light); margin-bottom:.9rem; }
.pol-body ul { margin:.7rem 0 .9rem 1.2rem; }
.pol-body li { font-size:.92rem; color:var(--text-light); line-height:1.75; margin-bottom:.3rem; }
.pol-body strong { color:var(--ink); }
.pol-body a { color:var(--blue); }

/* ── FOOTER ── */
footer { background:var(--ink); color:rgba(255,255,255,.5); padding:5rem 0 2.5rem; }
.foot-grid { display:grid; grid-template-columns:1.8fr 1fr 1fr 1fr; gap:4rem; padding-bottom:4rem; border-bottom:1px solid rgba(255,255,255,.08); margin-bottom:2rem; }
.foot-brand img { height:36px; filter:brightness(0) invert(1); opacity:.8; margin-bottom:1.2rem; }
.foot-brand p { font-size:.87rem; line-height:1.7; color:rgba(255,255,255,.65); margin-bottom:1rem; }
.foot-brand address { font-style:normal; font-size:.83rem; color:rgba(255,255,255,.55); line-height:1.75; }
.foot-col-ttl { font-size:.72rem; font-weight:700; letter-spacing:.18em; text-transform:uppercase; color:rgba(255,255,255,.5); margin-bottom:1.2rem; }
.foot-links { display:flex; flex-direction:column; gap:.55rem; }
.foot-links a { font-size:.87rem; color:rgba(255,255,255,.65); transition:color .2s; }
.foot-links a:hover { color:var(--blue); }
.foot-btm { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:1rem; }
.foot-btm p, .foot-btm a { font-size:.81rem; color:rgba(255,255,255,.45); }
.foot-btm a:hover { color:var(--blue); }
.foot-btm-links { display:flex; gap:2rem; }
.foot-accent { color:var(--blue); }

/* ── BACK TO TOP ── */
.back-to-top { position:fixed; bottom:2rem; right:2rem; width:46px; height:46px; background:var(--blue); border:none; border-radius:6px; cursor:pointer; display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-blue); opacity:0; transform:translateY(12px); transition:opacity .3s,transform .3s; z-index:999; pointer-events:none; }
.back-to-top.visible { opacity:1; transform:translateY(0); pointer-events:auto; }
.back-to-top:hover { background:var(--blue-dark); transform:translateY(-3px) !important; }
.back-to-top svg { width:18px; height:18px; stroke:#fff; stroke-width:2.5; fill:none; stroke-linecap:round; stroke-linejoin:round; }

/* ── SCROLL REVEAL ── */
.reveal { opacity:0; transform:translateY(22px); transition:opacity .6s ease,transform .6s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.d1{transition-delay:.1s} .d2{transition-delay:.2s} .d3{transition-delay:.3s} .d4{transition-delay:.4s}

/* ── RESPONSIVE ── */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;}.hero-right{display:none;}
  .hero-left{padding:4rem 2rem;}
  .about-split{grid-template-columns:1fr;gap:3rem;}
  .svc-detail-row{grid-template-columns:1fr;}.sdr-visual{min-height:200px;border-left:none !important;border-right:none !important;border-top:1px solid var(--border);}.svc-detail-row:nth-child(even) .sdr-text,.svc-detail-row:nth-child(even) .sdr-visual{order:unset;}.sdr-text{padding:3rem 2rem;}
  .contact-split{grid-template-columns:1fr;gap:2.5rem;}
  .pol-layout{grid-template-columns:1fr;}.pol-sidebar{display:none;}
  .foot-grid{grid-template-columns:1fr 1fr;gap:3rem;}
  .comp-grid{grid-template-columns:1fr 1fr;}
}
@media(max-width:768px){
  .nav-links{display:none;}.hamburger{display:flex;}
  .svc-grid{grid-template-columns:1fr;}
  .stats-row{grid-template-columns:1fr 1fr;}.stat-cell{border-right:none;border-bottom:1px solid rgba(255,255,255,.15);}.stat-cell:nth-child(odd){border-right:1px solid rgba(255,255,255,.15);}
  .ind-grid{grid-template-columns:1fr 1fr;}
  .tech-grid{grid-template-columns:1fr 1fr;}
  .comp-grid{grid-template-columns:1fr;}
  .foot-grid{grid-template-columns:1fr;}
  .foot-btm{flex-direction:column;text-align:center;}
  .section-pad{padding:4.5rem 0;}
  .process-timeline .pt-step{grid-template-columns:1fr;}.pt-num-wrap{flex-direction:row;}.pt-step::before{display:none;}
  .hero-stats{grid-template-columns:1fr;}
  .cert-row{flex-wrap:wrap;}.cert-item{flex:0 0 calc(50% - .5rem);}
}
@media(max-width:480px){
  .ind-grid{grid-template-columns:1fr;}
  .tech-grid{grid-template-columns:1fr 1fr;}
  .stats-row{grid-template-columns:1fr;}.stat-cell{border-right:none;}
}
