/* ═══════════════════════════════════════════════
   TECHEDGE040 v6 — DARK THEME + ORANJE ACCENT
═══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; }

:root {
  /* Oranje */
  --orange:     #D95E1B;
  --orange-lt:  #F07030;
  --orange-bg:  rgba(217,94,27,.10);
  --orange-bd:  rgba(217,94,27,.28);

  /* Donkerblauw */
  --navy:       #0C1628;
  --navy-mid:   #111E38;
  --navy-card:  #162444;
  --navy-lt:    #1C2D50;

  /* Tekst */
  --text:       #F0EDE8;
  --muted:      rgba(240,237,232,.60);
  --faint:      rgba(240,237,232,.30);

  /* Borders & shadows */
  --border:     rgba(255,255,255,.08);
  --border-lt:  rgba(255,255,255,.14);
  --shadow-md:  0 8px 32px rgba(0,0,0,.35);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.45);

  /* Typografie */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Outfit', system-ui, sans-serif;

  /* Spacing */
  --px:   clamp(18px, 5vw, 64px);
  --py:   clamp(56px, 8vw, 100px);
  --maxw: 1160px;
}

body {
  font-family: var(--body);
  background: var(--navy);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Dot-grid textuur */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 28px 28px;
}

h1,h2,h3,h4 { font-family: var(--display); line-height: 1.1; letter-spacing: -.02em; }
h1 { font-size: clamp(34px, 6vw, 68px); font-weight: 900; }
h2 { font-size: clamp(24px, 4vw, 46px); font-weight: 900; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 16px; font-weight: 700; }
h1 em, h2 em, h3 em { font-style: italic; color: var(--orange); }
p { line-height: 1.75; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--px); }
.section { max-width: var(--maxw); margin: 0 auto; padding: var(--py) var(--px); }

/* ── CHIP ── */
.chip { display: inline-flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--orange); margin-bottom: 12px; }
.chip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; animation: blink 2.2s infinite; }
@keyframes blink { 0%,100%{opacity:1;}50%{opacity:.2;} }

.tag { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--orange); background: var(--orange-bg); border: 1px solid var(--orange-bd); padding: 3px 9px; border-radius: 4px; }
.lead { font-size: clamp(16px, 2vw, 19px); color: var(--muted); line-height: 1.8; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--body); font-size: 15px; font-weight: 700; padding: 13px 26px; border-radius: 9px; border: 2px solid transparent; transition: background .2s, border-color .2s, color .2s, transform .18s, box-shadow .2s; line-height: 1; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 18px rgba(217,94,27,.35); }
.btn-primary:hover { background: var(--orange-lt); box-shadow: 0 8px 28px rgba(217,94,27,.45); }
.btn-outline { background: transparent; color: var(--text); border-color: var(--border-lt); }
.btn-outline:hover { border-color: var(--orange); color: var(--orange); }
.btn-lg { font-size: 17px; padding: 16px 34px; border-radius: 10px; }
.btn-sm { font-size: 13px; padding: 9px 18px; border-radius: 7px; }

/* ── REVEAL ── */
.reveal { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.js .reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; }

