:root {
  --bg: #0f172a;
  --bg-2: #111827;
  --panel: #ffffff;
  --panel-soft: #f8fafc;
  --ink: #111827;
  --muted: #5b6472;
  --line: #e5e7eb;
  --brand: #f97316;
  --brand-2: #fb923c;
  --steel: #334155;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(15, 23, 42, .14);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--panel);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link { position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus { left: 20px; top: 20px; width:auto; height:auto; padding:10px 14px; background:#fff; z-index:1000; border-radius:8px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 23, 42, .92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.navbar { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--white); font-weight: 800; letter-spacing: .02em; }
.brand-mark { width: 42px; height: 42px; display: inline-grid; place-items:center; border-radius: 12px; background: linear-gradient(135deg, var(--brand), #ef4444); color: #fff; font-weight: 900; }
.brand small { display:block; font-weight: 600; color: #cbd5e1; letter-spacing:0; font-size: 12px; margin-top: -3px; }
.nav-toggle { display: none; background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.2); padding: 9px 12px; border-radius: 10px; cursor: pointer; }
.nav-menu { display: flex; align-items:center; gap: 18px; color: #e5e7eb; font-size: 14px; }
.nav-menu a { opacity: .92; }
.nav-menu a:hover, .nav-menu a[aria-current="page"] { color: #fff; }
.nav-cta { background: var(--brand); color: #fff !important; padding: 10px 15px; border-radius: 999px; font-weight: 700; }
.hero { position: relative; color: var(--white); background: var(--bg); overflow: hidden; }
.hero:before { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(15,23,42,.92) 0%, rgba(15,23,42,.78) 48%, rgba(15,23,42,.24) 100%); z-index:1; }
.hero-image { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; opacity: .75; }
.hero-inner { position:relative; z-index:2; min-height: 620px; display:grid; align-items:center; padding: 86px 0; }
.hero-copy { max-width: 750px; }
.eyebrow { display:inline-flex; align-items:center; gap:8px; color:#fed7aa; background: rgba(249,115,22,.14); border:1px solid rgba(249,115,22,.35); padding: 7px 11px; border-radius:999px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing:.08em; }
h1 { font-size: clamp(42px, 6vw, 76px); line-height: 1.02; margin: 20px 0 18px; letter-spacing: -.045em; }
.hero p { font-size: clamp(18px, 2vw, 22px); color: #e2e8f0; margin: 0 0 30px; max-width: 680px; }
.hero-actions { display:flex; flex-wrap: wrap; gap:14px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap:8px; padding: 13px 19px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color:#fff; background: var(--brand); box-shadow: 0 12px 28px rgba(249,115,22,.32); }
.btn-secondary { color:#fff; border-color: rgba(255,255,255,.32); background: rgba(255,255,255,.08); }
.hero-metrics { position:relative; z-index:2; margin-top:-84px; padding-bottom: 36px; }
.metric-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.metric { background: rgba(255,255,255,.94); color: var(--ink); border-radius: 18px; padding: 22px; box-shadow: var(--shadow); }
.metric strong { display:block; font-size: 28px; line-height:1; color: var(--bg); margin-bottom:8px; }
.metric span { color: var(--muted); font-size:14px; }
.section { padding: 88px 0; }
.section-soft { background: var(--panel-soft); }
.section-dark { background: var(--bg); color: var(--white); }
.section-head { display:flex; justify-content:space-between; align-items:end; gap:30px; margin-bottom: 34px; }
.section-kicker { color: var(--brand); font-weight: 800; text-transform: uppercase; letter-spacing:.1em; font-size: 13px; margin:0 0 10px; }
h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); line-height: 1.08; letter-spacing:-.035em; }
h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
p { margin-top: 0; color: var(--muted); }
.section-dark p, .section-dark .muted { color:#cbd5e1; }
.lead { font-size: 18px; max-width: 780px; }
.grid { display:grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: 0 10px 30px rgba(15,23,42,.06); }
.card img { border-radius: 16px; margin: -8px -8px 20px; width: calc(100% + 16px); height: 240px; object-fit: cover; }
.card h3 { color: var(--ink); }
.card p:last-child { margin-bottom:0; }
.icon { width: 44px; height:44px; display:grid; place-items:center; border-radius: 14px; background:#fff7ed; color:var(--brand); font-weight:900; margin-bottom: 16px; }
.service-card { min-height: 100%; }
.service-card a { color: var(--brand); font-weight:800; display:inline-flex; margin-top:8px; }
.feature { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items:center; }
.feature-image { border-radius: 28px; overflow:hidden; box-shadow: var(--shadow); }
.feature-image img { width:100%; height: 480px; object-fit: cover; }
.check-list { list-style:none; padding:0; margin: 22px 0 0; display:grid; gap: 12px; }
.check-list li { display:flex; gap:12px; align-items:flex-start; color: var(--steel); }
.check-list li:before { content:"✓"; flex: 0 0 24px; height:24px; display:grid; place-items:center; border-radius:50%; background:#ffedd5; color:var(--brand); font-weight:900; }
.section-dark .check-list li { color:#e2e8f0; }
.stat-strip { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
.stat-strip div { padding: 22px; border-radius: 18px; background: rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.1); }
.stat-strip strong { display:block; color:#fff; font-size: 28px; }
.page-hero { background: radial-gradient(circle at top right, rgba(249,115,22,.26), transparent 34%), linear-gradient(135deg, #0f172a, #111827); color:#fff; padding: 86px 0 70px; }
.page-hero .container { display:grid; grid-template-columns: 1.15fr .85fr; gap: 44px; align-items:center; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); }
.page-hero p { color:#dbe4f0; font-size: 18px; }
.page-hero img { border-radius: 28px; height: 380px; width: 100%; object-fit: cover; box-shadow: var(--shadow); }
.breadcrumb { color:#fed7aa; font-weight:800; letter-spacing:.08em; text-transform: uppercase; font-size:13px; }
.band { background:#fff7ed; border-block:1px solid #fed7aa; padding: 22px 0; color:#7c2d12; font-weight:700; }
.process { counter-reset: step; }
.process .card { position:relative; padding-top: 58px; }
.process .card:before { counter-increment: step; content: counter(step, decimal-leading-zero); position:absolute; top:22px; left:26px; font-size: 20px; font-weight:900; color: var(--brand); }
.gallery { display:grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 18px; }
.gallery img { width:100%; height: 320px; object-fit: cover; border-radius: 22px; box-shadow: 0 12px 34px rgba(15,23,42,.12); }
.gallery img.tall { height: 660px; }
.gallery-stack { display:grid; gap:18px; }
.role { display:flex; flex-direction: column; gap: 8px; }
.role strong { font-size: 18px; }
.role span { color:var(--muted); }
.contact-panel { background: var(--bg); color:#fff; border-radius: 30px; padding: 34px; box-shadow: var(--shadow); }
.contact-panel p { color:#cbd5e1; }
.contact-list { list-style:none; padding:0; margin: 18px 0 0; display:grid; gap: 14px; }
.contact-list li { display:flex; gap:12px; align-items:flex-start; }
.contact-list strong { display:block; color:#fff; }
.contact-list span, .contact-list a { color:#dbe4f0; }
.form { display:grid; gap: 14px; }
.form input, .form textarea, .form select { width:100%; border:1px solid var(--line); border-radius: 14px; padding: 13px 14px; font: inherit; color:var(--ink); background:#fff; }
.form textarea { min-height: 145px; resize: vertical; }
.footer { background:#080f1f; color:#fff; padding: 58px 0 28px; }
.footer-grid { display:grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 34px; }
.footer h3, .footer h4 { color:#fff; margin:0 0 12px; }
.footer p, .footer a, .footer li { color:#cbd5e1; }
.footer ul { list-style:none; padding:0; margin:0; display:grid; gap:8px; }
.footer-bottom { border-top:1px solid rgba(255,255,255,.1); margin-top: 34px; padding-top:20px; display:flex; justify-content:space-between; gap:20px; flex-wrap:wrap; color:#94a3b8; font-size: 14px; }
.badges { display:flex; flex-wrap:wrap; gap:10px; margin-top: 18px; }
.badge { padding: 8px 12px; border-radius:999px; background:#fff7ed; color:#9a3412; font-weight:800; font-size:13px; }
.section-dark .badge { background: rgba(249,115,22,.14); color:#fed7aa; border:1px solid rgba(249,115,22,.28); }
.table-wrap { overflow-x:auto; border: 1px solid var(--line); border-radius: 20px; background:#fff; }
table { width:100%; border-collapse: collapse; min-width: 760px; }
th, td { padding: 16px; border-bottom:1px solid var(--line); text-align:left; vertical-align:top; }
th { background:#f8fafc; color:#0f172a; }
tr:last-child td { border-bottom:0; }
@media (max-width: 1020px) {
  .nav-toggle { display:inline-flex; }
  .nav-menu { position:absolute; top:76px; left:0; right:0; display:none; flex-direction:column; align-items:flex-start; gap:0; padding: 12px 20px 22px; background: rgba(15,23,42,.98); border-bottom:1px solid rgba(255,255,255,.1); }
  .nav-menu.open { display:flex; }
  .nav-menu a { display:block; width:100%; padding: 12px 0; }
  .metric-grid, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .feature, .page-hero .container, .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img.tall { height: 320px; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, var(--max)); }
  .hero-inner { min-height: 560px; padding: 60px 0; }
  .hero-metrics { margin-top: 0; padding-top: 14px; background: var(--panel-soft); }
  .metric-grid, .grid-2, .grid-3, .grid-4, .stat-strip { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .section-head { display:block; }
  .page-hero { padding: 58px 0 48px; }
  .page-hero img, .feature-image img { height: 280px; }
  .brand small { display:none; }
}
