:root {
  --dark: #0f172a;
  --dark-2: #111827;
  --dark-3: #1e293b;
  --light: #f8fafc;
  --white: #ffffff;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --body: #475569;
  --heading: #0f172a;
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #ffedd5;
  --green: #16a34a;
  --border: #e2e8f0;
  --border-dark: rgba(255,255,255,.13);
  --shadow: 0 18px 50px rgba(15, 23, 42, .12);
  --radius: 24px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--dark);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 32px, 880px);
}

.topbar {
  background: #080d19;
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #dbeafe;
  font-size: 13px;
}

.topbar-inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.topbar-contact,
.topbar-company {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.topbar-contact span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(15, 23, 42, .96);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  background: linear-gradient(135deg, var(--orange), #facc15);
  color: #fff;
}

.logo-mark svg {
  width: 30px;
  height: 30px;
}

.brand strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-right > a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
}

.nav-right > a:hover {
  background: rgba(255,255,255,.08);
}

.nav-right .nav-cta {
  background: var(--orange);
  color: #fff;
}

.nav-right .nav-cta:hover {
  background: var(--orange-dark);
}

.language-switcher {
  display: flex;
  gap: 3px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
}

.lang {
  min-width: 35px;
  min-height: 31px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #cbd5e1;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.lang.active {
  background: #fff;
  color: var(--dark);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: #fff;
}

.hero {
  padding: 94px 0 84px;
  background:
    radial-gradient(circle at 10% 10%, rgba(249,115,22,.18), transparent 34%),
    linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .86fr);
  gap: 54px;
  align-items: center;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(249,115,22,.13);
  color: #fed7aa;
  font-size: 13px;
  font-weight: 900;
}

.badge > span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.light .eyebrow,
.faq-section .eyebrow {
  background: var(--orange-soft);
  color: #c2410c;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -.06em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(31px, 4vw, 50px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -.025em;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-secondary {
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(255,255,255,.1);
}

.full {
  width: 100%;
}

.proof-row {
  display: grid;
  max-width: 660px;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.proof-row div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.055);
}

.proof-row strong {
  display: block;
  color: #fff;
  font-size: 21px;
}

.proof-row span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.hero-panel {
  width: 100%;
  max-width: 540px;
  justify-self: end;
  padding: 18px;
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: #162033;
  box-shadow: 0 22px 60px rgba(0,0,0,.22);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.panel-header > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e8f0;
  font-weight: 800;
}

.panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
}

.panel-pill {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(249,115,22,.14);
  color: #fed7aa;
  font-size: 12px;
  font-weight: 900;
}

.request-card,
.ai-response {
  padding: 18px;
  border: 1px solid rgba(226,232,240,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.06);
}

.request-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 13px;
}

.avatar {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
  background: #fff7ed;
  color: #c2410c;
  font-weight: 900;
}

.request-head small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.request-card p,
.ai-response p {
  margin-bottom: 0;
  color: #e2e8f0;
}

.ai-response {
  margin-top: 13px;
  background: rgba(249,115,22,.12);
  border-color: rgba(249,115,22,.25);
}

.ai-label {
  margin-bottom: 8px !important;
  color: #fed7aa !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.status-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
  margin-top: 13px;
}

.status-grid div {
  padding: 11px 13px;
  border-radius: 15px;
  background: rgba(255,255,255,.06);
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 800;
}

.trust-section {
  padding: 24px 0;
  background: #0b1222;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.trust-grid div {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
}

.trust-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #fff;
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding: 88px 0;
  background: var(--dark);
}

.light {
  background: var(--light);
  color: var(--heading);
}