/* ═══════════════════════════════
   TOP BAR
═══════════════════════════════ */
#topbar { background: var(--navy-card); border-bottom: 1px solid var(--border); position: relative; z-index: 500; }
.topbar-inner { max-width: var(--maxw); margin: 0 auto; padding: 9px var(--px); display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-contact { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.topbar-contact a { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: 13px; font-weight: 500; transition: color .2s; }
.topbar-contact a:hover { color: var(--orange); }
.topbar-links { display: flex; align-items: center; gap: 16px; }
.topbar-links a { color: var(--faint); font-size: 12px; transition: color .2s; }
.topbar-links a:hover { color: var(--muted); }
.topbar-reviews { display: flex; align-items: center; gap: 7px; background: var(--orange-bg); border: 1px solid var(--orange-bd); border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 600; color: var(--orange); }
.stars { color: #FFC107; font-size: 11px; letter-spacing: 1px; }

/* ═══════════════════════════════
   MAIN NAV
═══════════════════════════════ */
#nav { position: sticky; top: 0; z-index: 400; background: rgba(12,22,40,.95); backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; padding: 0 var(--px); height: 64px; gap: 8px; }

.logo { display: flex; align-items: center; gap: 9px; flex-shrink: 0; margin-right: 8px; }
.logo svg { width: 32px; height: 32px; }
.logo-word { font-family: var(--display); font-weight: 900; font-size: 18px; color: var(--text); letter-spacing: -.03em; line-height: 1; }
.logo-word span { color: var(--orange); }

.nav-main { display: none; align-items: center; flex: 1; gap: 2px; }
@media(min-width:960px) { .nav-main { display: flex; } }

.nav-item { position: relative; }
.nav-link, .nav-parent-btn { display: flex; align-items: center; gap: 5px; font-size: 14px; font-weight: 600; color: var(--muted); padding: 8px 14px; border-radius: 7px; background: none; border: none; transition: color .2s, background .2s; white-space: nowrap; }
.nav-link:hover, .nav-parent-btn:hover, .nav-link.active, .nav-parent-btn.active { color: var(--orange); background: var(--orange-bg); }
.nav-chevron { width: 14px; height: 14px; transition: transform .22s; flex-shrink: 0; }
.nav-item.open .nav-chevron { transform: rotate(180deg); }

/* Mega menu */
.mega-menu { position: absolute; top: calc(100% + 10px); left: 0; background: var(--navy-card); border: 1px solid var(--border-lt); border-radius: 14px; box-shadow: var(--shadow-lg); min-width: 220px; padding: 10px; opacity: 0; pointer-events: none; transform: translateY(8px); transition: opacity .2s, transform .22s; z-index: 999; }
.mega-menu.wide { min-width: 540px; display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.nav-item.open .mega-menu { opacity: 1; pointer-events: all; transform: none; }
.mm-item { display: flex; gap: 10px; align-items: flex-start; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 14px; transition: background .18s, color .18s; }
.mm-item:hover { background: var(--orange-bg); color: var(--text); }
.mm-icon { width: 30px; height: 30px; border-radius: 6px; flex-shrink: 0; background: var(--orange-bg); border: 1px solid var(--orange-bd); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.mm-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.mm-item span { font-size: 12px; color: var(--faint); line-height: 1.4; }
.mm-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); padding: 10px 12px 4px; grid-column: 1/-1; }

.nav-cta { display: none; margin-left: auto; font-size: 14px; font-weight: 700; background: var(--orange); color: #fff; padding: 10px 22px; border-radius: 8px; border: none; white-space: nowrap; transition: background .2s, transform .15s; box-shadow: 0 2px 12px rgba(217,94,27,.35); }
.nav-cta:hover { background: var(--orange-lt); transform: translateY(-1px); }
@media(min-width:768px) { .nav-cta { display: block; } }

/* Hamburger */
.hamburger { display: flex; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; margin-left: auto; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media(min-width:960px) { .hamburger { display: none; } }

/* ═══════════════════════════════
   MOBILE DRAWER
═══════════════════════════════ */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.6); z-index: 800; opacity: 0; transition: opacity .3s; }
.mob-overlay.open { display: block; opacity: 1; }
.mob-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 92vw); background: var(--navy-mid); z-index: 900; overflow: hidden; transform: translateX(100%); transition: transform .33s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
.mob-drawer.open { transform: none; }
.mob-level { position: absolute; inset: 0; display: flex; flex-direction: column; background: var(--navy-mid); transform: translateX(0); transition: transform .28s cubic-bezier(.4,0,.2,1); overflow-y: auto; }
.mob-level.slide-out { transform: translateX(-100%); }
.mob-level.slide-right { transform: translateX(100%); }
.mob-header { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--border); background: var(--navy-card); flex-shrink: 0; }
.mob-header .mob-back { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--muted); background: none; border: none; }
.mob-header .mob-title { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--text); }
.mob-close { width: 32px; height: 32px; border-radius: 50%; background: var(--border); border: none; color: var(--text); font-size: 18px; display: flex; align-items: center; justify-content: center; }
.mob-links { flex: 1; overflow-y: auto; }
.mob-section-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); padding: 16px 20px 6px; }
.mob-link { display: flex; align-items: center; justify-content: space-between; padding: 14px 20px; font-size: 15px; font-weight: 600; color: var(--muted); border-bottom: 1px solid var(--border); background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; transition: color .2s, background .2s; }
.mob-link:hover { color: var(--orange); background: var(--orange-bg); }
.mob-link .mob-arrow { color: var(--faint); font-size: 16px; }
.mob-cta-wrap { padding: 20px; border-top: 1px solid var(--border); flex-shrink: 0; background: var(--navy-card); }
.mob-cta { display: block; width: 100%; text-align: center; padding: 14px; border-radius: 9px; font-size: 16px; font-weight: 700; background: var(--orange); color: white; transition: background .2s; }
.mob-cta:hover { background: var(--orange-lt); }
.mob-contact-mini { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.mob-contact-mini a { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); transition: color .2s; }
.mob-contact-mini a:hover { color: var(--orange); }

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.hero-section { background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy) 100%); position: relative; overflow: hidden; }
.hero-bg-shape { position: absolute; top: -80px; right: -100px; width: min(600px,100vw); height: min(600px,100vw); background: radial-gradient(circle, rgba(217,94,27,.18) 0%, transparent 65%); pointer-events: none; animation: heroGlow 8s ease-in-out infinite; }
@keyframes heroGlow { 0%,100%{transform:scale(1);}50%{transform:scale(1.1);} }
.hero-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(56px,8vw,100px) var(--px); display: grid; grid-template-columns: 1fr; gap: 48px; position: relative; z-index: 1; }
@media(min-width:900px) { .hero-inner { grid-template-columns: 1fr 400px; align-items: center; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 22px; }
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: blink 2s infinite; }

