:root {
  --navy: #001f3f;
  --navy-2: #06284c;
  --green: #2d5a27;
  --green-2: #3a7a33;
  --red: #b91c1c;
  --red-hover: #991b1b;
  --red-glow: rgba(185, 28, 28, 0.25);
  --light: #f7f9fb;
  --card: #ffffff;
  --ink: #17212b;
  --muted: #5b6773;
  --line: #d8e0e7;
  --warm: #fff8ef;
  --shadow-sm: 0 4px 12px rgba(0, 31, 63, 0.06);
  --shadow: 0 16px 40px rgba(0, 31, 63, 0.10);
  --shadow-lg: 0 24px 54px rgba(0, 31, 63, 0.14);
  --radius: 12px;
  --radius-lg: 18px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(860px, calc(100% - 40px)); margin: 0 auto; }

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}
.brand-link { display: inline-flex; }
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-badge {
  max-width: 280px;
  border-radius: 10px;
  background: #ffffff;
  padding: 4px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.brand-badge img {
  max-width: 280px;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}
.nav-links a:hover {
  color: var(--navy);
}
.nav-cta-btn {
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.3;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-small { min-height: 40px; padding: 10px 18px; font-size: 14px; }
.btn-lg { min-height: 56px; padding: 18px 32px; font-size: 17px; }

.btn-red {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 24px var(--red-glow);
}
.btn-red:hover {
  background: var(--red-hover);
  box-shadow: 0 12px 32px var(--red-glow);
}
.btn-navy {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 31, 63, 0.18);
}
.btn-navy:hover { background: var(--navy-2); }
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: #fff;
}
.btn-white-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(45, 90, 39, 0.2);
}
.btn-primary:hover { background: var(--green-2); }
.full-width { width: 100%; }

