:root {
  /* New light theme: white + orange + black */
  --bg: #ffffff;
  --text: rgba(0, 0, 0, 0.92);
  --muted: rgba(0, 0, 0, 0.64);
  --muted-2: rgba(0, 0, 0, 0.52);

  --accent: #f97316;   /* orange */
  --accent-2: #111827; /* near-black (used for contrast) */

  --line: rgba(0, 0, 0, 0.12);
  --panel: rgba(0, 0, 0, 0.03);
  --panel-strong: rgba(0, 0, 0, 0.06);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1100px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section { padding: 84px 0; }

.section-alt {
  background: rgba(249, 115, 22, 0.04);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-contact { border-top: 1px solid var(--line); }

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-head h2 {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  padding: 10px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.skip-link:focus { left: 12px; z-index: 9999; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent), #ffb26b);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.brand-name { font-size: 15px; }
.brand-footer .brand-name { font-size: 14px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a { color: var(--muted); font-weight: 700; font-size: 14px; }
.nav-menu a:hover { color: var(--text); text-decoration: none; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 10px;
  color: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(249, 115, 22, 0.45);
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.18);
}
.btn:hover { text-decoration: none; filter: brightness(0.98); }

.btn-small { padding: 10px 14px; border-radius: 12px; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-ghost:hover { background: rgba(0, 0, 0, 0.03); }

/* Hero */
.hero { padding-top: 78px; }
.kicker {
  margin: 0 0 10px;
  font-weight: 900;
  color: rgba(249, 115, 22, 0.95);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.hero h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4.2vw, 54px);
  letter-spacing: -0.03em;
  line-height: 1.06;
}
.accent {
  background: linear-gradient(90deg, var(--accent), #000);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.lead {
  margin: 0 0 18px;
  max-width: 60ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
  align-items: start;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin: 10px 0 18px; }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid var(--line);
  color: rgba(0, 0, 0, 0.78);
  font-weight: 800;
  font-size: 13px;
}

/* Trust */
.trust { margin-top: 26px; }
.trust-label { margin: 0 0 10px; color: var(--muted-2); font-weight: 800; font-size: 13px; }
.trust-logos { display: flex; flex-wrap: wrap; gap: 14px; }
.trust-logo {
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: rgba(0, 0, 0, 0.68);
  background: rgba(0, 0, 0, 0.02);
  font-weight: 900;
  letter-spacing: -0.01em;
}

/* Quotes */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote {
  margin: 0;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}
.quote blockquote {
  margin: 0 0 12px;
  color: rgba(0, 0, 0, 0.86);
  font-weight: 800;
  line-height: 1.6;
}
.quote figcaption { color: var(--muted-2); font-weight: 800; font-size: 13px; }

/* About */
.about-points {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.about-point {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
  padding: 16px;
}
.about-point h3 { margin: 0 0 8px; }
.about-point p { margin: 0; color: var(--muted); line-height: 1.6; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}
.contact-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
  padding: 16px;
}
.contact-card h3 { margin: 0 0 8px; }
.contact-card p { margin: 0 0 6px; }

.muted { color: var(--muted-2); }

.form {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
  padding: 18px;
}
.field { display: grid; gap: 8px; margin-bottom: 12px; }
label { font-weight: 900; font-size: 13px; color: rgba(0, 0, 0, 0.86); }

input, textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: #fff;
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus {
  border-color: rgba(249, 115, 22, 0.75);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.18);
}
.field-error { min-height: 16px; color: #b91c1c; font-weight: 800; }
.form-note { margin: 10px 0 0; font-size: 13px; line-height: 1.5; }
.form-status { margin: 12px 0 0; font-weight: 900; }

/* Footer */
.site-footer {
  padding: 36px 0 24px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.02);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}
.footer-right { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-right a { color: var(--muted); font-weight: 800; font-size: 14px; }
.footer-right a:hover { color: var(--text); text-decoration: none; }

.footer-bottom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Responsive */
@media (max-width: 980px) {
  .quotes { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 12px;
    width: min(260px, calc(100vw - 40px));
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 10px 10px; border-radius: 12px; }
  .nav-menu a:hover { background: rgba(0, 0, 0, 0.03); }

  .footer-inner { flex-direction: column; }
}
