/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #1C1C1C;
  background: #FFFFFF;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── HEADER ── */
.site-header {
  background: #FFFFFF;
  border-bottom: 2px solid #F0F0F0;
  padding: 0 32px;
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link { display: flex; align-items: center; }
.logo-img { height: 46px; width: auto; }
.header-nav { display: flex; gap: 36px; }
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #1C1C1C;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.header-nav a:hover { color: #E8472A; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1C1C1C;
  border-radius: 2px;
}

/* ── HERO — split layout ── */
.hero {
  background: #FAFAFA;
  border-bottom: 1px solid #EBEBEB;
  padding: 80px 32px;
}
.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-text { flex: 1; }
.hero-text h1 {
  font-size: 38.4px;
  font-weight: 800;
  line-height: 1.2;
  color: #1C1C1C;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-text h1 em {
  font-style: normal;
  color: #E8472A;
}
.hero-text p {
  font-size: 16px;
  color: #555555;
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-visual {
  flex: 0 0 340px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.trust-badge {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  border-left: 4px solid #E8472A;
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.trust-badge-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #FFF0ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-badge-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 2px;
}
.trust-badge-text span {
  font-size: 13px;
  color: #777777;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: #E8472A;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #c93820; transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  background: transparent;
  color: #E8472A;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 4px;
  border: 2px solid #E8472A;
  transition: background 0.2s;
}
.btn-outline:hover { background: #FFF0ED; }

/* ── STAT BAR ── */
.stat-bar {
  background: #E8472A;
  color: #FFFFFF;
  padding: 32px 32px;
}
.stat-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat-bar-item { text-align: center; }
.stat-bar-num {
  font-size: 34px;
  font-weight: 800;
  display: block;
  letter-spacing: -0.5px;
}
.stat-bar-label {
  font-size: 13px;
  opacity: 0.85;
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── SECTIONS ── */
.section { padding: 72px 32px; }
.section-inner { max-width: 1140px; margin: 0 auto; }
.section-title {
  font-size: 28px;
  font-weight: 800;
  color: #1C1C1C;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.section-sub {
  font-size: 15px;
  color: #777777;
  margin-bottom: 48px;
}
.section-alt { background: #F7F5F3; }

/* ── HOW IT WORKS — horizontal steps ── */
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-row::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(16.6% + 14px);
  right: calc(16.6% + 14px);
  height: 2px;
  background: #E8E8E8;
  z-index: 0;
}
.step-item {
  text-align: center;
  padding: 0 24px 24px;
  position: relative;
  z-index: 1;
}
.step-dot {
  width: 56px;
  height: 56px;
  background: #FFFFFF;
  border: 3px solid #E8472A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 20px;
  font-weight: 800;
  color: #E8472A;
}
.step-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 8px;
}
.step-item p {
  font-size: 14px;
  color: #666666;
  line-height: 1.65;
}

/* ── FEATURE LIST — two-column text+icon ── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.feature-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #FFFFFF;
  border-radius: 8px;
  border: 1px solid #EBEBEB;
}
.feature-row-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #FFF0ED;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-row-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #1C1C1C;
  margin-bottom: 6px;
}
.feature-row-body p {
  font-size: 13px;
  color: #666666;
  line-height: 1.65;
}

/* ── CTA SECTION ── */
.cta-section {
  background: #1C1C1C;
  color: #FFFFFF;
  text-align: center;
  padding: 72px 32px;
}
.cta-section h2 {
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.cta-section p {
  font-size: 15px;
  color: #AAAAAA;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: #1C1C1C;
  color: #FFFFFF;
  text-align: center;
  padding: 60px 32px 52px;
}
.page-hero h1 {
  font-size: 38.4px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.page-hero p {
  font-size: 15px;
  color: #AAAAAA;
}

/* ── PAGE CONTENT ── */
.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px 32px;
}
.page-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: #E8472A;
  margin: 36px 0 12px;
}
.page-content p { margin-bottom: 16px; color: #333333; line-height: 1.8; }
.page-content ul { margin: 0 0 16px 24px; }
.page-content li { margin-bottom: 8px; color: #333333; }

/* ── CONTACT FORM ── */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; color: #1C1C1C; margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #DDDDDD;
  border-radius: 4px;
  font-size: 14px;
  color: #1C1C1C;
  background: #FFFFFF;
  transition: border-color 0.2s;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: #E8472A; }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── FOOTER ── */
.site-footer {
  background: #FFFFFF;
  color: #777777;
  padding: 56px 32px 24px;
  text-align: center;
  border-top: 2px solid #F0F0F0;
}
.footer-main {
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
}
.footer-logo { margin-bottom: 20px; text-align: center; }
.footer-logo-img {
  height: 40px;
  width: auto;
  display: inline-block;
}
.footer-desc {
  font-size: 14px;
  color: #777777;
  max-width: 520px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 28px;
}
.footer-nav a {
  color: #1C1C1C;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.footer-nav a:hover { color: #E8472A; }
.footer-disclosure {
  border-top: 1px solid #EBEBEB;
  max-width: 960px;
  margin: 0 auto 20px;
  padding-top: 20px;
  text-align: center;
}
.footer-disclosure p {
  font-size: 11px;
  color: #AAAAAA;
  line-height: 1.6;
  margin-bottom: 8px;
  white-space: nowrap;
}
.footer-copy {
  font-size: 12px;
  color: #BBBBBB;
  border-top: 1px solid #EBEBEB;
  padding-top: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 40px; }
  .hero-visual { flex: unset; width: 100%; }
  .feature-list { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
  .steps-row::before { display: none; }
  .stat-bar-inner { gap: 32px; }
}
@media (max-width: 768px) {
  .header-nav { display: none; flex-direction: column; gap: 0; position: absolute; top: 76px; left: 0; right: 0; background: #FFFFFF; border-bottom: 2px solid #F0F0F0; z-index: 100; }
  .header-nav.open { display: flex; }
  .header-nav a { padding: 14px 24px; border-bottom: 1px solid #F0F0F0; text-transform: uppercase; }
  .header-inner { position: relative; }
  .hamburger { display: flex; }
  .hero-text h1 { font-size: 28px; }
  .page-hero h1 { font-size: 26px; }
  .footer-disclosure p { white-space: normal; }
}
