/* =========================================================
   見積承認くん LP - Production-Grade Style
   Target: 整備工場オーナー (50-60代)、地方都市
   Philosophy: 信頼感・読みやすさ・力強さ・現代SaaS水準
   ========================================================= */

/* ---------- Reset / Variables ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  /* Brand */
  --primary: #1e3a8a;          /* Deep trustworthy blue */
  --primary-dark: #1e293b;
  --primary-light: #3b82f6;
  --accent: #ea580c;           /* Tool orange */
  --accent-dark: #c2410c;
  --accent-light: #fb923c;
  --line-green: #06c755;
  --sms-blue: #0ea5e9;

  /* Neutral */
  --text: #0f172a;
  --text-sub: #475569;
  --text-light: #94a3b8;
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --bg-soft-2: #f1f5f9;
  --bg-dark: #0c1828;
  --bg-darker: #060d1a;
  --border: #e2e8f0;
  --border-strong: #cbd5e1;

  /* Status */
  --success: #10b981;
  --danger: #ef4444;
  --warning: #f59e0b;

  /* Shadow */
  --shadow-xs: 0 1px 2px rgba(15,23,42,0.05);
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.08), 0 1px 2px rgba(15,23,42,0.05);
  --shadow: 0 4px 6px -1px rgba(15,23,42,0.10), 0 2px 4px -2px rgba(15,23,42,0.08);
  --shadow-md: 0 10px 15px -3px rgba(15,23,42,0.10), 0 4px 6px -4px rgba(15,23,42,0.08);
  --shadow-lg: 0 20px 25px -5px rgba(15,23,42,0.10), 0 8px 10px -6px rgba(15,23,42,0.10);
  --shadow-xl: 0 25px 50px -12px rgba(15,23,42,0.20);

  /* Border-radius */
  --r-sm: 6px;
  --r: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic Medium", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: 0.2s; }
a:hover { color: var(--accent); }
strong { font-weight: 700; color: var(--text); }
.section-dark strong { color: white; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Announcement Bar ---------- */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 10px 0;
  font-size: 14px;
  font-weight: 500;
}
.announcement-bar p {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.announcement-bar i { font-size: 14px; }
.announcement-bar a {
  color: white;
  text-decoration: underline;
  font-weight: 700;
}
.announcement-bar a:hover { color: rgba(255,255,255,0.85); }

/* ---------- Header ---------- */
.site-header {
  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(--border);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: var(--r);
  font-size: 18px;
  box-shadow: var(--shadow-sm);
}
.logo-suffix {
  color: var(--accent);
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav > a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
}
.nav > a:hover { color: var(--primary); }

.nav-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--bg-soft);
  border-radius: var(--r);
  border: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}
.nav-tel:hover { background: white; border-color: var(--primary); color: var(--primary); }
.nav-tel strong { font-size: 16px; color: var(--primary); }
.nav-tel small { color: var(--text-light); font-size: 11px; }

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--text);
  cursor: pointer;
}

@media (max-width: 1024px) {
  .nav-tel { display: none; }
}
@media (max-width: 900px) {
  .nav { display: none; }
  .nav.nav-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    align-items: stretch;
    gap: 12px;
  }
  .nav.nav-open > a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .mobile-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.btn i { font-size: 16px; }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.45);
  color: white;
}
.btn-outline {
  background: white;
  color: var(--primary);
  border-color: var(--border-strong);
}
.btn-outline:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: #fff7ed;
  color: var(--accent-dark);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost:hover {
  background: white;
  color: var(--primary);
  border-color: white;
}
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 17px 36px; font-size: 17px; }
.btn-xl { padding: 22px 44px; font-size: 19px; border-radius: var(--r-md); }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(234,88,12,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(30,58,138,0.05) 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 60px 0 70px; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: white;
  border: 2px solid var(--accent);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 13px;
  border-radius: 100px;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.badge i { font-size: 12px; }

.hero-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.32;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.025em;
}
.hero-title .emphasis {
  background: linear-gradient(transparent 65%, rgba(234,88,12,0.22) 65%);
}
.hero-title .big-num {
  color: var(--accent);
  font-size: 1.12em;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-sub);
  margin-bottom: 36px;
  line-height: 1.85;
}
.hero-sub strong { color: var(--primary); font-weight: 700; }