/* Hero card */
.hero-card { background: rgba(255,255,255,.05); border: 1px solid var(--border-lt); border-radius: 16px; padding: 28px; position: relative; overflow: hidden; }
.hero-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--orange), transparent); }
.hc-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 18px; }
.stack-row { display: flex; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; font-weight: 600; color: var(--text); }
.stack-row:last-of-type { border-bottom: none; }
.hc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.stat { background: var(--orange-bg); border: 1px solid var(--orange-bd); border-radius: 10px; padding: 14px; text-align: center; }
.stat-n { font-family: var(--display); font-weight: 900; font-size: 28px; color: var(--orange); line-height: 1; }
.stat-l { font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--faint); margin-top: 4px; }

/* ═══════════════════════════════
   PLATFORMS BAR
═══════════════════════════════ */
.platforms-bar { background: var(--navy-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 20px var(--px); position: relative; z-index: 1; }
.pb-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.pb-label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-right: 6px; white-space: nowrap; }
.pill { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--muted); background: rgba(255,255,255,.04); border: 1px solid var(--border); padding: 6px 14px; border-radius: 100px; transition: border-color .2s, color .2s; }
.pill:hover { border-color: var(--orange-bd); color: var(--orange); }
.pill-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--orange); opacity: .7; }

/* ═══════════════════════════════
   STATS BAR
═══════════════════════════════ */
.stats-bar { background: var(--navy-lt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: clamp(32px,5vw,56px) var(--px); position: relative; z-index: 1; }
.stats-bar-inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(2,1fr); gap: 32px; }
@media(min-width:640px) { .stats-bar-inner { grid-template-columns: repeat(4,1fr); } }
.stats-item { text-align: center; }
.stats-n { font-family: var(--display); font-weight: 900; font-size: clamp(32px,5vw,52px); color: var(--orange); line-height: 1; }
.stats-l { font-size: 13px; color: var(--faint); margin-top: 6px; font-weight: 500; }

