
:root {
  --bg: #f3f2ee;
  --bg-soft: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #fbfaf7;
  --surface-muted: #f0ede6;
  --text: #111111;
  --muted: #46505e;
  --line: #e3dfd6;
  --accent: #f26722;
  --accent-dark: #d95515;
  --accent-soft: #fff1e8;
  --dark: #0c0c0c;
  --dark-soft: #171717;
  --shadow: 0 18px 48px rgba(12, 12, 12, 0.08);
  --shadow-lg: 0 22px 60px rgba(12, 12, 12, 0.16);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 92px 0; }
.section-tight { padding: 64px 0; }
.eyebrow, .kicker, .meta {
  font-family: 'Manrope', sans-serif;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 103, 34, 0.12);
  color: var(--accent);
  font-weight: 800;
}
.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: currentColor;
}
.kicker, .meta {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}
h1, h2, h3 {
  margin: 0 0 14px;
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-family: 'Manrope', sans-serif;
  color: var(--text);
}
h1 { font-size: clamp(44px, 7vw, 72px); }
h2 { font-size: clamp(32px, 4.5vw, 52px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
p { margin: 0 0 16px; font-size: 18px; color: var(--muted); }
.lead { font-size: clamp(20px, 2.4vw, 30px); line-height: 1.45; color: var(--muted); max-width: 780px; }
.small { font-size: 14px; }
strong { color: var(--text); }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
}
.brand-badge {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: white;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(242, 103, 34, 0.25);
}
.nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.nav a {
  color: #4b5360;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
}
.nav a.active, .nav a:hover { color: var(--text); }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  transition: .2s ease;
  cursor: pointer;
}
.nav-cta, .btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  color: white;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(242, 103, 34, 0.24);
}
.nav-cta:hover, .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(242, 103, 34, 0.28);
}
.btn-secondary {
  background: white;
  color: var(--text);
  border: 1px solid rgba(17, 17, 17, 0.14);
}
.btn-secondary:hover {
  background: var(--surface-soft);
  border-color: rgba(17, 17, 17, 0.24);
}
.btn-small {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 14px;
}
.hero, .page-hero {
  position: relative;
  overflow: hidden;
}
.hero {
  background: var(--dark);
}
.page-hero {
  background: linear-gradient(90deg, #f7f6f2 0%, #f7f6f2 70%, #fbf2ea 100%);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 26%, rgba(242, 103, 34, 0.28), transparent 24%),
    radial-gradient(circle at 78% 76%, rgba(255, 125, 42, 0.12), transparent 30%),
    linear-gradient(100deg, rgba(12, 12, 12, 0.98) 0%, rgba(12, 12, 12, 0.9) 48%, rgba(12, 12, 12, 0.68) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 92% 20%, rgba(242, 103, 34, 0.12), transparent 22%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(165deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 34px),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.02));
  opacity: .55;
  transform: translateX(40%);
}
.page-hero::after { content: none; }
.hero > .container, .page-hero > .container { position: relative; z-index: 1; }
.hero { padding: 92px 0 120px; }
.page-hero { padding: 64px 0 54px; }
.hero-grid, .grid-2 { display: grid; grid-template-columns: 1.08fr .92fr; gap: 34px; align-items: start; }
.hero h1, .hero h2, .hero h3 { color: white; }
.page-hero h1, .page-hero h2, .page-hero h3 { color: var(--text); }
.hero p { color: #d7d9dd; }
.page-hero p { color: var(--muted); }
.hero .highlight { color: #ffb187; }
.hero-box, .form-card, .card, .panel, .faq-item, .contact-card, .stat, .timeline-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-box { padding: 30px; }
.card, .panel, .faq-item, .contact-card, .form-card, .timeline-item, .stat { padding: 28px; }
.hero-box h3 { color: var(--text); }
.hero-box p, .hero-box span { color: var(--muted); }
.hero-box .table-row strong { color: var(--text); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0; }
.checklist, .bullet-list, .mini-list, .source-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li, .bullet-list li, .mini-list li, .source-list li { position: relative; padding-left: 28px; color: var(--muted); }
.checklist li::before, .bullet-list li::before, .mini-list li::before, .source-list li::before {
  content: '↗';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 900;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hero + .section-tight { margin-top: -72px; position: relative; z-index: 2; }
.stat {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background: #fff;
}
.stats .stat:last-child {
  background: linear-gradient(135deg, var(--accent), #ff7a00);
  color: white;
  border-color: transparent;
}
.stats .stat:last-child strong,
.stats .stat:last-child span { color: white; }
.stats .stat:last-child .btn-secondary {
  background: rgba(255,255,255,0.16);
  color: white;
  border-color: rgba(255,255,255,0.24);
}
.service-card, .article-card, .faq-item, .timeline-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.service-card {
  position: relative;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover, .article-card:hover, .faq-item:hover, .stat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card .num {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(242, 103, 34, 0.1);
  color: var(--accent);
  font-family: 'Manrope', sans-serif;
  font-weight: 900;
}
.media-card::before {
  content: '';
  display: block;
  height: 150px;
  border-radius: 16px;
  margin: -8px -8px 8px;
  background:
    linear-gradient(135deg, rgba(12,12,12,0.82), rgba(12,12,12,0.25)),
    linear-gradient(160deg, #2e3640 0%, #101113 55%, #4f5b69 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.media-card:nth-child(2)::before {
  background:
    linear-gradient(135deg, rgba(12,12,12,0.72), rgba(12,12,12,0.14)),
    linear-gradient(160deg, #524032 0%, #efe3d4 45%, #7a5b35 100%);
}
.media-card:nth-child(3)::before {
  background:
    linear-gradient(135deg, rgba(12,12,12,0.65), rgba(12,12,12,0.14)),
    linear-gradient(160deg, #132f3f 0%, #1b6f88 48%, #88d8ff 100%);
}
.note, .muted-box {
  padding: 20px 22px;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}
.muted-box p:last-child { margin-bottom: 0; }
.split, .faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.table-like { display: grid; gap: 12px; }
.table-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.table-row:last-child { border-bottom: none; }
.tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid rgba(242, 103, 34, 0.18);
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}
.source-list a {
  display: block;
  padding: 14px 16px;
  border-radius: 14px;
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 700;
}
.source-list a:hover { border-color: rgba(242,103,34,0.32); }
.cta-band {
  background: linear-gradient(135deg, #ef5a15 0%, #ff7a00 100%);
  color: white;
  border-radius: 28px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: var(--shadow-lg);
}
.cta-band h2, .cta-band p { color: white; }

.hero-box { background: rgba(255,255,255,0.98); }
.hero-box h3 { color: #111111 !important; }
.hero-box .table-row strong { color: #151515 !important; font-weight: 800; }
.hero-box .table-row span { color: #3f4855 !important; }
.card p, .panel p, .faq-item p, .contact-card p, .stat span, .service-card p, .article-card p, .timeline-item p, .muted-box p, .note p, .table-like p { color: #46505e; }
.kicker, .meta { color: var(--accent-dark); }
.cta-band .btn-primary { background: #111111; color: #ffffff; border-color: #111111; box-shadow: 0 16px 28px rgba(17,17,17,0.22); }
.cta-band .btn-primary:hover { background: #1d1d1d; box-shadow: 0 18px 32px rgba(17,17,17,0.28); }
.cta-band .btn-secondary { background: rgba(255,255,255,0.92); color: #111111; border-color: rgba(255,255,255,0.92); }
.cta-band .btn-secondary:hover { background: #ffffff; }

.footer {
  background: var(--dark);
  color: white;
  padding: 56px 0 24px;
  margin-top: 40px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 24px; }
.footer p, .footer a, .footer li { color: rgba(255,255,255,.78); }
.footer .mini-list li::before { color: rgba(255,255,255,.42); }
.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.56);
  font-size: 14px;
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(242, 103, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(242, 103, 34, 0.08);
}
textarea { min-height: 130px; resize: vertical; }
label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
}
.page-hero .lead { color: #46505e; max-width: 760px; }
.contact-card { margin-bottom: 16px; }
.mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.12);
  padding: 12px 14px;
  border-radius: 12px;
}
.highlight { color: #ffb187; }

@media (max-width: 980px) {
  .hero-grid, .grid-2, .split, .footer-grid, .grid-3, .stats, .faq-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 86px;
    left: 20px;
    right: 20px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .mobile-toggle { display: inline-flex; }
  .header-inner { position: relative; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 24px)); }
  .section { padding: 68px 0; }
  .section-tight { padding: 48px 0; }
  .grid-4, .form-grid { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 96px; }
  .page-hero { padding: 54px 0 46px; }
  .hero + .section-tight { margin-top: -46px; }
  h1 { font-size: 44px; }
  h2 { font-size: 34px; }
  p { font-size: 17px; }
  .lead { font-size: 20px; }
  .table-row { grid-template-columns: 1fr; gap: 6px; }
}


.text-link {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217,85,21,.35);
}
.text-link:hover { text-decoration-color: var(--accent-dark); }

.hero-box .table-row strong,
.hero-box .table-row b {
  color: #111111 !important;
  opacity: 1 !important;
}
.hero-box .table-row span {
  color: #353f4c !important;
  opacity: 1 !important;
}

.hero + .section-tight {
  margin-top: 0;
  padding-top: 34px;
  position: relative;
  z-index: 2;
}

.stats { align-items: stretch; }
.stat {
  min-height: 0;
  margin-top: 0;
}

.service-media {
  height: 176px;
  border-radius: 18px;
  overflow: hidden;
  margin: -8px -8px 8px;
  background: linear-gradient(135deg, #0b1019, #223446);
  border: 1px solid rgba(17,17,17,.08);
}
.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-links .card {
  height: 100%;
}
.related-links h3 { margin-bottom: 10px; }
.related-links p { margin-bottom: 18px; }

.footer .company-meta {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .service-media { height: 150px; }
  .hero + .section-tight { padding-top: 20px; }
}

.form-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff4ec;
  border: 1px solid rgba(242,103,34,.22);
  color: #7b3417;
  font-size: 15px;
  line-height: 1.5;
}