.hero-stats {
  display: flex;
  gap: 0;
  margin: 36px 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 22px 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-num {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.stat-num .arrow {
  display: inline-block;
  margin: 0 4px;
  color: var(--accent);
  font-size: 0.7em;
}
.stat-num .period {
  font-size: 0.6em;
  font-weight: 600;
  color: var(--text-light);
}
.stat-label {
  font-size: 12px;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.hero-note {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
}
.hero-note i {
  color: var(--success);
  margin-right: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
}
.hero-image {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 8/7;
  object-fit: contain;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  padding: 12px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.overlay-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  pointer-events: auto;
  transition: 0.3s;
}
.overlay-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}
.overlay-card-title {
  font-weight: 700;
  color: var(--text);
  font-size: 14px;
  line-height: 1.3;
}
.overlay-card-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 2px;
}
.overlay-card-1 {
  top: 8%;
  left: -8%;
  animation: float 6s ease-in-out infinite;
}
.overlay-card-2 {
  top: 45%;
  right: -10%;
  animation: float 6s ease-in-out infinite 2s;
}
.overlay-card-3 {
  bottom: 8%;
  left: -5%;
  animation: float 6s ease-in-out infinite 4s;
}
.overlay-card-3 i {
  background: linear-gradient(135deg, var(--success), #047857);
}
.overlay-card-2 i {
  background: linear-gradient(135deg, var(--sms-blue), #0369a1);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 900px) {
  .overlay-card-1, .overlay-card-2, .overlay-card-3 {
    position: relative;
    top: auto; bottom: auto; left: auto; right: auto;
    margin: 12px 0;
    animation: none;
  }
  .hero-overlay {
    position: relative;
    margin-top: 24px;
  }
}

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--bg-dark);
  color: white;
  padding: 50px 0;
}
.trust-bar-title {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 30px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .trust-items { grid-template-columns: repeat(2, 1fr); }
}
.trust-item {
  text-align: center;
  padding: 0 16px;
}
.trust-num {
  font-size: clamp(24px, 3.2vw, 38px);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.trust-text {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}
.trust-text strong { color: white; }

/* ---------- Sections ---------- */
.section { padding: 100px 0; }
.section-light { background: var(--bg-soft); }
.section-dark {
  background: var(--bg-dark);
  color: white;
}
.section-dark .section-title { color: white; }
.section-dark .section-lead { color: rgba(255,255,255,0.78); }
.section-dark p { color: rgba(255,255,255,0.85); }

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  /* Prevent orphaned trailing chars like "ます" / "です" hanging on a new line */
  text-wrap: balance;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.section-lead {
  font-size: 18px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ---------- Problem ---------- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: white;
  padding: 36px;
  border-radius: var(--r-lg);
  border-left: 5px solid var(--danger);
  box-shadow: var(--shadow-sm);
  transition: 0.25s;
}
.problem-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.problem-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(239, 68, 68, 0.1);
  color: var(--danger);
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 16px;
}
.problem-title {
  font-size: 21px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
}
.problem-text {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.85;
}

.problem-conclusion {
  text-align: center;
  padding: 48px 32px;
  background: linear-gradient(135deg, #fff7ed, #ffe4c4);
  border-radius: var(--r-lg);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.7;
  color: var(--text);
  border: 2px solid var(--accent-light);
}
.conclusion-emphasis {
  display: block;
  margin-top: 8px;
  color: var(--accent-dark);
  font-size: 1.2em;
  font-weight: 900;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.step-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(234,88,12,0.5);
}
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(234,88,12,0.15);
  color: var(--accent-light);
  border-radius: 50%;
  font-size: 32px;
  margin: 16px auto 20px;
}
.step-title {
  font-size: 22px;
  font-weight: 800;
  color: white;
  margin-bottom: 12px;
}
.step-text {
  font-size: 15px;
  line-height: 1.85;
  color: rgba(255,255,255,0.85);
  flex: 1;
  margin-bottom: 24px;
}
.step-note {
  display: block;
  margin-top: 12px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
}
.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--accent);
  font-weight: 900;
}
@media (max-width: 900px) {
  .step-arrow { transform: rotate(90deg); padding: 0; }
}