/* ═══════════════════════════════
   DIENST SECTIES (homepage)
═══════════════════════════════ */
.dienst-section { border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.dienst-section:nth-child(even) { background: var(--navy-mid); }
.dienst-section-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px,6vw,80px) var(--px); display: grid; grid-template-columns: 1fr; gap: 32px; }
@media(min-width:768px) { .dienst-section-inner { grid-template-columns: 260px 1fr; gap: 48px; align-items: start; } }
.ds-label h3 { font-size: clamp(18px,2.5vw,24px); margin-bottom: 10px; }
.ds-label p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; }
.ds-label a { font-size: 13px; font-weight: 700; color: var(--orange); display: inline-flex; align-items: center; gap: 5px; transition: gap .2s; }
.ds-label a:hover { gap: 10px; }
.ds-cards { display: flex; flex-direction: column; gap: 6px; }
.ds-card { display: flex; gap: 14px; align-items: flex-start; background: var(--navy-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; transition: border-color .2s, background .2s, transform .2s, box-shadow .2s; text-decoration: none; color: inherit; }
.ds-card:hover { border-color: var(--orange-bd); background: var(--navy-lt); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.ds-card-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.ds-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.ds-card p { font-size: 13px; color: var(--muted); line-height: 1.55; }
.ds-card-arrow { margin-left: auto; font-size: 14px; color: var(--orange); flex-shrink: 0; align-self: center; transition: transform .2s; }
.ds-card:hover .ds-card-arrow { transform: translateX(4px); }

/* ═══════════════════════════════
   REVIEWS
═══════════════════════════════ */
.reviews-section { background: var(--navy-mid); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); position: relative; z-index: 1; }
.reviews-header { text-align: center; margin-bottom: 40px; }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media(min-width:600px) { .reviews-grid { grid-template-columns: repeat(2,1fr); } }
@media(min-width:900px) { .reviews-grid { grid-template-columns: repeat(3,1fr); } }
.review-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color .2s; }
.review-card:hover { border-color: var(--orange-bd); }
.review-stars { color: #FFC107; font-size: 14px; letter-spacing: 2px; margin-bottom: 10px; }
.review-text { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--orange-bg); border: 2px solid var(--orange-bd); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: var(--orange); flex-shrink: 0; }
.review-name { font-size: 13px; font-weight: 700; color: var(--text); }
.review-company { font-size: 12px; color: var(--faint); }

