@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300..700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --orange: #F47920; --orange-dark: #d9660e; --orange-light: #fff3ea;
  --blue: #4A90D9; --blue-dark: #2f6eb5; --blue-light: #eaf2fb;
  --bg: #f4f6f9; --white: #ffffff;
  --surface-2: #f1f4f8; --surface-3: #e8ecf2;
  --text: #0f1623; --text-2: #374151; --muted: #6b7280; --faint: #9ca3af;
  --border: #e3e7ef; --border-2: #d1d9e6;
  --good: #16a34a; --good-bg: #f0fdf4;
  --max: 1200px; --nav-h: 68px; --radius: 14px; --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08),0 2px 6px rgba(0,0,0,.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.10),0 4px 12px rgba(0,0,0,.05);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --tr: 180ms cubic-bezier(0.16,1,0.3,1);
  /* shorthand aliases used in HTML */
  --surf2: var(--surface-2);
  --r: var(--radius);
  --s1: var(--shadow-sm);
  --s2: var(--shadow-md);
  --text2: var(--text-2);
  --fd: var(--font-display);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; font-size: 16px; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; transition: color var(--tr); }
a:hover { color: var(--blue-dark); }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.15; letter-spacing: -.02em; font-family: var(--font-display); }
p,li { text-wrap: pretty; max-width: 70ch; }
ul,ol { list-style: none; }
input,button,textarea,select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
::selection { background: rgba(244,121,32,.15); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; border-radius: 4px; }

/* LAYOUT */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 28px; }