/* Step Screenshots */
.step-screenshot {
  margin-top: auto;
}
.screenshot-mock {
  background: white;
  border-radius: var(--r);
  padding: 14px;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  color: var(--text);
  font-size: 13px;
}
.mock-header {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mock-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}
.mock-photo {
  aspect-ratio: 1;
  background: var(--bg-soft-2);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 18px;
}
.mock-input {
  display: flex;
  justify-content: space-between;
  padding: 8px 10px;
  background: var(--bg-soft);
  border-radius: var(--r-sm);
  margin-bottom: 4px;
  font-size: 12px;
}
.mock-input span {
  font-weight: 700;
  color: var(--text);
}
.screenshot-sms {
  background: var(--sms-blue);
  color: white;
  padding: 12px;
}
.sms-header {
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 8px;
  opacity: 0.9;
}
.sms-body {
  font-size: 12px;
  line-height: 1.5;
}
.sms-body a {
  color: #fef3c7;
  text-decoration: underline;
  word-break: break-all;
}
.screenshot-approve {
  padding: 12px;
}
.approve-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}
.approve-photo {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #cbd5e1, #94a3b8);
  border-radius: var(--r-sm);
}
.approve-summary {
  text-align: right;
  font-weight: 700;
  font-size: 13px;
  margin: 8px 0;
  color: var(--text);
}
.approve-btn {
  width: 100%;
  background: var(--success);
  color: white;
  border: none;
  padding: 10px;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* ---------- Comparison ---------- */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .comparison { grid-template-columns: 1fr; }
}
.compare-col {
  padding: 36px;
  border-radius: var(--r-lg);
  position: relative;
}
.compare-old {
  background: white;
  border: 2px solid var(--border);
}
.compare-new {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: var(--shadow-lg);
}
.compare-tag-old, .compare-tag-new {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}
.compare-tag-old {
  background: var(--bg-soft-2);
  color: var(--text-sub);
}
.compare-tag-new {
  background: var(--accent);
  color: white;
}
.compare-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.compare-title i { font-size: 24px; }
.compare-old .compare-title { color: var(--danger); }
.compare-new .compare-title { color: white; }
.compare-col ul { list-style: none; }
.compare-col ul li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.7;
  display: flex;
  align-items: center;
  gap: 8px;
}
.compare-new ul li {
  border-bottom: 1px solid rgba(255,255,255,0.15);
  color: white;
}
.compare-new ul li strong,
.compare-new strong {
  color: white;
}
.compare-bad, .compare-good {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.compare-bad {
  background: var(--danger);
  color: white;
}
.compare-good {
  background: var(--success);
  color: white;
}
.compare-result {
  margin-top: 28px;
  padding: 28px;
  background: rgba(234,88,12,0.22);
  border: 2px solid var(--accent);
  border-radius: var(--r-md);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}
.big-money {
  display: block;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  color: #ffffff;
  margin-top: 8px;
  text-shadow: 0 2px 8px rgba(234,88,12,0.6), 0 4px 16px rgba(0,0,0,0.5);
  letter-spacing: -0.02em;
}

/* ---------- Product Tour ---------- */
.section-tour { background: white; }
.tour-grid { display: flex; flex-direction: column; gap: 80px; }
.tour-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.tour-card-reverse { direction: rtl; }
.tour-card-reverse > * { direction: ltr; }
@media (max-width: 900px) {
  .tour-card, .tour-card-reverse { display: flex; flex-direction: column; gap: 32px; }
}
.tour-image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}
.tour-card-reverse .tour-image {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}
.tour-image img {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: contain;
  display: block;
}
.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(234,88,12,0.12);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  border-radius: 100px;
  margin-bottom: 20px;
}
.tour-badge-alt {
  background: rgba(30, 58, 138, 0.10);
  color: var(--primary);
}
.tour-content h3 {
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 900;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.tour-list {
  list-style: none;
}
.tour-list li {
  padding: 12px 0;
  font-size: 16px;
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.7;
}
.tour-list li i {
  color: var(--success);
  margin-top: 6px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---------- Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 32px 26px;
  border-radius: var(--r-md);
  transition: 0.25s;
}
.feature:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(234,88,12,0.25), rgba(234,88,12,0.10));
  color: var(--accent-light);
  border-radius: var(--r);
  font-size: 22px;
  margin-bottom: 16px;
}
.feature h3 {
  font-size: 17px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  line-height: 1.4;
}
.feature p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}
.feature-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10px;
  background: var(--accent);
  color: white;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 700;
}

