:root {
  --bg: #f5f7fb;
  --surface: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --primary: #ff5a1f;
  --accent: #1f6fff;
  --stroke: #e5e7eb;
  --shadow: 0 20px 40px rgba(17, 24, 39, 0.08);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 5% 10%, #ffffff, #eef2f9 55%, #e9edf5 100%);
}

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

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(245, 247, 251, 0.86);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--primary), #ff834a);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 6px;
  background: #fff;
}

.site-nav a {
  font-size: 0.94rem;
  color: #334155;
  padding: 9px 14px;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  background: linear-gradient(145deg, var(--primary), #ff7a46);
  color: #fff;
}

.btn {
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-primary {
  background: linear-gradient(145deg, var(--primary), #ff7a46);
  color: #fff;
}

.btn-outline {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--stroke);
  background: #fff;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.hero-wrap {
  padding: 54px 0 44px;
}

.hero-card {
  border: 3px solid #111827;
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(1.1deg) rotateY(-0.8deg);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 36px;
  padding: 48px;
}

.label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

h1 {
  margin: 16px 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: -1.2px;
}

.highlight {
  color: var(--accent);
}

.lead {
  color: #475569;
  max-width: 52ch;
  font-size: 1.02rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  margin-top: 28px;
  display: flex;
  gap: 28px;
}

.metric strong {
  font-size: 1.8rem;
}

.metric p {
  margin: 2px 0 0;
  color: #64748b;
}

.hero-media {
  border-radius: 22px;
  overflow: hidden;
  min-height: 300px;
  background: linear-gradient(145deg, #0f172a 10%, #1f2937 55%, #334155);
  position: relative;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 90, 31, 0.45), transparent 35%),
    radial-gradient(circle at 20% 70%, rgba(31, 111, 255, 0.45), transparent 38%);
}

.media-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  color: #f8fafc;
  z-index: 2;
}

.media-copy h3 {
  margin: 0 0 8px;
  font-size: 1.35rem;
}

.logo-rail {
  border-top: 1px solid #eef2f7;
  padding: 20px 42px 26px;
}

.logo-rail p {
  margin: 0 0 14px;
  font-weight: 700;
  color: #1f2937;
}

.logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.logo-pill {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  text-align: center;
  color: #475569;
  background: #fff;
  font-weight: 600;
}

.section {
  padding: 64px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
}

.section-sub {
  margin: 0 0 24px;
  color: #64748b;
  max-width: 70ch;
}

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

.card {
  background: #fff;
  border: 1px solid #e6ecf5;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.05);
}

.card h3 {
  margin-top: 0;
}

.card p {
  color: #64748b;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.faq-item {
  border: 1px solid #dce3ef;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.faq-btn {
  width: 100%;
  text-align: left;
  border: 0;
  background: transparent;
  padding: 16px;
  font-weight: 700;
  color: #111827;
  cursor: pointer;
}

.faq-panel {
  border-top: 1px solid #e9eff7;
  padding: 0 16px 16px;
  color: #4b5563;
  display: none;
}

.faq-item.open .faq-panel {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

form {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 20px;
}

label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.legal h3 {
  margin-top: 26px;
}

.site-footer {
  margin-top: 64px;
  border-top: 1px solid #e4e8ef;
  background: #fff;
}

.footer-inner {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: #475569;
}

@media (max-width: 980px) {
  .site-nav {
    position: absolute;
    top: 82px;
    left: 4vw;
    right: 4vw;
    border-radius: 18px;
    display: none;
    padding: 14px;
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .hero-card {
    transform: none;
  }

  .hero-grid,
  .cards,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 28px;
  }

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