/* NAV */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h);
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(0,0,0,.04);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.nav-logo { display: flex; align-items: center; line-height: 1; }
.nav-logo img { height: 135px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  padding: 7px 13px; border-radius: 8px; font-size: 14px; font-weight: 500;
  color: var(--text-2); transition: color var(--tr), background var(--tr);
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-links a.active { color: var(--orange); background: var(--orange-light); }
.nav-cta {
  padding: 10px 22px; background: var(--orange); color: #fff !important;
  border-radius: 999px; font-size: 14px; font-weight: 700; white-space: nowrap;
  box-shadow: 0 2px 8px rgba(244,121,32,.35);
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(244,121,32,.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; border-radius: 8px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; }
.mobile-menu {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border); padding: 20px 28px 28px;
  flex-direction: column; gap: 6px; box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 14px; border-radius: 10px; font-size: 15px; color: var(--text-2); transition: background var(--tr), color var(--tr); }
.mobile-menu a:hover { color: var(--text); background: var(--surface-2); }
.mobile-menu .nav-cta { text-align: center; margin-top: 10px; color: #fff !important; }

/* MAIN */
main { padding-top: var(--nav-h); }

/* HERO */
.hero {
  position: relative; overflow: hidden; padding: 88px 0 76px;
  background: linear-gradient(155deg,#ffffff 0%,#eef3ff 55%,#fff5ee 100%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%234A90D9' fill-opacity='0.04'%3E%3Ccircle cx='10' cy='10' r='1.5'/%3E%3Ccircle cx='30' cy='10' r='1.5'/%3E%3Ccircle cx='50' cy='10' r='1.5'/%3E%3Ccircle cx='10' cy='30' r='1.5'/%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3Ccircle cx='50' cy='30' r='1.5'/%3E%3Ccircle cx='10' cy='50' r='1.5'/%3E%3Ccircle cx='30' cy='50' r='1.5'/%3E%3Ccircle cx='50' cy='50' r='1.5'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.25);
  color: var(--orange-dark); font-size: 13px; font-weight: 600; margin-bottom: 24px;
}
.dot { width: 6px; height: 6px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
@keyframes pulse { 0%,100% { opacity:1; transform:scale(1); } 50% { opacity:.5; transform:scale(1.4); } }
.hero h1 { font-size: clamp(36px,5.5vw,66px); font-weight: 800; margin-bottom: 20px; line-height: 1.05; }
.c-orange { color: var(--orange); }
.c-blue { color: var(--blue); }
.hero-desc { font-size: clamp(16px,1.8vw,19px); color: var(--muted); margin-bottom: 36px; max-width: 58ch; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-trust { margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-trust-label { font-size: 12px; color: var(--faint); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-logos span { font-size: 13px; font-weight: 600; color: var(--muted); padding: 7px 16px; border: 1px solid var(--border); border-radius: 999px; background: var(--white); box-shadow: var(--shadow-sm); }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 13px 28px; background: var(--orange); color: #fff; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: 0 4px 16px rgba(244,121,32,.35); transition: background var(--tr),transform var(--tr),box-shadow var(--tr); }
.btn-primary:hover { background: var(--orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,121,32,.45); }
.btn-secondary { display: inline-block; padding: 13px 28px; background: var(--blue); color: #fff; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: 0 4px 14px rgba(74,144,217,.3); transition: background var(--tr),transform var(--tr); }
.btn-secondary:hover { background: var(--blue-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { display: inline-block; padding: 13px 28px; border: 2px solid var(--border-2); color: var(--text-2); border-radius: 999px; font-weight: 600; font-size: 15px; background: var(--white); transition: border-color var(--tr),background var(--tr),transform var(--tr),color var(--tr); }
.btn-ghost:hover { border-color: var(--orange); background: var(--orange-light); color: var(--orange-dark); transform: translateY(-2px); }
.btn-light { display: inline-block; padding: 13px 28px; background: rgba(255,255,255,.15); color: #fff; border-radius: 999px; font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,.3); transition: background var(--tr),transform var(--tr); }
.btn-light:hover { background: rgba(255,255,255,.25); color: #fff; transform: translateY(-2px); }

/* STATS */
.stats-bar { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 36px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
.stat-item:last-child { border-right: none; }
.stat-item h3 { font-size: clamp(18px,2vw,30px); font-weight: 800; color: var(--orange); margin-bottom: 6px; line-height: 1.1; }
.stat-item p { color: var(--muted); font-size: 13px; line-height: 1.4; max-width: none; }

/* SECTIONS */
section { padding: 76px 0; }
.section-label { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; }
.section-label::before { content: ''; width: 14px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.section-title { font-size: clamp(26px,3.5vw,42px); font-weight: 800; margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 17px; max-width: 56ch; margin-bottom: 44px; line-height: 1.7; }
.section-head { margin-bottom: 44px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-inline: auto; }
.bg-white { background: var(--white); }
.bg-surface { background: var(--surface-2); }

/* CARDS */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); }
.card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 22px; }
.card-icon.blue { background: var(--blue-light); border-color: rgba(74,144,217,.2); }
.card h3 { font-size: 18px; margin-bottom: 10px; font-weight: 700; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* GRIDS */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }

/* TAGS / CHIPS */
.tag { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); }
.tag-blue { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--blue-light); border: 1px solid rgba(74,144,217,.2); color: var(--blue-dark); }
.chip { padding: 5px 11px; border-radius: 999px; font-size: 12px; font-weight: 600; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-2); }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }

/* PAGE HERO */
.page-hero { padding: 60px 0 48px; background: linear-gradient(135deg,#ffffff 0%,#eef3ff 100%); border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(28px,4.5vw,50px); font-weight: 800; margin-bottom: 14px; }
.page-hero p { color: var(--muted); font-size: 17px; max-width: 58ch; line-height: 1.7; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.breadcrumb a { color: var(--faint); transition: color var(--tr); }
.breadcrumb a:hover { color: var(--muted); }

/* INDUSTRY CARDS */
.industry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.industry-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); }
.industry-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.industry-icon { font-size: 32px; margin-bottom: 16px; line-height: 1; }
.industry-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.industry-card p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.industry-badge { display: inline-block; margin-top: 14px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); }
.industry-badge.blue { background: var(--blue-light); border-color: rgba(74,144,217,.2); color: var(--blue-dark); }

/* PROCESS TRACK */
.process-track { position: relative; display: grid; grid-template-columns: repeat(5,1fr); }
.process-track::before { content: ''; position: absolute; top: 23px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--orange),var(--blue)); opacity: .2; border-radius: 2px; }
.proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-num { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--orange); box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),background var(--tr); }
.proc-step:hover .proc-num { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,121,32,.12); background: var(--orange-light); }
.proc-step h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.proc-step p { font-size: 13px; color: var(--muted); line-height: 1.5; max-width: none; }

/* CASE CARDS */
.case-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.case-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); }
.case-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.case-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--orange),var(--blue)); }
.case-industry { display: inline-block; margin-bottom: 14px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--blue-light); border: 1px solid rgba(74,144,217,.2); color: var(--blue-dark); }
.case-card h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; }
.case-card p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 20px; }
.case-results { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.result { padding: 14px; border-radius: 10px; background: var(--good-bg); border: 1px solid rgba(22,163,74,.15); text-align: center; }
.result strong { display: block; font-size: 22px; color: var(--good); font-weight: 800; }
.result span { font-size: 12px; color: var(--muted); max-width: none; }

/* SERVICES */
.service-block { padding: 68px 0; border-bottom: 1px solid var(--border); }
.service-block:last-child { border-bottom: none; }
.service-layout { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.service-layout.rev { direction: rtl; }
.service-layout.rev > * { direction: ltr; }
.service-tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.service-title { font-size: clamp(24px,3vw,38px); font-weight: 800; margin-bottom: 12px; }
.service-desc { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 22px; }
.service-features { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.service-features li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); }
.service-features li::before { content: ''; flex-shrink: 0; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.service-price { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); padding: 8px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 20px; }
.service-price strong { color: var(--text); font-weight: 700; }
.service-visual { background: linear-gradient(135deg,var(--surface-2) 0%,var(--white) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.visual-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 16px; }
.process-steps { display: grid; gap: 14px; }
.step { display: flex; align-items: flex-start; gap: 14px; }
.step-num { flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.25); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--orange-dark); }
.step-body h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.step-body p { font-size: 13px; color: var(--muted); }
.outcome-list { display: grid; gap: 10px; }
.outcome { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-radius: 10px; background: var(--good-bg); border: 1px solid rgba(22,163,74,.15); font-size: 13px; color: var(--text-2); }
.outcome::before { content: '✓'; font-weight: 800; color: var(--good); flex-shrink: 0; margin-top: 1px; }