/* ---------- ROI ---------- */
.section-roi {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
}
.roi-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 50px 0;
  flex-wrap: wrap;
}
.roi-box {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: white;
  padding: 40px 32px;
  border-radius: var(--r-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.roi-result {
  border: 3px solid var(--accent);
  background: linear-gradient(180deg, white 0%, #fff7ed 100%);
}
.roi-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.roi-value {
  font-size: clamp(34px, 4.2vw, 48px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.025em;
}
.roi-result .roi-value { color: var(--accent-dark); }
.roi-detail {
  font-size: 13px;
  color: var(--text-light);
}
.roi-arrow {
  font-size: 28px;
  color: var(--accent);
}
.roi-breakdown {
  background: white;
  padding: 36px;
  border-radius: var(--r-lg);
  max-width: 720px;
  margin: 40px auto 0;
  box-shadow: var(--shadow);
}
.roi-breakdown h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 10px;
}
.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-sub);
}
.breakdown-row span:last-child {
  font-weight: 700;
  color: var(--text);
}
.breakdown-total {
  border-bottom: none;
  border-top: 3px solid var(--accent);
  padding-top: 20px;
  margin-top: 8px;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent-dark);
}
.breakdown-total span:last-child {
  color: var(--accent-dark);
  font-size: 24px;
}
.roi-disclaimer {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 24px;
}

/* ---------- Testimonial ---------- */
.section-testimonial {
  background: linear-gradient(180deg, var(--bg-soft) 0%, white 100%);
}
.testimonial-card {
  position: relative;
  background: white;
  padding: 56px 48px;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  max-width: 820px;
  margin: 0 auto 60px;
  border-top: 6px solid var(--accent);
}
.testimonial-icon {
  position: absolute;
  top: -28px;
  left: 40px;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  box-shadow: 0 6px 16px rgba(234,88,12,0.4);
}
.testimonial-quote {
  font-size: 19px;
  line-height: 1.95;
  color: var(--text);
  margin-bottom: 32px;
  font-weight: 500;
  margin-top: 10px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-soft);
  flex-shrink: 0;
}
.testimonial-name {
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
}
.testimonial-title {
  font-size: 14px;
  color: var(--text-sub);
  margin: 4px 0;
}
.testimonial-source {
  font-size: 12px;
  color: var(--text-light);
}

