@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

:root {
  --ink: #0b2630;
  --ink-soft: #34505a;
  --paper: #f8f5ee;
  --white: #ffffff;
  --orange: #ef6a2f;
  --orange-dark: #c84a14;
  --orange-light: #fff0e7;
  --green: #2f6758;
  --green-light: #e8f1ed;
  --line: #dfe4df;
  --shadow: 0 20px 55px rgba(11, 38, 48, .12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: var(--orange-dark); text-underline-offset: 4px; }
a:hover { color: var(--orange); }

h1, h2, h3, h4 {
  margin: 0 0 .7em;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.12;
  letter-spacing: -.035em;
}

h1 { font-size: clamp(2.65rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1.15rem; }
ul, ol { margin: 0 0 1.4rem; padding-left: 1.35rem; }
li + li { margin-top: .5rem; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: .7rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 820px); margin-inline: auto; }
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section-compact { padding: clamp(48px, 6vw, 78px) 0; }
.section-white { background: var(--white); }
.section-dark { color: #dfe9e7; background: var(--ink); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-green { background: var(--green-light); }
.section-orange { background: var(--orange-light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 4px;
}

.section-dark .eyebrow { color: #ff9e72; }
.lead { color: var(--ink-soft); font-size: clamp(1.1rem, 2vw, 1.3rem); line-height: 1.6; }
.section-dark .lead { color: #c9d8d5; }
.muted { color: #60747a; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 238, .94);
  border-bottom: 1px solid rgba(11, 38, 48, .08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--orange);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--ink);
}

.brand-mark::before {
  width: 19px;
  height: 13px;
  content: "";
  border: 3px solid currentColor;
  border-top: 0;
  border-radius: 0 0 4px 4px;
}

.brand-mark::after {
  position: absolute;
  top: 8px;
  width: 23px;
  height: 8px;
  content: "";
  border-top: 3px solid currentColor;
  border-radius: 50%;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list li { margin: 0; }
.nav-list a {
  display: block;
  padding: .65rem .7rem;
  color: var(--ink);
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-list a:hover, .nav-list a[aria-current="page"] { color: var(--orange-dark); background: var(--orange-light); }
.nav-list .nav-cta { margin-left: 7px; padding-inline: 1rem; color: var(--white); background: var(--ink); }
.nav-list .nav-cta:hover, .nav-list .nav-cta[aria-current="page"] { color: var(--white); background: var(--green); }

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle-lines, .menu-toggle-lines::before, .menu-toggle-lines::after {
  width: 21px;
  height: 2px;
  display: block;
  content: "";
  background: currentColor;
  transition: transform .2s ease;
}
.menu-toggle-lines::before { transform: translateY(-7px); }
.menu-toggle-lines::after { transform: translateY(5px); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines { background: transparent; }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before { transform: translateY(0) rotate(45deg); background: var(--ink); }
.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after { transform: translateY(-2px) rotate(-45deg); background: var(--ink); }

.hero {
  position: relative;
  min-height: 730px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media { position: absolute; inset: 0; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(6, 24, 31, .93) 0%, rgba(6, 24, 31, .76) 38%, rgba(6, 24, 31, .1) 75%), linear-gradient(0deg, rgba(6, 24, 31, .55), transparent 50%);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-content { position: relative; z-index: 1; width: min(720px, 100%); padding: clamp(90px, 12vw, 150px) 0 80px; color: var(--white); }
.hero h1 { color: var(--white); }
.hero .lead { max-width: 650px; color: #e1ebe8; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: .8rem 1.15rem;
  color: var(--white);
  background: var(--orange);
  border: 1px solid var(--orange);
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(239, 106, 47, .2);
  transition: transform .2s ease, background .2s ease;
}
.button:hover { color: var(--white); background: var(--orange-dark); transform: translateY(-2px); }
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); box-shadow: none; }
.button-outline:hover { color: var(--white); background: var(--ink); }
.hero .button-outline, .section-dark .button-outline { color: var(--white); border-color: rgba(255,255,255,.7); }
.hero .button-outline:hover, .section-dark .button-outline:hover { color: var(--ink); background: var(--white); }
.arrow { font-size: 1.2em; line-height: 1; }

.hero-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  width: fit-content;
  margin-top: 2.5rem;
  padding: .8rem 1rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 13px;
  backdrop-filter: blur(8px);
}
.hero-note strong { display: block; font-family: "Manrope", Arial, sans-serif; }
.hero-note span { color: #c5d3d0; font-size: .86rem; }
.status-dot { width: 10px; height: 10px; margin-top: 8px; background: #ff9b68; border-radius: 50%; box-shadow: 0 0 0 6px rgba(255,155,104,.15); }

.intro-grid, .split, .footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 7vw, 90px); align-items: start; }
.intro-copy h2 { max-width: 660px; }
.fact-stack { display: grid; gap: 14px; }
.fact {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 21px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 28px rgba(11,38,48,.05);
}
.fact-number { color: var(--orange); font-family: "Manrope", Arial, sans-serif; font-size: 1.55rem; font-weight: 800; }
.fact strong { display: block; margin-bottom: 3px; font-family: "Manrope", Arial, sans-serif; }
.fact p { margin: 0; color: var(--ink-soft); font-size: .94rem; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 3rem; }
.card {
  min-height: 100%;
  padding: clamp(25px, 3vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 35px rgba(11,38,48,.055);
}
.card-featured { color: #e8f0ee; background: var(--green); border-color: var(--green); transform: translateY(-12px); }
.card-featured h3 { color: var(--white); }
.card p:last-child { margin-bottom: 0; }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: .7rem; font-weight: 800; text-decoration: none; }
.card-featured .card-link { color: #ffd0b8; }
.icon-box { width: 48px; height: 48px; display: grid; place-items: center; margin-bottom: 1.4rem; color: var(--orange-dark); background: var(--orange-light); border-radius: 13px; font-size: 1.35rem; font-weight: 800; }
.card-featured .icon-box { color: var(--white); background: rgba(255,255,255,.12); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 3rem; counter-reset: step; }
.step { position: relative; padding: 27px 28px 10px 0; counter-increment: step; }
.step:not(:last-child)::after { position: absolute; top: 25px; right: 17px; left: 54px; height: 1px; content: ""; background: #bfd0ca; }
.step::before {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 1.3rem;
  content: counter(step, decimal-leading-zero);
  color: var(--white);
  background: var(--green);
  border-radius: 50%;
  font-size: .82rem;
  font-weight: 800;
}
.step p { color: var(--ink-soft); font-size: .95rem; }

.image-card { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.image-card img { width: 100%; min-height: 520px; object-fit: cover; }
.image-caption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 16px 18px; color: var(--white); background: rgba(7,30,38,.88); border-radius: 12px; font-size: .86rem; }

.check-list { padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; }
.check-list li::before { position: absolute; left: 0; top: 3px; content: "✓"; color: var(--green); font-size: 1.1rem; font-weight: 900; }
.section-dark .check-list li::before { color: #ff9e72; }

.quote {
  margin: 2rem 0 0;
  padding: 1.5rem 1.6rem;
  color: var(--ink);
  background: var(--orange-light);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.quote p:last-child { margin-bottom: 0; }

.page-hero { padding: clamp(70px, 9vw, 115px) 0 65px; color: var(--white); background: var(--ink); }
.page-hero .eyebrow { color: #ff9e72; }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.65rem, 6vw, 4.9rem); }
.page-hero .lead { max-width: 790px; color: #cedbd8; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 2.1rem; color: #b7c9c5; font-size: .84rem; }
.breadcrumbs a { color: #ffffff; }
.breadcrumbs span::before { margin-right: 8px; content: "/"; opacity: .5; }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(45px, 7vw, 90px); align-items: start; }
.article h2 { margin-top: 2.3em; }
.article h2:first-child { margin-top: 0; }
.article h3 { margin-top: 2em; }
.article a { font-weight: 700; }
.article figure { margin: 2.5rem 0; }
.article figure img { width: 100%; border-radius: var(--radius); }
.article figcaption { margin-top: .7rem; color: #61767d; font-size: .84rem; }
.aside { position: sticky; top: 110px; }
.aside-box { padding: 25px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); }
.aside-box + .aside-box { margin-top: 18px; }
.aside h2 { font-size: 1.12rem; }
.aside ul { margin: 0; padding: 0; list-style: none; }
.aside li { margin: 0; border-top: 1px solid var(--line); }
.aside li:first-child { border-top: 0; }
.aside a { display: block; padding: .65rem 0; color: var(--ink); font-size: .92rem; font-weight: 700; text-decoration: none; }
.aside a:hover { color: var(--orange-dark); }

.notice { margin: 2rem 0; padding: 1.4rem 1.5rem; background: var(--green-light); border-radius: var(--radius-sm); }
.notice strong { display: block; margin-bottom: .3rem; font-family: "Manrope", Arial, sans-serif; }
.warning { background: var(--orange-light); }

.table-wrap { margin: 2rem 0; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-sm); }
table { width: 100%; border-collapse: collapse; background: var(--white); font-size: .92rem; }
th, td { padding: 15px 16px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
th { color: var(--white); background: var(--ink); font-family: "Manrope", Arial, sans-serif; }
tr:last-child td { border-bottom: 0; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; padding: 1.25rem 40px 1.25rem 0; cursor: pointer; font-family: "Manrope", Arial, sans-serif; font-weight: 800; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { position: absolute; right: 6px; content: "+"; color: var(--orange-dark); font-size: 1.5rem; font-weight: 400; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 40px 1.25rem 0; color: var(--ink-soft); }

.cta-band { position: relative; overflow: hidden; padding: clamp(45px, 6vw, 70px); color: var(--white); background: var(--orange-dark); border-radius: 28px; }
.cta-band::after { position: absolute; right: -70px; bottom: -125px; width: 310px; height: 310px; content: ""; border: 55px solid rgba(255,255,255,.08); border-radius: 50%; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { max-width: 760px; color: var(--white); }
.cta-band p { max-width: 700px; color: #ffe7da; }
.cta-band .button { color: var(--ink); background: var(--white); border-color: var(--white); box-shadow: none; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.contact-card { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.contact-card address { font-style: normal; }
.contact-list { margin: 1.7rem 0 0; padding: 0; list-style: none; }
.contact-list li { display: grid; grid-template-columns: 100px 1fr; gap: 15px; padding: .8rem 0; border-top: 1px solid var(--line); }
.contact-list strong { font-size: .86rem; }

.site-footer { padding: 68px 0 28px; color: #c8d4d2; background: #071b22; }
.site-footer .brand { width: fit-content; margin-bottom: 1.3rem; color: var(--white); }
.footer-grid { grid-template-columns: 1.4fr .8fr .8fr; }
.footer-intro { max-width: 440px; }
.site-footer h2 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.footer-links { margin: 0; padding: 0; list-style: none; }
.footer-links li { margin: .45rem 0; }
.footer-links a { color: #c8d4d2; text-decoration: none; }
.footer-links a:hover { color: #ff9e72; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .82rem; }
.footer-bottom p { margin: 0; }

@media (max-width: 1020px) {
  .menu-toggle { display: grid; }
  .site-nav {
    position: fixed;
    top: 83px;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 20px;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s;
  }
  .site-nav.is-open { transform: translateX(0); visibility: visible; }
  .nav-list { display: block; }
  .nav-list a { padding: .9rem 1rem; font-size: 1.1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav-list .nav-cta { margin: 18px 0 0; text-align: center; border-radius: 12px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-featured { transform: none; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .step:nth-child(2)::after { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .aside-box + .aside-box { margin-top: 0; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 72px; }
  .site-nav { top: 73px; }
  .hero { min-height: 690px; align-items: end; }
  .hero-media::after { background: linear-gradient(0deg, rgba(6,24,31,.98) 4%, rgba(6,24,31,.78) 63%, rgba(6,24,31,.22)); }
  .hero-media img { object-position: 65% center; }
  .hero-content { padding: 185px 0 48px; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .hero-note { width: 100%; }
  .intro-grid, .split, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step { padding-right: 0; }
  .step::after { display: none; }
  .image-card img { min-height: 380px; }
  .aside { grid-template-columns: 1fr; }
  .page-hero { padding-top: 55px; }
  .contact-list li { grid-template-columns: 1fr; gap: 2px; }
  .footer-bottom { display: block; }
  .footer-bottom p + p { margin-top: 8px; }
  .cta-band { margin-inline: -2px; padding: 36px 24px; border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
