* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #0f172a;
  background: #ffffff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid #e2e8f0;
  backdrop-filter: blur(8px);
}

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

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

.brand-logo {
  height: 64px;
  width: auto;
}

.brand-title {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #64748b;
  margin-top: 4px;
}

.nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.nav a {
  color: #475569;
  font-weight: 700;
}

.nav a:hover { color: #0f172a; }

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(251, 146, 60, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(148, 163, 184, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fafc, #ffffff 60%, #fff7ed);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding: 96px 0 112px;
}

.eyebrow {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: #ffffff;
  color: #c2410c;
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.hero h1 {
  margin: 22px 0 0;
  font-size: clamp(2.6rem, 5vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero p {
  margin: 24px 0 0;
  font-size: 1.18rem;
  color: #475569;
  max-width: 680px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease;
}

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

.btn-dark {
  background: #0f172a;
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: #334155;
  border: 1px solid #cbd5e1;
}

.btn-white {
  background: #ffffff;
  color: #0f172a;
}

.hero-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(148, 163, 184, 0.22);
}

.hero-logo {
  width: 100%;
  max-width: 520px;
  height: auto;
}

.section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.section-label {
  color: #ea580c;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.section-label.light {
  color: #fb923c;
}

.section h2,
.section-dark h2 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.section p,
.section-dark p {
  font-size: 1.08rem;
  color: #475569;
}

.section p + p { margin-top: 20px; }

.info-card {
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: linear-gradient(135deg, #ffffff, #f8fafc);
  padding: 32px;
  box-shadow: 0 16px 44px rgba(148, 163, 184, 0.16);
}

.info-block + .info-block {
  margin-top: 24px;
}

.info-label {
  color: #64748b;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.info-title {
  margin-top: 8px;
  font-size: 1.25rem;
  font-weight: 800;
}

.section-dark {
  background: #020617;
  color: #ffffff;
}

.section-dark p {
  color: #cbd5e1;
  max-width: 840px;
}

.narrow {
  max-width: 860px;
}

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

.value-card {
  border: 1px solid #e2e8f0;
  border-radius: 28px;
  background: #ffffff;
  padding: 30px;
  box-shadow: 0 14px 34px rgba(148, 163, 184, 0.12);
}

.value-card h3 {
  margin: 0;
  font-size: 1.55rem;
}

.value-card p {
  margin-top: 14px;
}

.cta {
  background: linear-gradient(90deg, #f97316, #fb923c);
  color: #ffffff;
}

.cta-inner {
  padding: 64px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.cta-label {
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #ffedd5;
}

.cta h3 {
  margin: 12px 0 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.site-footer {
  border-top: 1px solid #e2e8f0;
  background: #ffffff;
}

.footer-inner {
  padding: 44px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  height: 58px;
  width: auto;
}

.footer-copy {
  color: #475569;
  margin-top: 6px;
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  color: #ea580c;
  font-weight: 800;
}

.copyright {
  color: #64748b;
  font-size: 0.95rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .cards,
  .cta-inner,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split {
    gap: 32px;
  }

  .nav {
    display: none;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-grid {
    padding: 64px 0 72px;
  }

  .hero-card {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 1120px);
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    height: 50px;
  }

  .brand-title {
    font-size: 1.1rem;
  }

  .hero p,
  .section p,
  .section-dark p {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }
}