.autoleap-stats {
  background: linear-gradient(135deg, var(--bg-dark), var(--bg-darker));
  color: white;
  padding: 56px 48px;
  border-radius: var(--r-xl);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.autoleap-stats h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 36px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.autoleap-stats h3 i { color: #fbbf24; }
.autoleap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .autoleap-grid { grid-template-columns: repeat(2, 1fr); }
}
.autoleap-stat { padding: 16px; }
.autoleap-num {
  font-size: clamp(28px, 3.6vw, 42px);
  font-weight: 900;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.autoleap-label {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.6;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 28px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto 28px;
  }
}
.pricing-card {
  background: white;
  padding: 40px 30px;
  border-radius: var(--r-lg);
  border: 2px solid var(--border);
  text-align: center;
  position: relative;
  transition: 0.25s;
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pricing-popular {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(234,88,12,0.20);
  transform: scale(1.04);
}
@media (max-width: 900px) {
  .pricing-popular { transform: none; }
}
.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: white;
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(234,88,12,0.45);
}
.pricing-name {
  font-size: 22px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}
.pricing-target {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 28px;
}
.pricing-price { margin: 28px 0; }
.price-currency {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  vertical-align: top;
  position: relative;
  top: 12px;
}
.price-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.03em;
}
.price-period {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}
.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  flex: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-sub);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.pricing-features li i {
  color: var(--success);
  margin-top: 4px;
  font-size: 13px;
  flex-shrink: 0;
}
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-sub);
  margin-top: 24px;
  line-height: 1.85;
  background: white;
  padding: 24px;
  border-radius: var(--r-md);
  border: 2px dashed var(--accent);
}
.pricing-note i { color: var(--accent); margin-right: 6px; }

/* ---------- Security & Support ---------- */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .security-grid { grid-template-columns: 1fr; }
}
.security-card {
  background: white;
  padding: 36px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: 0.25s;
}
.security-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}
.security-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border-radius: 50%;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}
.security-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.security-card p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.85;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: 14px;
  padding: 24px 28px;
  transition: 0.2s;
  box-shadow: var(--shadow-xs);
}
.faq-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-item summary {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 36px;
  line-height: 1.5;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: 300;
  color: var(--primary);
  transition: 0.2s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item p {
  margin-top: 16px;
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.95;
}
.faq-item p strong { color: var(--primary); }

/* ---------- CTA ---------- */
.section-cta {
  background:
    radial-gradient(ellipse at top, rgba(255,255,255,0.1) 0%, transparent 70%),
    linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  text-align: center;
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(234,88,12,0.15) 0%, transparent 50%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 0.9; }
}
.cta-title {
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: -0.02em;
}
.cta-sub {
  font-size: 18px;
  margin-bottom: 44px;
  opacity: 0.95;
  line-height: 1.85;
  position: relative;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
}
.cta-microtrust {
  font-size: 14px;
  opacity: 0.9;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-microtrust i { color: var(--accent-light); margin-right: 4px; }
.cta-resources {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.resource-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 4px;
  transition: 0.2s;
}
.resource-link:hover {
  color: var(--accent-light);
  border-bottom-color: var(--accent-light);
}

/* ---------- Beta / Early Adopter Section ---------- */
.section-beta {
  background: linear-gradient(135deg, #1f2937 0%, #0c1828 100%);
  color: white;
  position: relative;
}
.section-beta .section-title { color: white; }
.section-beta .section-lead { color: rgba(255,255,255,0.85); }
.section-beta .section-tag { color: var(--accent-light); }
.beta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .beta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .beta-grid { grid-template-columns: 1fr; }
}
.beta-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 28px 24px;
  border-radius: var(--r-md);
  transition: 0.25s;
}
.beta-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  transform: translateY(-3px);
}
.beta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  border-radius: var(--r);
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(234,88,12,0.4);
}
.beta-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}
.beta-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
}
.beta-note {
  text-align: center;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  background: rgba(234,88,12,0.10);
  border: 1px solid rgba(234,88,12,0.30);
  padding: 24px;
  border-radius: var(--r-md);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.85;
}
.beta-note i {
  color: var(--accent-light);
  margin-right: 8px;
}