.floating-cta {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta-primary {
  box-shadow: 0 12px 36px var(--red-glow), 0 4px 12px rgba(0,0,0,0.1);
}
.floating-cta-secondary {
  font-size: 13px;
  min-height: 40px;
  padding: 8px 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.mobile-sticky-bar {
  display: none;
}

.hero {
  background: linear-gradient(160deg, #f8fafb 0%, #ffffff 50%, #f4f8f3 100%);
  padding: 72px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(45,90,39,0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.eyebrow {
  display: inline-block;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 12px;
  margin-bottom: 16px;
}
h1 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.hero-subtitle {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--green);
}
.hero .lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.65;
  max-width: 560px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero-bullets li {
  font-size: 15px;
  color: var(--ink);
  font-weight: 600;
  padding-left: 24px;
  position: relative;
}
.hero-bullets li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-image-side {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-img {
  max-width: 100%;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 16px 40px rgba(0,31,63,0.14));
}

section { padding: 72px 0; }
.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3.5vw, 38px);
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.authority-strip {
  background: var(--light);
  padding: 72px 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.authority-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s ease;
}
.authority-card:hover {
  box-shadow: var(--shadow);
}
.authority-icon {
  font-size: 20px;
  color: var(--green);
  margin-bottom: 14px;
}
.authority-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--navy);
}
.authority-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-mockup-section {
  padding: 72px 0;
  background: #fff;
}
.kit-contents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.kit-detail-img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.kit-contents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.kit-contents-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kit-contents-list li:first-child { padding-top: 0; }
.kit-contents-list li:last-child { border-bottom: none; }
.kit-contents-list li strong {
  font-size: 15px;
  color: var(--navy);
}
.kit-contents-list li span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.deployment-section {
  padding: 72px 0;
  background: var(--light);
}
.scene-image-wrap {
  text-align: center;
  margin-bottom: 8px;
}
.scene-img {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.benefit-cards-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.benefit-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.benefit-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--navy);
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.workflow-section {
  padding: 72px 0;
  background: #fff;
}

.standard-block {
  padding: 0;
  border-top: 1px solid var(--line);
}
.standard-block-inner {
  padding: 40px 0;
  text-align: center;
}
.standard-block-heading {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.standard-block-body {
  margin: 0 0 8px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.standard-block-sub {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.offer-section {
  padding: 72px 0;
  background: var(--light);
}
.offer-block {
  max-width: 900px;
  margin: 0 auto 40px;
}
.offer-block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
.offer-details { display: flex; flex-direction: column; gap: 0; }
.offer-product {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  margin-bottom: 8px;
}
.offer-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.offer-price span {
  font-size: 24px;
  font-weight: 700;
}
.offer-value-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.offer-value-list li {
  font-size: 14px;
  color: var(--ink);
  padding-left: 22px;
  position: relative;
  line-height: 1.5;
}
.offer-value-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}
.offer-cta { width: 100%; }
.offer-img {
  width: 100%;
  border-radius: var(--radius);
}

.full-kit-callout {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.full-kit-callout-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.full-kit-callout-copy strong {
  font-size: 20px;
  color: var(--navy);
}
.full-kit-callout-copy p {
  margin: 4px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 540px;
}
.full-kit-callout .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.urgency-section {
  padding: 72px 0;
  background: #fff;
}
.urgency-callout {
  background: linear-gradient(135deg, #fffbf5 0%, #fff7ec 100%);
  border: 1px solid #f0d9a8;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.urgency-callout strong {
  display: block;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.urgency-callout p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.deploy-card {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
}
.deploy-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}
.deploy-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--navy);
}
.deploy-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.trust-section {
  padding: 72px 0;
  background: var(--light);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.trust-block {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
}
.trust-block h3 {
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--navy);
}
.trust-block p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.lead-capture-section {
  padding: 72px 0;
  background: #fff;
}
.lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.lead-box {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.lead-title {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
}
.lead-copy {
  margin-top: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}
.form-title {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 24px;
}
.form-copy {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}
.form {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}
.input {
  min-height: 50px;
  border-radius: 10px;
  border: 1px solid var(--line);
  padding: 0 16px;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.2s ease;
  background: #fff;
}
.input:focus {
  outline: none;
  border-color: var(--navy);
}
.form-footnote {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pill-blue { background: #edf3ff; color: var(--navy); }
.pill-green { background: #eaf5e7; color: var(--green); }
.pill-red { background: #fef2f2; color: var(--red); }

.list-clean {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.list-clean li {
  padding: 10px 0;
  border-top: 1px dashed var(--line);
  color: var(--ink);
  font-size: 15px;
}
.list-clean li:first-child { border-top: 0; }
.checklist li {
  padding-left: 24px;
  position: relative;
}
.checklist li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 800;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  transition: background 0.2s ease;
}
.faq-item summary:hover { background: var(--light); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p {
  margin: 0;
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.closing {
  background: var(--navy);
  color: #fff;
  text-align: center;
  padding: 80px 0;
}
.closing h2 { color: #fff; }
.closing-copy {
  color: #c7d4e0;
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 17px;
  line-height: 1.65;
}
.closing-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer {
  background: #0d1621;
  color: #d6dce3;
  padding: 40px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}
.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.footer-badge {
  background: #fff;
  max-width: 100px;
}
.footer-brand-title {
  color: #fff;
  font-weight: 800;
  font-size: 16px;
}
.footer-brand-sub {
  color: #b7c0ca;
  font-size: 12px;
}
.footer-note {
  font-size: 14px;
  color: #b7c0ca;
  max-width: 480px;
  line-height: 1.55;
}
.footer-links {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}
.footer-links a {
  color: #d6dce3;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #8a95a3;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--navy);
}
.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.mini {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
}
.mini.red { color: var(--red); }

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 8px;
}
.price strong {
  font-size: 44px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}
.price small {
  color: var(--muted);
  font-size: 15px;
}

.offer-lines {
  display: grid;
  gap: 10px;
  margin: 14px 0 8px;
}
.offer-lines div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 15px;
  color: var(--ink);
}
.offer-lines strong { color: var(--navy); }

.pricing-panel {
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}
.pricing-title {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 42px;
  line-height: 1.05;
}
.pricing-lead {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 17px;
}
.pricing-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pricing-panel-soft {
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}
.pricing-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.tiny-note {
  font-size: 13px;
  color: var(--muted);
}
.center-actions { justify-content: center; }
.decision-title {
  margin: 14px 0 10px;
  font-size: 28px;
  color: var(--navy);
  line-height: 1.1;
}
.why-box {
  margin-top: 16px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--light);
  border: 1px solid var(--line);
}
.why-box strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 15px;
}
.why-box span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.bump {
  margin-top: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fffaf1 0%, #fff3dd 100%);
  border: 1px solid #f0cf92;
}
.bump p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
}
.bump strong { color: var(--red); }

.included-card {
  padding: 16px 18px;
  background: var(--light);
  border-radius: var(--radius);
}
.included-card strong {
  display: block;
  color: var(--navy);
  margin-bottom: 6px;
}
.included-card div {
  color: var(--muted);
  font-size: 14px;
}

.checkout-page,
.center-page,
.terms-page,
.legal-page {
  background: linear-gradient(180deg, #f5f9fc 0%, #ffffff 100%);
  min-height: 60vh;
}
.checkout-logo {
  max-width: 280px;
  margin: 0 auto 20px;
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
}
.checkout-logo img {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.legal-content h2 {
  font-size: 18px;
  margin: 28px 0 8px;
  color: var(--navy);
}
.legal-content p,
.legal-content ul {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 20px;
}
.legal-content li {
  margin-bottom: 6px;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.checkout-title {
  margin: 14px 0 10px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.08;
}
.checkout-copy {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.summary-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 20px;
  display: grid;
  gap: 14px;
}
.summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 15px;
}
.summary-row strong { color: var(--navy); }
.summary-total {
  border-top: 1px dashed var(--line);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
}

.bump-option {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid #f0cf92;
  background: #fffaf1;
  border-radius: var(--radius);
}
.bump-option input { margin-top: 3px; }
.bump-option strong { display: block; color: var(--navy); }
.bump-option small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }

.product-option {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--border);
  background: #f9fbfd;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.product-option:hover { border-color: var(--green); }
.product-option input { margin-top: 3px; }
.product-option input:checked ~ span { color: var(--navy); }
.product-option strong { display: block; color: var(--navy); }
.product-option small { display: block; margin-top: 4px; color: var(--muted); font-size: 13px; }
.product-price { white-space: nowrap; color: var(--navy); font-size: 16px; }

.center-card { text-align: center; }
.success-card .summary-box { text-align: left; }

.terms-block { margin-bottom: 22px; }
.terms-block h2 { margin: 0 0 8px; font-size: 20px; color: var(--navy); }
.terms-block p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }

.hero-card {
  padding: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  border: 1px solid rgba(0,31,63,0.10);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { margin: 14px 0 6px; font-size: 28px; color: var(--navy); }
.hero-card p { margin: 0; color: var(--muted); font-size: 15px; }
.hero-card-actions { display: grid; gap: 12px; margin-top: 18px; }
.checkout-note { font-size: 13px; color: var(--muted); }

@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-image-side {
    order: -1;
  }
  .hero-product-img {
    max-width: 480px;
    margin: 0 auto;
  }

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

  .kit-contents-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .benefit-cards-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .offer-block-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }
  .offer-image-side {
    order: -1;
  }

  .full-kit-callout {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

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

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

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

  .faq-list {
    grid-template-columns: 1fr;
  }

  .pricing-wrap {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    justify-items: start;
    text-align: left;
  }

  .nav-links { display: none !important; }

  .brand-badge,
  .brand-badge img {
    max-width: 200px;
  }

  .floating-cta {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow { width: calc(100% - 24px); }

  section { padding: 48px 0; }

  h1 { font-size: 28px; }
  .hero { padding: 40px 0 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero .lead { font-size: 15px; }
  .hero-bullets li { font-size: 14px; }
  .hero-product-img { max-width: 100%; }

  .btn {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
    padding: 14px 20px;
    border-radius: 10px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .closing-actions {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
  .closing-actions .btn { max-width: 320px; }

  .section-head h2 { font-size: 24px; }
  .section-head p { font-size: 15px; }

  .authority-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .authority-card {
    padding: 20px;
    text-align: left;
    display: flex;
    gap: 14px;
    align-items: flex-start;
  }
  .authority-icon {
    margin-bottom: 0;
    flex-shrink: 0;
    margin-top: 2px;
  }

  .benefit-cards-row { gap: 10px; }
  .benefit-card {
    padding: 20px;
    text-align: left;
  }

  .offer-block-inner { padding: 20px; gap: 20px; }
  .offer-price { font-size: 40px; }
  .offer-price span { font-size: 20px; }

  .full-kit-callout { padding: 20px; }
  .full-kit-callout-copy strong { font-size: 17px; }

  .urgency-callout { padding: 24px; }
  .urgency-callout strong { font-size: 16px; }

  .deploy-card { padding: 24px 20px; }

  .lead-box { padding: 24px; }
  .lead-title { font-size: 24px; }
  .form-title { font-size: 20px; }
  .input {
    min-height: 52px;
    font-size: 16px;
  }

  .faq-item summary { font-size: 15px; padding: 16px 20px; }
  .faq-item p { padding: 0 20px 16px; font-size: 14px; }

  .closing { padding: 48px 0; }
  .closing-copy { font-size: 15px; }

  .pricing-title { font-size: 30px; }
  .pricing-panel { padding: 24px; }
  .checkout-title { font-size: 28px; }
  .price strong { font-size: 36px; }

  .footer { padding: 28px 0; }
  .footer-note { font-size: 13px; }
  .footer-brand-title { font-size: 14px; }
  .footer-badge { max-width: 80px; }

  .nav-inner { padding: 8px 0; }
  .nav-cta-btn {
    font-size: 12px;
    padding: 6px 12px;
    min-height: 32px;
  }
  .brand-badge,
  .brand-badge img {
    max-width: 140px;
  }

  .footer {
    padding-bottom: calc(28px + 68px + env(safe-area-inset-bottom, 0px));
  }

  .mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .mobile-sticky-bar.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .mobile-sticky-btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
  }

  .floating-cta {
    display: none !important;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }

  .offer-product { font-size: 13px; }
  .offer-value-list li { font-size: 13px; }

  .full-kit-callout .btn {
    width: 100%;
  }

  .kit-contents-list li strong { font-size: 14px; }
  .kit-contents-list li span { font-size: 13px; }

  .scene-img {
    border-radius: 8px;
  }
}

@media (max-width: 400px) {
  .container,
  .narrow { width: calc(100% - 16px); }
  h1 { font-size: 24px; }
  .hero { padding: 24px 0 20px; }
  .hero-subtitle { font-size: 14px; margin-bottom: 14px; }
  .hero .lead { font-size: 14px; margin-bottom: 18px; }
  .hero-bullets { margin-bottom: 20px; gap: 8px; }
  .hero-bullets li { font-size: 13px; padding-left: 20px; }
  .eyebrow { font-size: 11px; margin-bottom: 12px; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: 22px; }
  .section-head p { font-size: 14px; }
  section { padding: 40px 0; }
  .offer-price { font-size: 36px; }
  .offer-price span { font-size: 18px; }
  .btn { font-size: 14px; min-height: 46px; padding: 12px 16px; }
  .nav-cta-btn { font-size: 10px; padding: 5px 8px; min-height: 28px; border-radius: 6px; }
  .brand-badge, .brand-badge img { max-width: 110px; }
  .authority-card { padding: 16px; gap: 10px; }
  .authority-card h3 { font-size: 15px; }
  .authority-card p { font-size: 13px; }
  .benefit-card { padding: 16px; }
  .benefit-card h3 { font-size: 15px; }
  .benefit-card p { font-size: 13px; }
  .deploy-card { padding: 20px 16px; }
  .deploy-number { width: 32px; height: 32px; font-size: 14px; margin-bottom: 12px; }
  .deploy-card h3 { font-size: 16px; }
  .deploy-card p { font-size: 13px; }
  .trust-block { padding: 20px; }
  .trust-block h3 { font-size: 15px; }
  .trust-block p { font-size: 13px; }
  .lead-box { padding: 20px; }
  .lead-title { font-size: 22px; }
  .form-title { font-size: 18px; }
  .faq-item summary { font-size: 14px; padding: 14px 16px; }
  .faq-item p { font-size: 13px; padding: 0 16px 14px; }
  .closing { padding: 40px 0; }
  .closing-copy { font-size: 14px; }
  .closing-actions .btn { max-width: 100%; }
  .urgency-callout { padding: 20px; }
  .urgency-callout strong { font-size: 15px; }
  .urgency-callout p { font-size: 14px; }
  .full-kit-callout { padding: 16px; }
  .full-kit-callout-copy strong { font-size: 16px; }
  .full-kit-callout-copy p { font-size: 13px; }
  .offer-block-inner { padding: 16px; gap: 16px; }
  .offer-value-list li { font-size: 13px; padding-left: 20px; }
  .footer-note { font-size: 12px; }
  .footer-brand-title { font-size: 13px; }
  .footer-brand-sub { font-size: 11px; }
  .footer-badge { max-width: 70px; }
  .footer-links a { font-size: 13px; }
  .footer-bottom { font-size: 12px; }
  .mobile-sticky-btn { min-height: 46px; font-size: 14px; }
}