/* ABOUT */
.about-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.about-values { display: grid; gap: 18px; margin-top: 24px; }
.value { display: flex; gap: 16px; align-items: flex-start; }
.value-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); display: flex; align-items: center; justify-content: center; font-size: 19px; }
.value h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.value p { font-size: 14px; color: var(--muted); line-height: 1.6; }
.founder-card { background: linear-gradient(135deg,var(--blue-light) 0%,var(--white) 60%); border: 1px solid rgba(74,144,217,.25); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.founder-avatar { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 14px; font-family: var(--font-display); box-shadow: 0 4px 16px rgba(244,121,32,.3); }
.founder-card h3 { font-size: 20px; margin-bottom: 4px; font-weight: 800; }
.founder-card .role { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.founder-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.certs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cert { padding: 5px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; background: var(--surface-2); border: 1px solid var(--border); color: var(--muted); }

/* DEFENCE */
.defence-hero { background: linear-gradient(135deg,#0b1426 0%,#0f2040 60%,#1a2d50 100%); padding: 60px 0 48px; border-bottom: 3px solid var(--orange); }
.defence-hero h1 { color: #fff; }
.defence-hero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 58ch; line-height: 1.7; }
.defence-hero .breadcrumb a,.defence-hero .breadcrumb span { color: rgba(255,255,255,.35); }
.def-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.35); color: #fca75a; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.def-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); }
.def-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg,var(--orange),var(--blue)); }
.def-card:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.def-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.def-card p { color: var(--muted); font-size: 15px; line-height: 1.7; }
.def-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.classified { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(244,121,32,.08); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); margin-bottom: 12px; }
.dark-box { background: linear-gradient(135deg,#0b1426,#1a2d50); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.08); }
.dark-row { padding: 12px 16px; border-radius: 10px; margin-bottom: 10px; }
.dark-row:last-child { margin-bottom: 0; }
.dark-row.orange { background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.3); }
.dark-row.blue { background: rgba(74,144,217,.12); border: 1px solid rgba(74,144,217,.25); }
.dark-row.dim { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.dark-row p { max-width: none; }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg,#0f1623 0%,#1a2744 100%); padding: 76px 0; text-align: center; }
.cta-band h2 { font-size: clamp(24px,4vw,44px); font-weight: 800; margin-bottom: 14px; color: #fff; }
.cta-band p { color: rgba(255,255,255,.55); font-size: 17px; margin: 0 auto 32px; max-width: 52ch; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.contact-info h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; margin-bottom: 12px; }
.contact-info > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 22px; }
.c-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.c-icon { flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.c-body p { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; font-weight: 600; max-width: none; }
.c-body strong { font-size: 15px; color: var(--text); font-weight: 600; }
.contact-form { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.contact-form h3 { font-size: 22px; margin-bottom: 22px; font-weight: 800; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 12px; font-weight: 700; color: var(--muted); margin-bottom: 7px; text-transform: uppercase; letter-spacing: .06em; }
input[type=text],input[type=email],select,textarea { width: 100%; padding: 11px 16px; background: var(--surface-2); border: 1.5px solid var(--border); border-radius: 10px; color: var(--text); font-size: 15px; transition: border-color var(--tr),box-shadow var(--tr),background var(--tr); }
input:focus,select:focus,textarea:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(244,121,32,.1); background: var(--white); }
input::placeholder,textarea::placeholder { color: var(--faint); }
select option { background: var(--white); color: var(--text); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; background: var(--orange); color: #fff; border-radius: 999px; font-weight: 700; font-size: 16px; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(244,121,32,.3); transition: background var(--tr),transform var(--tr); }
.form-submit:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* FOOTER */
footer { background: #0f1623; color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.footer-brand p { color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 28ch; }
.footer-logo img { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: .65; }
.footer-col h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.footer-col ul { list-style: none; display: grid; gap: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--tr); }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.25); }
.soc-links { display: flex; gap: 10px; }
.soc-link { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: 13px; font-weight: 700; transition: background var(--tr),color var(--tr),border-color var(--tr); }
.soc-link:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* RESPONSIVE */
@media(max-width:1024px) {
  .grid-4,.stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat-item:last-child { border-bottom: none; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-track::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-layout,.service-layout.rev { grid-template-columns: 1fr; direction: ltr; }
  .about-layout,.contact-layout { grid-template-columns: 1fr; }
  .defence-two-col { grid-template-columns: 1fr !important; }
}
@media(max-width:768px) {
  .nav-links,.nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2,.grid-3,.case-grid,.industry-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 48px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .cta-band { padding: 52px 0; }
  .process-track { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* LUCIDE ICONS */
.ci, .ic-icon, .cdi, .dicon, .avi, .cap-icon {
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ci svg, .ic-icon svg, .cdi svg, .dicon svg, .avi svg, .cap-icon svg {
  width: 22px; height: 22px; stroke-width: 2;
}
.ci {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--orange-light); border: 1px solid rgba(244,121,32,.2);
  margin-bottom: 20px;
}
.ci svg { color: var(--orange-dark); stroke: var(--orange-dark); }
.ci.b { background: var(--blue-light); border-color: rgba(74,144,217,.2); }
.ci.b svg { color: var(--blue-dark); stroke: var(--blue-dark); }
.ic-icon { margin-bottom: 16px; }
.ic-icon svg { width: 32px; height: 32px; color: var(--orange); stroke: var(--orange); }
.cdi, .avi {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--orange-light); border: 1px solid rgba(244,121,32,.2);
}
.cdi svg, .avi svg { color: var(--orange-dark); stroke: var(--orange-dark); }
.dicon { margin-bottom: 14px; }
.dicon svg { width: 36px; height: 36px; color: var(--orange); stroke: var(--orange); }
.cap-icon {
  width: 56px; height: 56px; margin: 0 auto 10px; border-radius: 12px;
  background: var(--orange-light); border: 1px solid rgba(244,121,32,.2);
}
.cap-icon svg { width: 28px; height: 28px; color: var(--orange-dark); stroke: var(--orange-dark); }
.stag, .cind, .clas, .dbadge, .cloud-badge {
  display: inline-flex; align-items: center; gap: 7px;
}
.stag svg, .cind svg, .clas svg, .dbadge svg, .cloud-badge svg, .inline-ic {
  width: 15px; height: 15px; flex-shrink: 0; stroke-width: 2;
}
.stag svg { color: var(--orange-dark); stroke: var(--orange-dark); }
.cloud-badge svg { color: var(--blue-dark); stroke: var(--blue-dark); }
.cind svg { color: var(--blue-dark); stroke: var(--blue-dark); }
.clas svg { color: var(--orange-dark); stroke: var(--orange-dark); }
.dbadge svg { color: #fca75a; stroke: #fca75a; }
.ont-title { display: flex; align-items: center; gap: 8px; }
.ont-title svg { width: 16px; height: 16px; flex-shrink: 0; stroke-width: 2;
  color: var(--orange-dark); stroke: var(--orange-dark); }

/* ═══════════════════════════════════════════
   HTML CLASS ALIASES & SHARED COMPONENTS
   ═══════════════════════════════════════════ */

/* colours */
.co { color: var(--orange); }
.cb { color: var(--blue); }

/* backgrounds */
.bg-w { background: var(--white); }
.bg-s { background: var(--surface-2); }

/* buttons */
.btn-p { display: inline-block; padding: 13px 28px; background: var(--orange); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: 0 4px 16px rgba(244,121,32,.35); transition: background var(--tr),transform var(--tr),box-shadow var(--tr); }
.btn-p:hover { background: var(--orange-dark); color: #fff !important; transform: translateY(-2px); box-shadow: 0 6px 24px rgba(244,121,32,.45); }
.btn-g { display: inline-block; padding: 13px 28px; border: 2px solid var(--border-2); color: var(--text-2) !important; border-radius: 999px; font-weight: 600; font-size: 15px; background: var(--white); transition: border-color var(--tr),background var(--tr),transform var(--tr),color var(--tr); }
.btn-g:hover { border-color: var(--orange); background: var(--orange-light); color: var(--orange-dark) !important; transform: translateY(-2px); }
.btn-s { display: inline-block; padding: 13px 28px; background: var(--blue); color: #fff !important; border-radius: 999px; font-weight: 700; font-size: 15px; box-shadow: 0 4px 14px rgba(74,144,217,.3); transition: background var(--tr),transform var(--tr); }
.btn-s:hover { background: var(--blue-dark); color: #fff !important; transform: translateY(-2px); }
.btn-l { display: inline-block; padding: 13px 28px; background: rgba(255,255,255,.15); color: #fff !important; border-radius: 999px; font-weight: 600; font-size: 15px; border: 2px solid rgba(255,255,255,.3); transition: background var(--tr),transform var(--tr); }
.btn-l:hover { background: rgba(255,255,255,.25); color: #fff !important; transform: translateY(-2px); }

/* grids */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.g3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.dtwo { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* section headings */
.sl { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--orange); margin-bottom: 12px; }
.sl::before { content: ''; width: 14px; height: 2px; background: var(--orange); border-radius: 2px; flex-shrink: 0; }
.sh { font-size: clamp(26px,3.5vw,42px); font-weight: 800; margin-bottom: 14px; line-height: 1.15; }
.ss { color: var(--muted); font-size: 17px; max-width: 56ch; margin-bottom: 0; line-height: 1.7; }
.sec-head { margin-bottom: 44px; }
.sec-head.c { text-align: center; }
.sec-head.c .ss { margin-inline: auto; }

/* page hero */
.phero { padding: 60px 0 48px; background: linear-gradient(135deg,#ffffff 0%,#eef3ff 100%); border-bottom: 1px solid var(--border); }
.phero h1 { font-size: clamp(28px,4.5vw,50px); font-weight: 800; margin-bottom: 14px; line-height: 1.12; }
.phero p { color: var(--muted); font-size: 17px; max-width: 58ch; line-height: 1.7; }
.bc { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--faint); margin-bottom: 18px; }
.bc a { color: var(--faint); transition: color var(--tr); }
.bc a:hover { color: var(--muted); }

/* home hero */
.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.25); color: var(--orange-dark); font-size: 13px; font-weight: 600; margin-bottom: 24px; }
.trust { margin-top: 52px; padding-top: 32px; border-top: 1px solid var(--border); }
.trust-label { font-size: 12px; color: var(--faint); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .1em; font-weight: 600; max-width: none; }

/* stats */
.stat { text-align: center; padding: 0 20px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat h3 { font-size: clamp(18px,2vw,30px); font-weight: 800; color: var(--orange); margin-bottom: 6px; line-height: 1.1; }
.stat p { color: var(--muted); font-size: 13px; line-height: 1.5; max-width: none; }

/* industry cards */
.ig { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.ic { padding: 28px; border-radius: var(--radius); border: 1px solid var(--border); background: var(--white); box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); height: 100%; display: flex; flex-direction: column; }
.ic:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ic h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.ic p { font-size: 14px; color: var(--muted); line-height: 1.65; flex: 1; max-width: none; margin-bottom: 0; }
.ibadge { display: inline-block; margin-top: 14px; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); }
.ibadge.b { background: var(--blue-light); border-color: rgba(74,144,217,.2); color: var(--blue-dark); }

/* process track */
.pt { position: relative; display: grid; grid-template-columns: repeat(5,1fr); }
.pt::before { content: ''; position: absolute; top: 23px; left: 10%; right: 10%; height: 2px; background: linear-gradient(90deg,var(--orange),var(--blue)); opacity: .2; border-radius: 2px; }
.ps { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.pn { width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 16px; background: var(--white); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 800; color: var(--orange); box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),background var(--tr); }
.ps:hover .pn { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,121,32,.12); background: var(--orange-light); }
.ps h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.ps p { font-size: 13px; color: var(--muted); line-height: 1.55; max-width: none; }

/* cta */
.cta-acts { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* about */
.abl { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.avs { display: grid; gap: 18px; margin-top: 24px; }
.av { display: flex; gap: 16px; align-items: flex-start; }
.av h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.av p { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: none; }
.fc { background: linear-gradient(135deg,var(--blue-light) 0%,var(--white) 60%); border: 1px solid rgba(74,144,217,.25); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.fa { width: 68px; height: 68px; border-radius: 50%; background: linear-gradient(135deg,var(--orange),var(--blue)); display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 800; color: #fff; margin-bottom: 14px; font-family: var(--font-display); box-shadow: 0 4px 16px rgba(244,121,32,.3); }
.fc h3 { font-size: 20px; margin-bottom: 4px; font-weight: 800; }
.fc .role { color: var(--muted); font-size: 14px; margin-bottom: 14px; max-width: none; }
.fc p { color: var(--muted); font-size: 15px; line-height: 1.65; max-width: none; }

/* services */
.svb { padding: 68px 0; border-bottom: 1px solid var(--border); }
.svb:last-child { border-bottom: none; }
.svl { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: start; }
.svl.rev { direction: rtl; }
.svl.rev > * { direction: ltr; }
.stag { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px; }
.svt { font-size: clamp(24px,3vw,38px); font-weight: 800; margin-bottom: 12px; line-height: 1.15; }
.svd { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 22px; max-width: none; }
.svprice { display: inline-flex; align-items: center; gap: 6px; font-size: 14px; color: var(--muted); padding: 8px 16px; border-radius: 999px; background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 20px; max-width: none; }
.svprice strong { color: var(--text); font-weight: 700; }
.svf { list-style: none; display: grid; gap: 10px; margin-bottom: 26px; }
.svf li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; color: var(--text-2); line-height: 1.6; max-width: none; }
.svf li::before { content: ''; flex-shrink: 0; margin-top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--orange); }
.svvis { background: linear-gradient(135deg,var(--surface-2) 0%,var(--white) 100%); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.vl { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 16px; max-width: none; }
.outs { display: grid; gap: 10px; }
.out { display: flex; align-items: flex-start; gap: 10px; padding: 10px 14px; border-radius: 10px; background: var(--good-bg); border: 1px solid rgba(22,163,74,.15); font-size: 13px; color: var(--text-2); line-height: 1.55; max-width: none; }
.out::before { content: '✓'; font-weight: 800; color: var(--good); flex-shrink: 0; margin-top: 1px; }
.steps { display: grid; gap: 14px; }
.snum { flex-shrink: 0; width: 28px; height: 28px; border-radius: 999px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.25); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: var(--orange-dark); }
.sb h4 { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.sb p { font-size: 13px; color: var(--muted); line-height: 1.55; max-width: none; }

/* contact */
.conl { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
.conl > div:first-child h2 { font-size: clamp(22px,3vw,36px); font-weight: 800; margin-bottom: 12px; }
.conl > div:first-child > p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 22px; max-width: 52ch; }
.cd { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.cdb p { font-size: 12px; color: var(--faint); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 3px; font-weight: 600; max-width: none; }
.cdb strong { font-size: 15px; color: var(--text); font-weight: 600; }
.cform { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.cform h3 { font-size: 22px; margin-bottom: 22px; font-weight: 800; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fsub { width: 100%; padding: 14px; background: var(--orange); color: #fff; border-radius: 999px; font-weight: 700; font-size: 16px; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(244,121,32,.3); transition: background var(--tr),transform var(--tr); }
.fsub:hover { background: var(--orange-dark); transform: translateY(-2px); }

/* case studies */
.cg { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; position: relative; overflow: hidden; box-shadow: var(--shadow-sm); transition: border-color var(--tr),box-shadow var(--tr),transform var(--tr); display: flex; flex-direction: column; }
.cc:hover { border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.cc::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg,var(--orange),var(--blue)); }
.cind { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: var(--blue-light); border: 1px solid rgba(74,144,217,.2); color: var(--blue-dark); }
.cc h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; line-height: 1.25; }
.cc p { color: var(--muted); font-size: 14px; line-height: 1.65; margin-bottom: 0; flex: 1; max-width: none; }
.cc .chips { margin-top: 12px; }
.cr { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.res { padding: 14px; border-radius: 10px; background: var(--good-bg); border: 1px solid rgba(22,163,74,.15); text-align: center; }
.res strong { display: block; font-size: 22px; color: var(--good); font-weight: 800; line-height: 1.2; }
.res span { font-size: 12px; color: var(--muted); max-width: none; line-height: 1.45; display: block; margin-top: 4px; }

/* defence */
.dhero { background: linear-gradient(135deg,#0b1426 0%,#0f2040 60%,#1a2d50 100%); padding: 60px 0 48px; border-bottom: 3px solid var(--orange); }
.dhero h1 { color: #fff; font-size: clamp(28px,4.5vw,50px); font-weight: 800; margin-bottom: 14px; line-height: 1.12; }
.dhero p { color: rgba(255,255,255,.65); font-size: 17px; max-width: 58ch; line-height: 1.7; }
.dhero .bc a, .dhero .bc span { color: rgba(255,255,255,.35); }
.dbadge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: 999px; background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.35); color: #fca75a; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 18px; }
.dc { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.dc::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: linear-gradient(180deg,var(--orange),var(--blue)); }
.dc h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.dc p { color: var(--muted); font-size: 15px; line-height: 1.7; max-width: none; }
.clas { display: inline-flex; align-items: center; gap: 7px; padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; background: rgba(244,121,32,.08); border: 1px solid rgba(244,121,32,.2); color: var(--orange-dark); margin-bottom: 12px; }
.dbox { background: linear-gradient(135deg,#0b1426,#1a2d50); border-radius: var(--radius); padding: 28px; border: 1px solid rgba(255,255,255,.08); }
.dbox .panel-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 18px; max-width: none; }
.dr { padding: 12px 16px; border-radius: 10px; margin-bottom: 10px; }
.dr:last-child { margin-bottom: 0; }
.dr.o { background: rgba(244,121,32,.15); border: 1px solid rgba(244,121,32,.3); }
.dr.b { background: rgba(74,144,217,.12); border: 1px solid rgba(74,144,217,.25); }
.dr.d { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.dr p { max-width: none; line-height: 1.5; }
.dr.o p:first-child { font-size: 14px; font-weight: 700; color: #fca75a; margin-bottom: 2px; }
.dr.b p:first-child { font-size: 14px; font-weight: 700; color: #90c4f5; margin-bottom: 2px; }
.dr.d p:first-child { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.75); margin-bottom: 2px; }
.dr p:last-child { font-size: 12px; color: rgba(255,255,255,.5); }
.secure-note { margin-top: 16px; padding: 12px 16px; background: rgba(22,163,74,.1); border: 1px solid rgba(22,163,74,.25); border-radius: 10px; }
.secure-note p { font-size: 13px; color: #86efac; max-width: none; line-height: 1.55; }

/* footer extras */
.fn-small { font-size: 13px; color: rgba(255,255,255,.25); margin-top: 8px; max-width: none; }
.fg-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 44px; }
.fb p { color: rgba(255,255,255,.4); font-size: 14px; line-height: 1.7; margin-top: 14px; max-width: 28ch; }
.fl img { height: 54px; width: auto; filter: brightness(0) invert(1); opacity: .65; }
.fcol h4 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.35); margin-bottom: 14px; }
.fcol ul { list-style: none; display: grid; gap: 9px; }
.fcol ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color var(--tr); }
.fcol ul li a:hover { color: #fff; }
.fbot { border-top: 1px solid rgba(255,255,255,.07); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.fbot p { font-size: 13px; color: rgba(255,255,255,.25); max-width: none; }
.socl { display: flex; gap: 10px; }
.socl a { width: 36px; height: 36px; border-radius: 10px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); font-size: 13px; font-weight: 700; transition: background var(--tr),color var(--tr),border-color var(--tr); text-decoration: none; }
.socl a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

.footer-loc { color: rgba(255,255,255,.5); font-size: 14px; }
.cdb a { color: var(--text); font-weight: 600; }
.cdb a:hover { color: var(--text); }
.form-success {
  display: none;
  margin-top: 0;
  padding: 28px 24px;
  background: var(--good-bg);
  border: 1px solid rgba(22,163,74,.2);
  border-radius: 12px;
  text-align: center;
}
.form-success p:first-child {
  font-size: 20px;
  font-weight: 800;
  color: var(--good);
  margin-bottom: 10px;
  max-width: none;
}
.form-success p:last-child { font-size: 14px; color: var(--muted); max-width: none; line-height: 1.55; }
.form-error { display: none; margin-top: 16px; padding: 14px 16px; background: #fef2f2; border: 1px solid rgba(220,38,38,.2); border-radius: 12px; }
.form-error p { color: #dc2626; font-size: 14px; max-width: none; margin: 0; line-height: 1.55; }
.form-error a { color: #dc2626; font-weight: 600; text-decoration: underline; }
.form-error code { font-size: 13px; background: rgba(0,0,0,.06); padding: 2px 6px; border-radius: 4px; }
#contact-form.is-sending { opacity: .85; pointer-events: none; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.fsub:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.prose { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: none; }
.prose.mb-sm { margin-bottom: 16px; }
.prose.mb-md { margin-bottom: 22px; }
.prose.mb-lg { margin-bottom: 28px; }
.callout-box { margin-top: 32px; padding: 22px 24px; background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius); }
.callout-box.mt-16 { margin-top: 16px; }
.fc + .callout-box { margin-top: 22px; }
.callout-box h4, .callout-box > p:first-child { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 10px; max-width: none; }
.info-panel { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.panel-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 18px; max-width: none; }
.ont-layer { padding: 14px 18px; background: var(--orange-light); border: 1px solid rgba(244,121,32,.2); border-radius: 10px; margin-bottom: 12px; }
.ont-layer .ont-title { font-size: 14px; font-weight: 700; color: var(--orange-dark); margin-bottom: 3px; }
.ont-layer p { font-size: 13px; color: var(--muted); max-width: none; line-height: 1.5; }
.ont-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ont-cell { padding: 12px; background: var(--blue-light); border: 1px solid rgba(74,144,217,.2); border-radius: 10px; text-align: center; }
.ont-cell p { font-size: 13px; font-weight: 700; color: var(--blue-dark); max-width: none; }
.cap-cell { text-align: center; padding: 20px; }
.cap-cell h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cap-cell p { font-size: 14px; color: var(--muted); max-width: none; line-height: 1.6; }
.section-compact { padding: 44px 0; }
.section-tight { padding: 40px 0; }
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.svf.mt-16 { margin-top: 16px; }
.mb-20 { margin-bottom: 20px; }
.card-cta { margin-top: 16px; }
.cloud-badges { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cloud-badge { padding: 10px 22px; background: var(--white); border: 1px solid var(--border); border-radius: 999px; font-size: 14px; font-weight: 700; color: var(--text-2); box-shadow: var(--shadow-sm); }
.cloud-strip-label { text-align: center; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin-bottom: 20px; max-width: none; }
.submit-steps { list-style: none; display: grid; gap: 8px; }
.submit-steps li { display: flex; gap: 10px; font-size: 14px; color: var(--muted); line-height: 1.6; max-width: none; align-items: flex-start; }
.submit-steps li span { color: var(--orange); font-weight: 700; flex-shrink: 0; }
.arch-stack { display: grid; gap: 10px; margin-top: 18px; }
.arch-layer { padding: 12px 16px; background: var(--surface-2); border-radius: 10px; border: 1px solid var(--border); }
.arch-layer p:first-child { font-size: 13px; font-weight: 700; margin-bottom: 2px; max-width: none; }
.arch-layer p:last-child { font-size: 12px; color: var(--muted); max-width: none; line-height: 1.5; }
.arch-layer.highlight { background: var(--orange-light); border-color: rgba(244,121,32,.2); }
.arch-layer.highlight p:first-child { color: var(--orange-dark); }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-pill { padding: 16px; background: var(--white); border: 1px solid var(--border); border-radius: 12px; text-align: center; box-shadow: var(--shadow-sm); }
.stat-pill p:first-child { font-size: 20px; font-weight: 800; color: var(--orange); font-family: var(--font-display); max-width: none; line-height: 1.2; }
.stat-pill p:last-child { font-size: 12px; color: var(--muted); max-width: none; line-height: 1.45; }
.card p { max-width: none; line-height: 1.65; }

/* responsive aliases */
@media(max-width:1024px) {
  .g2, .g3, .cg, .ig, .fg-grid { grid-template-columns: 1fr 1fr; }
  .stat, .stat-item { border-right: none; border-bottom: 1px solid var(--border); padding: 16px 0; }
  .stat:last-child, .stat-item:last-child { border-bottom: none; }
  .pt, .process-track { grid-template-columns: 1fr 1fr; gap: 24px; }
  .pt::before, .process-track::before { display: none; }
  .dtwo, .abl, .conl, .svl, .svl.rev { grid-template-columns: 1fr; direction: ltr; }
}
@media(max-width:768px) {
  .g2, .g3, .cg, .ig, .fg-grid, .footer-grid { grid-template-columns: 1fr; }
  .pt, .process-track { grid-template-columns: 1fr; }
  .ont-grid { grid-template-columns: 1fr; }
}