/* ---------- Hero stats period text ---------- */
.stat-num small {
  font-size: 0.5em;
  font-weight: 700;
  color: var(--text-light);
  margin-left: 2px;
}
.stat-label small {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  font-weight: 500;
  margin-top: 2px;
}

/* ---------- Trust bar item small ---------- */
.trust-text small {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.trust-num small {
  font-size: 0.55em;
  font-weight: 700;
  margin-left: 2px;
}

/* ---------- Compare result small ---------- */
.compare-result small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  margin-top: 8px;
}

/* ---------- Hero image styling (no overlay needed) ---------- */
.hero-image {
  width: 100%;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 8/7;
  object-fit: contain;
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

/* =============================================================
   App Mockups (CSS-built phone screens with real photos)
   ============================================================= */

/* Hero mockups: 2 phones side by side with arrow */
.hero-mockups {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
}
@media (max-width: 1024px) {
  .hero-mockups { flex-direction: column; gap: 20px; }
}

/* ---------- Phone shell ---------- */
.phone {
  position: relative;
  width: 240px;
  background: #1f2937;
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 25px 60px -15px rgba(15,23,42,0.45),
              0 0 0 1px rgba(15,23,42,0.05);
  flex-shrink: 0;
}
.phone-large {
  width: 300px;
}
.phone-screen {
  background: #ffffff;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 18px;
  background: #1f2937;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.phone-homebar {
  height: 6px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 0;
}
.phone-homebar::after {
  content: "";
  width: 36%;
  height: 4px;
  background: #1f2937;
  border-radius: 2px;
}

/* ---------- App status bar ---------- */
.app-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 22px 6px;
  font-size: 11px;
  font-weight: 700;
  color: #1f2937;
  font-family: -apple-system, "SF Pro Display", "Inter", sans-serif;
}
.app-statusbar i {
  font-size: 9px;
  margin-left: 3px;
}

/* ---------- App header (orange brand bar) ---------- */
.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 800;
  color: white;
}
.app-header-orange {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.app-header i { font-size: 14px; }

/* ---------- Browser bar (for customer page) ---------- */
.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #e5e7eb;
  font-size: 11px;
  color: var(--text-sub);
  font-family: ui-monospace, "SF Mono", monospace;
}
.browser-bar i {
  font-size: 10px;
  color: #10b981;
}

/* ---------- App body ---------- */
.app-body {
  padding: 14px 16px;
  flex: 1;
  font-size: 12px;
  color: var(--text);
  background: #f8fafc;
}
.app-section-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

/* ---------- Photo grid (mechanic app) ---------- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.photo-thumb {
  aspect-ratio: 1;
  width: 100%;
  border-radius: 6px;
  object-fit: cover;
  background: var(--bg-soft-2);
}
.photo-add {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border: 1.5px dashed var(--accent);
  color: var(--accent);
  font-size: 16px;
}

/* ---------- Quote rows ---------- */
.quote-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 11px;
  color: var(--text-sub);
}
.quote-amount {
  font-weight: 700;
  color: var(--text);
}
.quote-total {
  display: flex;
  justify-content: space-between;
  padding: 9px 0 4px;
  margin-top: 4px;
  border-top: 1.5px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}
.quote-total-highlight {
  color: var(--accent-dark);
  border-top: 2px solid var(--accent);
}
.quote-total-highlight span:last-child { font-size: 16px; }

/* ---------- App buttons ---------- */
.app-send-btn {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
}
.app-approve-btn {
  width: 100%;
  margin-top: 10px;
  padding: 11px;
  background: linear-gradient(90deg, #10b981, #059669);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 10px rgba(16,185,129,0.3);
}
.app-secondary-btn {
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  background: transparent;
  color: var(--text-sub);
  border: none;
  font-size: 11px;
  cursor: pointer;
  font-family: inherit;
}

/* ---------- Hero arrow ---------- */
.hero-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--accent);
}
.arrow-label {
  font-size: 12px;
  font-weight: 700;
  background: white;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
  border: 1px solid var(--border);
}
.hero-arrow i {
  font-size: 28px;
  font-weight: 900;
}
@media (max-width: 1024px) {
  .hero-arrow i { transform: rotate(90deg); }
}