/* ═══════════════════════════════
   ABOUT / HIGHLIGHTS
═══════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:768px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; } }
.about-text p + p { margin-top: 14px; }
.about-text p { font-size: 16px; color: var(--muted); line-height: 1.8; }
.about-text strong { color: var(--text); }
.highlights { display: flex; flex-direction: column; gap: 12px; }
.hl-card { display: flex; gap: 14px; align-items: flex-start; background: var(--navy-card); border: 1px solid var(--border); border-left: 3px solid var(--orange); border-radius: 10px; padding: 18px 20px; transition: transform .2s; }
.hl-card:hover { transform: translateX(4px); }
.hl-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.hl-card h4 { font-size: 15px; margin-bottom: 4px; }
.hl-card p { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════
   WERKWIJZE / PILLARS
═══════════════════════════════ */
.werkwijze-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:900px) { .werkwijze-grid { grid-template-columns: 1fr 1fr; align-items: center; gap: 80px; } }
.pillars { display: flex; flex-direction: column; }
.pillar { display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.pillar:last-child { border-bottom: none; }
.p-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 10px; background: var(--orange-bg); border: 1px solid var(--orange-bd); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.pillar h4 { font-size: 16px; margin-bottom: 5px; }
.pillar p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.comm-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 10px; }
.comm-card { display: flex; gap: 10px; align-items: center; background: var(--navy-card); border: 1px solid var(--border); border-radius: 9px; padding: 14px; transition: border-color .2s; }
.comm-card:hover { border-color: var(--orange-bd); }
.cc-icon { font-size: 22px; }
.comm-card strong { display: block; font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.comm-card span { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════
   CTA BANNER
═══════════════════════════════ */
.cta-banner { background: linear-gradient(135deg, var(--navy-lt) 0%, var(--navy-mid) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: var(--py) var(--px); text-align: center; position: relative; overflow: hidden; z-index: 1; }
.cta-banner::before { content: ''; position: absolute; top: -120px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(217,94,27,.16) 0%, transparent 65%); pointer-events: none; }
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-inner h2 { margin-bottom: 16px; }
.cta-inner p { color: var(--muted); font-size: clamp(15px,2vw,18px); line-height: 1.8; margin-bottom: 32px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ═══════════════════════════════
   CONTACT
═══════════════════════════════ */
.contact-section { background: var(--navy-mid); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.ci-list { display: flex; flex-direction: column; gap: 14px; }
.ci-item { display: flex; align-items: center; gap: 14px; }
.ci-icon { width: 44px; height: 44px; flex-shrink: 0; background: var(--orange-bg); border: 1px solid var(--orange-bd); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.ci-text small { display: block; font-size: 10px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--faint); margin-bottom: 2px; }
.ci-text a, .ci-text span { font-size: 15px; font-weight: 600; color: var(--text); transition: color .2s; }
.ci-text a:hover { color: var(--orange); }

/* ── FORM ── */
.cform { display: flex; flex-direction: column; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--faint); }
.fg input, .fg textarea, .fg select { background: rgba(255,255,255,.05); border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 16px; color: var(--text); font-size: 15px; outline: none; width: 100%; appearance: none; transition: border-color .2s, background .2s; }
.fg input:focus, .fg textarea:focus, .fg select:focus { border-color: var(--orange-bd); background: var(--orange-bg); }
.fg select option { background: var(--navy-card); color: var(--text); }
.fg textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media(min-width:480px) { .form-row { grid-template-columns: 1fr 1fr; } }

/* ═══════════════════════════════
   PAGE HERO (inner pages)
═══════════════════════════════ */
.page-hero { background: linear-gradient(160deg, var(--navy-card) 0%, var(--navy) 60%); border-bottom: 1px solid var(--border); position: relative; overflow: hidden; z-index: 1; }
.page-hero::after { content: ''; position: absolute; top: -60px; right: -80px; width: min(400px,90vw); height: min(400px,90vw); background: radial-gradient(circle, rgba(217,94,27,.14) 0%, transparent 65%); pointer-events: none; }
.page-hero-inner { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px,7vw,90px) var(--px) clamp(36px,5vw,64px); position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; margin-bottom: 18px; flex-wrap: wrap; }
.breadcrumb a { color: var(--faint); transition: color .2s; }
.breadcrumb a:hover { color: var(--muted); }
.breadcrumb .sep { color: var(--faint); }
.breadcrumb span { color: var(--muted); }

/* ═══════════════════════════════
   INNER PAGE LAYOUT
═══════════════════════════════ */
.inner-layout { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media(min-width:960px) { .inner-layout { grid-template-columns: 1fr 290px; align-items: start; gap: 64px; } }
.inner-content { position: relative; z-index: 1; }

/* Sidebar */
.sidebar-card { background: var(--navy-card); border: 1px solid var(--border-lt); border-radius: 14px; padding: 26px; position: sticky; top: 84px; }
.sidebar-card::before { content: ''; display: block; height: 3px; margin: -26px -26px 22px; background: linear-gradient(90deg, var(--orange), transparent); border-radius: 14px 14px 0 0; }
.sidebar-card h3 { font-size: 19px; margin-bottom: 8px; }
.sidebar-card p { font-size: 13px; color: var(--muted); margin-bottom: 18px; line-height: 1.65; }
.sidebar-card .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.sidebar-mini { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.sm-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.sm-icon { width: 28px; height: 28px; background: var(--orange-bg); border: 1px solid var(--orange-bd); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.sm-item a { color: var(--muted); transition: color .2s; }
.sm-item a:hover { color: var(--orange); }
.sidebar-related { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.sr-label { font-size: 10px; font-weight: 700; letter-spacing: 1.3px; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.sidebar-related a { display: block; font-size: 13px; font-weight: 600; color: var(--muted); padding: 7px 0; border-bottom: 1px solid var(--border); transition: color .2s; }
.sidebar-related a:last-child { border-bottom: none; }
.sidebar-related a:hover { color: var(--orange); }

/* Detail cards */
.detail-cards { display: flex; flex-direction: column; gap: 20px; }
.detail-card { background: var(--navy-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px; transition: border-color .2s, box-shadow .2s; }
.detail-card:hover { border-color: var(--orange-bd); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.dc-icon { width: 46px; height: 46px; border-radius: 10px; background: var(--orange-bg); border: 1px solid var(--orange-bd); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 16px; }
.detail-card h3 { font-size: 19px; margin-bottom: 10px; }
.detail-card p { font-size: 15px; color: var(--muted); line-height: 1.75; }
.dc-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.dc-list li { display: flex; gap: 9px; align-items: flex-start; font-size: 14px; color: var(--muted); line-height: 1.55; }
.dc-list li::before { content: "→"; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.dc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }

/* Highlights in inner pages */
.hl-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media(min-width:600px) { .hl-grid { grid-template-columns: repeat(2,1fr); } }

/* Steps */
.steps-list { display: flex; flex-direction: column; }
.step-item { display: flex; gap: 18px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num { width: 34px; height: 34px; border-radius: 50%; background: var(--orange-bg); border: 1.5px solid var(--orange-bd); color: var(--orange); font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step-item h4 { font-size: 16px; margin-bottom: 5px; }
.step-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════
   FOOTER
═══════════════════════════════ */
footer { background: var(--navy-card); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-main { max-width: var(--maxw); margin: 0 auto; padding: clamp(40px,6vw,72px) var(--px); display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:640px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media(min-width:900px) { .footer-main { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; } }
.footer-tagline { font-size: 14px; color: var(--faint); line-height: 1.7; margin-top: 12px; }
.footer-col h5 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.footer-col a { display: block; font-size: 14px; color: var(--muted); margin-bottom: 9px; transition: color .2s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: var(--maxw); margin: 0 auto; padding: 20px var(--px); border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; }
.footer-bottom span { font-size: 13px; color: var(--faint); }
.footer-bottom a { font-size: 13px; color: var(--faint); transition: color .2s; }
.footer-bottom a:hover { color: var(--orange); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ═══════════════════════════════
   SCROLL TO TOP
═══════════════════════════════ */
#totop { position: fixed; bottom: 20px; right: 20px; z-index: 600; width: 44px; height: 44px; border-radius: 50%; background: var(--orange); border: none; color: #fff; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(217,94,27,.4); opacity: 0; pointer-events: none; transition: opacity .3s, transform .2s; }
#totop.show { opacity: 1; pointer-events: all; }
#totop:hover { transform: translateY(-3px); }

/* ═══════════════════════════════
   UTILITIES
═══════════════════════════════ */
.mt-8{margin-top:8px;}.mt-16{margin-top:16px;}.mt-24{margin-top:24px;}.mt-32{margin-top:32px;}.mt-48{margin-top:48px;}.mt-64{margin-top:64px;}
.mb-8{margin-bottom:8px;}.mb-16{margin-bottom:16px;}.mb-24{margin-bottom:24px;}.mb-32{margin-bottom:32px;}
.flex-wrap{display:flex;flex-wrap:wrap;gap:12px;}
.text-orange{color:var(--orange);}
.section-dark { background: var(--navy-mid) !important; }
.section-card { background: var(--navy-card) !important; }
