:root {
  --red: #b00020;
  --red-2: #d1142f;
  --ink: #20242c;
  --dark: #2b2623;
  --muted: #6c7280;
  --line: #e8e8ec;
  --paper: #ffffff;
  --cream: #fbfaf8;
  --soft: #f6f6f7;
  --gold: #c99a25;
  --green: #1d7f56;
  --shadow: 0 14px 36px rgba(29, 31, 37, 0.08);
  --radius: 8px;
}
* { box-sizing: border-box; }
html { background: var(--cream); scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #fbfaf8 48%, #f3f3f5 100%);
  font-family: "Inter", "Aptos", "Segoe UI", system-ui, -apple-system, sans-serif;
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
p, h1, h2, h3 { margin-top: 0; }
p { margin-bottom: 0; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1480px, calc(100% - 36px));
  min-height: 76px;
  margin: 12px auto 0;
  padding: 0 18px;
  border: 1px solid rgba(232, 232, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(190px, 18vw, 250px);
  height: 58px;
  overflow: hidden;
}
.brand img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.main-nav { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: flex-end; }
.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  color: var(--ink);
  background: transparent;
  font-size: 0.9rem;
  font-weight: 850;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.main-nav a:hover { background: #fff0f2; color: var(--red); transform: translateY(-1px); }
.main-nav a:last-child { background: var(--red); color: #fff; box-shadow: 0 10px 22px rgba(176, 0, 32, 0.18); }
.section, .hero {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
}
.section { padding: 78px 0; }
.compact-section { padding-top: 36px; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
  min-height: min(760px, calc(100vh - 98px));
  padding: 38px 0 64px;
}
.hero-copy { min-width: 0; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 1.02;
}
h1 { max-width: 780px; margin-bottom: 22px; font-size: clamp(2.1rem, 3.5vw, 3.55rem); font-weight: 950; }
h2 { max-width: 840px; margin-bottom: 18px; font-size: clamp(1.85rem, 3vw, 2.85rem); font-weight: 950; }
h3 { margin-bottom: 9px; color: var(--ink); font-size: 1.06rem; line-height: 1.16; }
.lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.25rem);
  font-weight: 650;
}
.actions, .form-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(32, 36, 44, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(32, 36, 44, 0.17); }
.button.primary { background: var(--red); color: #fff; box-shadow: 0 12px 26px rgba(176, 0, 32, 0.22); }
.button.primary:hover { background: #94001b; }
.button.secondary { background: #f0f0f2; color: var(--ink); box-shadow: none; }
.button.green { background: var(--green); }
.offer-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.offer-strip strong, .offer-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--dark);
  font-size: 0.9rem;
  font-weight: 900;
}
.offer-strip strong {
  border-color: rgba(176, 0, 32, 0.24);
  background: #fff0f2;
  color: var(--red);
}
.hero-list {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--dark);
  font-weight: 750;
}
.hero-list li {
  position: relative;
  padding-left: 24px;
}
.hero-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
}
.app-showcase {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(232, 232, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 26px 80px rgba(32, 36, 44, 0.14);
}
.app-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.app-frame img {
  width: 100%;
  height: min(72vh, 620px);
  object-fit: cover;
  object-position: top center;
}
.phone-frame {
  position: absolute;
  right: -18px;
  bottom: -42px;
  width: min(190px, 34%);
  overflow: hidden;
  border: 8px solid #20242c;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 48px rgba(32, 36, 44, 0.28);
}
.phone-frame img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: top center;
}
.floating-kpi {
  position: absolute;
  top: -20px;
  right: 34px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(232, 232, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  font-weight: 950;
}
.floating-kpi span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  background: #fff0f2;
  color: var(--red);
}
.section-heading { max-width: 860px; margin-bottom: 28px; }
.section-heading p { color: var(--muted); }
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 26px;
  align-items: center;
}
.feature-grid, .pricing-grid, .faq-grid, .stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.process-card {
  padding: 22px;
  border: 1px solid rgba(232, 232, 236, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.process-card strong {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}
.process-card p { color: var(--muted); }
.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 32px;
  border: 1px solid rgba(176, 0, 32, 0.18);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 18px 46px rgba(176, 0, 32, 0.1);
}
.cta-band h2 { margin-bottom: 12px; }
.cta-band p { max-width: 760px; color: var(--muted); font-weight: 700; }
.stat-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 24px; }
.card, .price-card, .faq-card, .form-panel, .mini-stat, .visual-panel {
  border: 1px solid rgba(232, 232, 236, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}
.card, .faq-card, .mini-stat { padding: 22px; }
.card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: var(--radius);
  background: #fff0f2;
  color: var(--red);
  font-weight: 950;
}
.card p, .faq-card p, .price-card p { color: var(--muted); }
.mini-stat { position: relative; overflow: hidden; min-height: 132px; }
.mini-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.mini-stat strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.05;
}
.visual-panel { overflow: hidden; padding: 14px; }
.visual-panel img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.pdf-preview {
  background: linear-gradient(180deg, #fff, #f7f7f8);
}
.pdf-preview img {
  width: min(100%, 560px);
  max-height: 720px;
  margin: 0 auto;
  object-fit: contain;
  object-position: top center;
  background: #fff;
  box-shadow: 0 18px 42px rgba(32, 36, 44, 0.12);
}
.visual-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 0;
  color: var(--muted);
  font-weight: 850;
}
.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius);
  padding: 7px 10px;
  background: #fff0f2;
  color: var(--red);
  font-size: 0.76rem;
  font-weight: 950;
}
.price-card {
  display: grid;
  gap: 18px;
  padding: 24px;
}
.price-card.featured {
  border-color: rgba(176, 0, 32, 0.36);
  box-shadow: 0 18px 46px rgba(176, 0, 32, 0.12);
}
.price { color: var(--ink); font-size: 2.35rem; font-weight: 950; line-height: 1; }
.price small { color: var(--muted); font-size: 0.95rem; }
.price-card ul { display: grid; gap: 9px; padding-left: 18px; margin: 0; color: var(--dark); }
.contact-layout, .signup-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 22px;
  align-items: start;
}
.form-panel { padding: 24px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 13px; }
.field { display: grid; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 52px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  outline: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(176, 0, 32, 0.08);
}
.field textarea { min-height: 110px; resize: vertical; }
.notice {
  margin-top: 14px;
  padding: 13px 16px;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  background: #ecfdf3;
  color: #166534;
  font-weight: 850;
}
.footer {
  width: min(1480px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}
@media (max-width: 1080px) {
  .hero, .split, .contact-layout, .signup-layout { grid-template-columns: 1fr; min-height: auto; }
  .hero { gap: 30px; padding-top: 52px; }
  .feature-grid, .pricing-grid, .faq-grid, .stat-grid, .process-grid { grid-template-columns: 1fr 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }
  .brand { width: min(250px, 72vw); }
  .main-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }
  .main-nav a {
    min-height: 40px;
    padding: 0 10px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 0.84rem;
    text-align: center;
  }
  .phone-frame { right: 8px; bottom: -28px; }
}
@media (max-width: 700px) {
  .site-header { width: min(100% - 24px, 1480px); min-height: 72px; }
  .section, .hero { width: min(100% - 24px, 1280px); }
  .section { padding: 52px 0; }
  .hero { padding: 34px 0 52px; }
  h1 { font-size: clamp(1.9rem, 8.2vw, 2.7rem); line-height: 1.06; }
  h2 { font-size: clamp(1.75rem, 7.8vw, 2.4rem); line-height: 1.08; }
  .lead { font-size: 1rem; }
  .main-nav { grid-template-columns: 1fr 1fr; }
  .feature-grid, .pricing-grid, .faq-grid, .stat-grid, .form-grid, .process-grid { grid-template-columns: 1fr; }
  .actions, .form-actions { align-items: stretch; }
  .button { width: 100%; }
  .offer-strip strong, .offer-strip span { width: 100%; justify-content: center; }
  .app-showcase { padding: 10px; }
  .app-frame img { height: clamp(300px, 68vh, 520px); }
  .phone-frame { position: relative; right: auto; bottom: auto; width: min(230px, 64vw); margin: 14px auto 0; }
  .phone-frame img { height: 320px; }
  .floating-kpi { position: static; margin: 0 0 12px; width: 100%; justify-content: center; }
  .visual-caption { align-items: flex-start; flex-direction: column; }
  .pdf-preview img { max-height: 540px; }
  .form-panel, .price-card, .card, .faq-card, .mini-stat, .process-card { padding: 18px; }
  .cta-band { padding: 20px; }
}
@media (max-width: 420px) {
  .site-header, .section, .hero, .footer { width: min(100% - 18px, 1480px); }
  .main-nav { grid-template-columns: 1fr 1fr; }
  .main-nav a { font-size: 0.78rem; line-height: 1.15; }
  .brand { height: 52px; }
  .actions, .form-actions { gap: 10px; }
  .floating-kpi { min-height: 48px; font-size: 0.9rem; }
}
