:root {
  --orange: #ff6900;
  --orange-2: #ff8b2d;
  --ink: #17191d;
  --ink-2: #292d33;
  --text: #3b3f45;
  --muted: #6f747c;
  --line: #e6e8eb;
  --surface: #f6f7f8;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(23, 25, 29, .10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed; left: 1rem; top: -5rem; z-index: 999;
  background: var(--ink); color: #fff; padding: .75rem 1rem; border-radius: 10px;
}
.skip-link:focus { top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--container)); margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  margin: 0 0 .75rem; color: var(--orange); font-weight: 800;
  text-transform: uppercase; letter-spacing: .16em; font-size: .78rem;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
.section { padding: 96px 0; }
.section--soft { background: var(--surface); }
.section--dark { background: var(--ink); color: #fff; }
.section-head { max-width: 760px; margin-bottom: 44px; }
.section-head h2, .page-hero h1 {
  margin: 0 0 1rem; color: var(--ink); line-height: 1.08;
  font-size: clamp(2rem, 4.5vw, 3.7rem); letter-spacing: -.04em;
}
.section--dark .section-head h2 { color: #fff; }
.section-head p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section--dark .section-head p { color: #c9cbd0; }
.accent { color: var(--orange); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.94); backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230,232,235,.85);
}
.navbar { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; text-decoration: none; width: 210px; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a { text-decoration: none; color: var(--ink-2); font-weight: 700; font-size: .94rem; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--orange); }
.nav-cta { padding: .76rem 1.05rem; border-radius: 999px; background: var(--orange); color: #fff !important; }
.menu-toggle { display: none; border: 0; background: transparent; padding: .5rem; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: .2s; }

.hero {
  position: relative; overflow: hidden; min-height: 690px;
  display: grid; align-items: center; background: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 15% 30%, rgba(255,105,0,.12), transparent 32%),
              linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 42%, rgba(255,255,255,.30) 72%, rgba(255,255,255,.12) 100%);
  z-index: 1;
}
.hero-media { position: absolute; inset: 0; display: flex; justify-content: flex-end; align-items: stretch; }
.hero-media img { width: 76%; height: 100%; object-fit: cover; object-position: center; opacity: .68; }
.hero-content { position: relative; z-index: 2; max-width: 720px; padding: 90px 0 100px; }
.hero h1 { margin: 0 0 1.25rem; color: var(--ink); font-size: clamp(2.6rem, 6vw, 5.45rem); line-height: .98; letter-spacing: -.06em; }
.hero p { max-width: 670px; margin: 0 0 2rem; color: #4f545c; font-size: clamp(1.05rem, 1.7vw, 1.28rem); }
.actions { display: flex; flex-wrap: wrap; gap: .85rem; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  min-height: 50px; padding: .82rem 1.2rem; border-radius: 999px;
  border: 1px solid transparent; text-decoration: none; font-weight: 800;
}
.button--primary { background: var(--orange); color: #fff; box-shadow: 0 12px 28px rgba(255,105,0,.24); }
.button--primary:hover { background: #e85f00; transform: translateY(-1px); }
.button--ghost { border-color: #cfd2d6; color: var(--ink); background: rgba(255,255,255,.78); }
.button--ghost:hover { border-color: var(--orange); color: var(--orange); }
.hero-stats { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 660px; gap: 1rem; }
.stat { padding-left: 1rem; border-left: 3px solid var(--orange); }
.stat strong { display: block; color: var(--ink); font-size: 1.5rem; line-height: 1.1; }
.stat span { color: var(--muted); font-size: .88rem; }

.trust-strip { background: var(--ink); color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); }
.trust-item { padding: 1.35rem 1rem; text-align: center; border-right: 1px solid #343840; font-weight: 750; color: #d9dbe0; }
.trust-item:last-child { border-right: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.55rem; box-shadow: 0 8px 26px rgba(23,25,29,.035);
}
.card:hover { border-color: rgba(255,105,0,.45); box-shadow: var(--shadow); transform: translateY(-4px); }
.card, .button { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease; }
.icon-box {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 14px;
  color: var(--orange); background: rgba(255,105,0,.1); margin-bottom: 1.15rem;
}
.icon-box svg { width: 25px; height: 25px; }
.card h3 { margin: 0 0 .55rem; color: var(--ink); font-size: 1.17rem; }
.card p { margin: 0; color: var(--muted); }
.card ul { margin: .85rem 0 0; padding-left: 1.15rem; color: var(--muted); }
.card li + li { margin-top: .35rem; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 4rem; }
.visual-panel { border-radius: 30px; overflow: hidden; box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line); }
.visual-panel img { width: 100%; aspect-ratio: 1.35/1; object-fit: cover; object-position: center; }
.check-list { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .85rem; }
.check-list li { display: flex; align-items: flex-start; gap: .75rem; }
.check-list li::before { content: "✓"; flex: 0 0 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: var(--orange); color: white; font-weight: 900; }

.timeline { position: relative; display: grid; gap: 1rem; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 82px; width: 2px; background: #353942; }
.timeline-item { position: relative; display: grid; grid-template-columns: 64px 1fr; gap: 2rem; padding: 1.2rem 0; }
.timeline-year { color: var(--orange); font-weight: 900; font-size: 1.05rem; text-align: right; }
.timeline-content { position: relative; padding: 1.25rem 1.4rem; border: 1px solid #363a42; border-radius: 18px; background: #22252a; }
.timeline-content::before { content: ""; position: absolute; left: -32px; top: 1.55rem; width: 12px; height: 12px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px #17191d; }
.timeline-content h3 { margin: 0; color: #fff; font-size: 1.02rem; }
.timeline-content p { margin: .35rem 0 0; color: #bfc2c8; }

.project-note { margin-top: 2rem; padding: 1rem 1.2rem; border-left: 3px solid var(--orange); background: rgba(255,255,255,.06); color: #c9cbd0; border-radius: 0 12px 12px 0; }

.cta-box {
  position: relative; overflow: hidden; padding: clamp(2rem, 5vw, 4.3rem);
  border-radius: 30px; background: linear-gradient(120deg, var(--ink) 0%, #2a2e35 70%); color: #fff;
}
.cta-box::after { content: ""; position: absolute; width: 350px; height: 350px; border: 50px solid rgba(255,105,0,.12); border-radius: 50%; right: -100px; top: -140px; }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { color: #fff; margin: 0 0 .75rem; font-size: clamp(2rem, 4vw, 3.3rem); line-height: 1.05; }
.cta-box p { max-width: 720px; color: #d1d3d8; margin: 0 0 1.5rem; }

.page-hero { padding: 92px 0 70px; background: linear-gradient(135deg, #fff 0%, #f5f6f7 100%); border-bottom: 1px solid var(--line); }
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.12rem; }
.breadcrumb { margin-bottom: 1rem; color: var(--muted); font-size: .9rem; }
.breadcrumb a { color: var(--orange); text-decoration: none; font-weight: 700; }

.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 2rem; align-items: start; }
.contact-card { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.contact-item { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--line); }
.contact-item:last-child { border-bottom: 0; }
.contact-item h3 { margin: 0 0 .25rem; color: var(--ink); font-size: 1rem; }
.contact-item p, .contact-item a { margin: 0; color: var(--muted); text-decoration: none; }
.contact-item a:hover { color: var(--orange); }
.form { display: grid; gap: 1rem; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.field label { display: block; margin-bottom: .38rem; color: var(--ink); font-weight: 750; }
.field input, .field textarea, .field select {
  width: 100%; border: 1px solid #d5d8dd; border-radius: 13px; padding: .85rem .95rem;
  background: #fff; color: var(--ink); outline: 0;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(255,105,0,.10); }
.field textarea { min-height: 150px; resize: vertical; }
.form-note { margin: 0; color: var(--muted); font-size: .86rem; }
.status-message { min-height: 24px; font-weight: 700; color: var(--orange); }

.site-footer { background: #111317; color: #c7c9cf; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr .8fr 1fr; gap: 3rem; }
.footer-logo { width: 240px; filter: brightness(1.3); margin-bottom: 1rem; }
.footer-grid h3 { color: #fff; margin: 0 0 .85rem; font-size: 1rem; }
.footer-grid p { margin: 0; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; color: #c7c9cf; }
.footer-links a:hover { color: var(--orange); }
.footer-bottom { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid #2c3037; display: flex; justify-content: space-between; gap: 1rem; font-size: .86rem; color: #969aa2; }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 78px 0 auto 0; display: none; flex-direction: column; align-items: stretch;
    background: #fff; padding: 1rem; border-bottom: 1px solid var(--line); box-shadow: 0 16px 28px rgba(23,25,29,.08);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: .75rem; }
  .nav-cta { text-align: center; }
  .hero { min-height: 650px; }
  .hero-media img { width: 100%; opacity: .30; }
  .hero::before { background: linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.84)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(even) { border-right: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1/-1; }
}

@media (max-width: 680px) {
  .section { padding: 72px 0; }
  .brand { width: 175px; }
  .navbar { min-height: 70px; }
  .nav-links { inset: 70px 0 auto 0; }
  .hero { min-height: auto; }
  .hero-content { padding: 72px 0 76px; }
  .hero h1 { font-size: clamp(2.6rem, 13vw, 4.1rem); }
  .hero-stats { grid-template-columns: 1fr; }
  .stat { padding: .3rem 0 .3rem 1rem; }
  .grid--3, .grid--2, .form-row { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #343840; }
  .timeline::before { left: 7px; }
  .timeline-item { grid-template-columns: 1fr; gap: .5rem; padding-left: 2rem; }
  .timeline-year { text-align: left; }
  .timeline-content::before { left: -31px; top: 1.45rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
