:root {
  --orange: #f27121;
  --orange-dark: #d64c21;
  --orange-soft: #fff2e8;
  --cream: #fffaf6;
  --ink: #1d2430;
  --muted: #667085;
  --line: #eadfd6;
  --white: #ffffff;
  --shadow: 0 20px 50px rgba(38, 29, 24, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 9999;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  border-radius: 8px;
  transform: translateY(-200%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 96px 0; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 5.5vw, 5.3rem); max-width: 780px; }
h2 { font-size: clamp(2.15rem, 4vw, 3.7rem); }
h3 { font-size: 1.22rem; }
h1 span, h2 span { color: var(--orange-dark); }
p { color: var(--muted); }
.lead { font-size: 1.13rem; max-width: 690px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  transition: .2s ease;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: white; box-shadow: 0 10px 24px rgba(242,113,33,.2); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-secondary { border-color: #e6aa83; color: var(--orange-dark); background: white; }
.btn-secondary:hover { background: var(--orange-soft); }
.btn-full { width: 100%; }
.text-link { color: var(--orange-dark); font-weight: 800; display: inline-flex; gap: 8px; align-items: center; }
.text-link:hover span { transform: translateX(3px); }
.text-link span { transition: transform .2s ease; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(234,223,214,.75);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 28px; }
.brand img { width: 150px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.primary-nav a { font-size: .94rem; font-weight: 650; color: #3d4654; position: relative; }
.primary-nav a:hover, .primary-nav a.active { color: var(--orange-dark); }
.primary-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--orange); }
.nav-cta { margin-left: 4px; }
.menu-toggle { display: none; margin-left: auto; border: 0; background: transparent; padding: 10px; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  padding-top: 74px;
  background:
    radial-gradient(circle at 7% 15%, rgba(242,113,33,.08), transparent 26%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 68px; }
.hero-copy .lead { margin: 26px 0 0; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }
.hero-proof { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: #4f5968; font-size: .9rem; }
.hero-proof span { padding-left: 18px; position: relative; }
.hero-proof span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); position: absolute; left: 0; top: .55em; }
.hero-media { position: relative; }
.hero-media img { width: 100%; aspect-ratio: 1.08 / 1; object-fit: cover; border-radius: 40px 40px 16px 40px; box-shadow: var(--shadow); }
.hero-badge { position: absolute; left: -28px; bottom: 30px; background: white; padding: 16px 20px; border-radius: 16px; box-shadow: var(--shadow); font-weight: 800; max-width: 230px; }

.about { background: white; }
.split-grid { display: grid; grid-template-columns: .94fr 1.06fr; gap: 76px; align-items: center; }
.media-card img { width: 100%; aspect-ratio: 1.05 / 1; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.content-block > p:not(.eyebrow) { font-size: 1.05rem; max-width: 650px; margin: 22px 0 0; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 32px 0; }
.pillar { border: 1px solid var(--line); border-radius: var(--radius-md); padding: 20px; background: white; }
.pillar .icon { width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center; background: var(--orange-soft); color: var(--orange-dark); font-size: .75rem; font-weight: 900; margin-bottom: 18px; }
.pillar p { margin: 8px 0 0; font-size: .91rem; }

.offer { background: var(--cream); }
.section-heading { max-width: 780px; margin-bottom: 36px; }
.section-heading.centered { text-align: center; margin-inline: auto; }
.section-heading p:last-child { max-width: 680px; margin: 16px auto 0; }
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.offer-card { background: white; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; box-shadow: 0 10px 34px rgba(47,37,31,.05); }
.offer-card img { width: 100%; height: 220px; object-fit: cover; }
.offer-card-body { padding: 24px; }
.offer-card-body p { margin: 12px 0 18px; }
.card-kicker { color: var(--orange-dark) !important; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; font-weight: 850; }

.reasons { background: white; }
.reason-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reason { display: flex; gap: 16px; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; }
.reason b { flex: 0 0 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--orange-dark); background: var(--orange-soft); font-size: .75rem; }
.reason p { margin: 8px 0 0; font-size: .93rem; }

.contact { background: linear-gradient(135deg, #fff7f0, #fff); }
.contact-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 600px; font-size: 1.04rem; }
.contact-list { display: grid; gap: 14px; margin-top: 30px; }
.contact-list a, .contact-list div { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line); }
.contact-list small { color: var(--muted); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.contact-list strong { font-size: 1rem; }
.contact-form { background: white; padding: 30px; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 7px; color: #344054; font-size: .88rem; font-weight: 700; margin-bottom: 14px; }
input, textarea, select { width: 100%; border: 1px solid #d8dce2; border-radius: 12px; padding: 12px 13px; color: var(--ink); background: white; outline: none; }
input:focus, textarea:focus, select:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(242,113,33,.1); }
textarea { resize: vertical; }
.form-note { margin: 12px 0 0; font-size: .75rem; }

.site-footer { background: #171b22; color: white; padding: 44px 0 20px; }
.site-footer p, .site-footer a, .site-footer span { color: #c6cbd3; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 44px; align-items: start; }
.footer-brand img { width: 155px; filter: brightness(1.05); }
.footer-brand p { margin: 14px 0 0; }
.site-footer nav, .footer-contact { display: grid; gap: 10px; }
.site-footer a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 34px; padding-top: 18px; border-top: 1px solid #2c323c; font-size: .8rem; }

@media (max-width: 980px) {
  .section-pad { padding: 72px 0; }
  .hero-grid, .split-grid, .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-media { max-width: 700px; }
  .hero-badge { left: 18px; }
  .offer-grid, .reason-grid { grid-template-columns: 1fr 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .nav-wrap { min-height: 72px; }
  .brand img { width: 132px; }
  .menu-toggle { display: block; }
  .primary-nav {
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 10px 8px; }
  .primary-nav a.active::after { display: none; }
  .hero { padding-top: 50px; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { display: grid; gap: 10px; }
  .offer-grid, .reason-grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; }
  .contact-form { padding: 22px; }
  .hero-badge { position: static; margin-top: 12px; max-width: none; }
}