.dark {
  background: #111827;
  color: var(--text);
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.section-copy p,
.card p,
.feature p,
.timeline-step p,
.company-card p,
.contact-copy p,
.faq p,
.footer p {
  color: var(--muted);
}

.light .section-heading p,
.light .card p,
.light .timeline-step p,
.light .contact-copy p,
.light .faq p {
  color: var(--body);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  place-items: center;
  border-radius: 16px;
  background: var(--orange-soft);
  color: #c2410c;
  font-weight: 900;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: center;
}

.feature-list {
  display: grid;
  gap: 13px;
}

.feature {
  display: flex;
  gap: 16px;
  padding: 21px;
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  background: rgba(255,255,255,.055);
}

.feature strong {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: rgba(249,115,22,.14);
  color: #fed7aa;
  font-size: 14px;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 13px;
}

.timeline-step {
  min-height: 216px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

.timeline-step span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 28px;
}

.company-card,
.security-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--border-dark);
  border-radius: 28px;
  background: rgba(255,255,255,.055);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
  margin-top: 26px;
}

.company-details div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.05);
}

.company-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 13px;
}

.company-details strong {
  overflow-wrap: anywhere;
}

.security-card ul {
  display: grid;
  gap: 13px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.security-card li {
  padding: 14px 14px 14px 42px;
  position: relative;
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  color: #e2e8f0;
  font-weight: 700;
}

.security-card li::before {
  position: absolute;
  left: 15px;
  color: #22c55e;
  content: "✓";
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 48px;
  align-items: start;
}

.contact-box {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form {
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  margin-bottom: 13px;
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: 0;
  background: var(--light);
  color: var(--heading);
  font-size: 16px;
}

input,
select {
  height: 50px;
  padding: 0 14px;
}

textarea {
  resize: vertical;
  padding: 13px 14px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(249,115,22,.12);
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--body);
  font-size: 13px;
  font-weight: 600;
}

.privacy-check input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  flex: 0 0 auto;
}

.faq-section {
  background: #fff;
  color: var(--heading);
}

.faq {
  display: grid;
  gap: 11px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--light);
}

summary {
  position: relative;
  padding: 19px 50px 19px 20px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  color: #c2410c;
  font-size: 22px;
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 0;
  padding: 0 20px 18px;
}

.footer {
  padding: 48px 0 22px;
  background: #080d19;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 28px;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer h3 {
  color: #fff;
  font-size: 16px;
}

.footer p {
  margin-bottom: 7px;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .hero-grid,
  .split,
  .company-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    justify-self: start;
    max-width: 720px;
  }

  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .container,
  .container.narrow {
    width: min(100% - 24px, var(--container));
  }

  .topbar {
    display: none;
  }

  .nav-inner {
    min-height: 68px;
  }

  .brand small {
    display: none;
  }

  .logo-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 15px;
  }

  .menu-button {
    display: block;
  }

  .nav-right {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    background: #111827;
    box-shadow: 0 20px 50px rgba(0,0,0,.25);
  }

  .nav-right.open {
    display: flex;
  }

  .nav-right > a {
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    margin: 8px 0 0;
  }

  .hero {
    padding: 54px 0 64px;
  }

  .hero-grid {
    gap: 30px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 52px);
    letter-spacing: -.05em;
  }

  h2 {
    font-size: clamp(29px, 9vw, 39px);
    letter-spacing: -.04em;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions,
  .proof-row,
  .cards,
  .process-timeline,
  .company-details,
  .form-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    max-width: 100%;
    padding: 13px;
    border-radius: 20px;
    box-shadow: none;
  }

  .panel-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 30px;
    text-align: left;
  }

  .card,
  .feature,
  .timeline-step,
  .company-card,
  .security-card,
  .contact-form {
    border-radius: 18px;
  }

  .feature {
    padding: 18px;
  }

  .timeline-step {
    min-height: auto;
  }

  .timeline-step span {
    margin-bottom: 20px;
  }

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

@media (max-width: 390px) {
  .container,
  .container.narrow {
    width: min(100% - 20px, var(--container));
  }

  .badge,
  .eyebrow {
    font-size: 12px;
  }

  h1 {
    font-size: 36px;
  }
}