/* ---------- Customer approve screen ---------- */
.approve-shop {
  background: white;
  padding: 10px 12px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  color: var(--primary);
  margin-bottom: 12px;
  border-left: 3px solid var(--accent);
  display: flex;
  align-items: center;
  gap: 6px;
}
.approve-shop i { color: var(--accent); }
.approve-photo-main {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--bg-soft-2);
}
.approve-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-counter {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0,0,0,0.65);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.photo-thumbs-row {
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
}
.photo-thumbs-row img {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  object-fit: cover;
}
.photo-thumb-more {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background: var(--bg-soft-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-sub);
}
.approve-summary {
  background: white;
  padding: 4px 12px 8px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ---------- Tour mockup (case list version) ---------- */
.case-card {
  background: white;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.case-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.case-meta strong { font-size: 12px; color: var(--text); }
.case-status {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}
.case-status-pending {
  background: #fef3c7;
  color: #b45309;
}
.case-status-approved {
  background: #dcfce7;
  color: #15803d;
}
.case-status-draft {
  background: #f1f5f9;
  color: var(--text-sub);
}
.case-car {
  font-size: 10.5px;
  color: var(--text-sub);
}
.app-fab {
  position: absolute;
  bottom: 26px;
  right: 16px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: white;
  border: none;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(234,88,12,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Tour image mockup container ---------- */
.tour-image-mockup {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  min-height: 480px;
}
.tour-image-customer {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
}

/* ---------- Hero visual layout ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 560px;
}

/* =============================================================
   Modal (Demo Form)
   ============================================================= */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  padding: 20px;
}
.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: white;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 720px;
  max-height: 92vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 80px rgba(0,0,0,0.35);
  transform: translateY(20px);
  transition: transform 0.25s;
}
.modal-overlay.is-open .modal {
  transform: translateY(0);
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}
.modal-header h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 4px;
}
.modal-subtitle {
  font-size: 13px;
  color: var(--text-sub);
  margin: 0;
  line-height: 1.6;
}
.modal-close {
  width: 36px;
  height: 36px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 16px;
  color: var(--text-sub);
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.modal-close:hover {
  background: var(--text-sub);
  color: white;
  border-color: var(--text-sub);
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}
.modal-body iframe {
  display: block;
  width: 100%;
  border: none;
}

/* =============================================================
   Inline CTA banners (sprinkled across sections)
   ============================================================= */
.inline-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.inline-cta p {
  font-size: 16px;
  color: var(--text-sub);
  margin-bottom: 20px;
}
.inline-cta-dark {
  border-top-color: rgba(255,255,255,0.15);
}
.inline-cta-dark p {
  color: rgba(255,255,255,0.85);
}

.section-dark .inline-cta {
  border-top-color: rgba(255,255,255,0.15);
}
.section-dark .inline-cta p {
  color: rgba(255,255,255,0.85);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-darker);
  color: white;
  padding: 70px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
}
.site-footer .logo {
  color: white;
  margin-bottom: 14px;
}
.footer-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 12px 0 20px;
  line-height: 1.85;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  transition: 0.2s;
}
.footer-social a:hover {
  background: var(--accent);
  color: white;
}
.footer-col h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: white;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
  padding: 7px 0;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.footer-col ul li a {
  color: rgba(255,255,255,0.65);
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
}
.footer-disclaimer {
  margin-top: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ---------- Responsive helpers ---------- */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .section { padding: 70px 0; }
  .hero { padding: 50px 0 60px; }
}
