/* ============================================
   GLOBAL STYLES (shared by both pages)
   ============================================ */
*{box-sizing:border-box}
body{margin:0;font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,'Helvetica Neue',Arial,sans-serif;color:#333;line-height:1.6;background:#fff}
.container{max-width:1200px;margin:0 auto;padding:0 20px}
h1,h2,h3{color:#1e293b}
a{color:#2563eb}

/* Nav */
.nav{background:#fff;box-shadow:0 2px 10px rgba(0,0,0,.1);position:sticky;top:0;z-index:1000;padding:10px 0}
.nav-content{display:flex;justify-content:space-between;align-items:center}
.logo{display:flex;align-items:center;gap:12px;text-decoration:none}
.logo-img{height:120px;width:auto;display:block}
.nav-links{display:flex;gap:30px;align-items:center}
.nav-links a{text-decoration:none;color:#333;font-weight:500;transition:color .3s}
.nav-links a:hover{color:#2563eb}
.nav-cta{background:#2563eb;color:#fff !important;padding:10px 25px;border-radius:5px;transition:background .3s}
.nav-cta:hover{background:#1d4ed8}

/* Nav Dark Theme */
.nav-dark{background:#0f1829;box-shadow:0 2px 20px rgba(0,0,0,.4);border-bottom:1px solid #1f2a44}
.nav-dark .nav-links a{color:#e7edf7;font-weight:500}
.nav-dark .nav-links a:hover{color:#7cc4ff}
.nav-dark .nav-cta{background:linear-gradient(135deg,#2563eb 0%,#1e40af 100%);color:#fff !important;padding:10px 25px;border-radius:8px;transition:all .3s;box-shadow:0 4px 15px rgba(37,99,235,.3)}
.nav-dark .nav-cta:hover{background:linear-gradient(135deg,#1d4ed8 0%,#1e3a8a 100%);transform:translateY(-2px);box-shadow:0 6px 20px rgba(37,99,235,.4)}

/* Footer */
.footer{background:#1e293b;color:#fff;padding:40px 0;text-align:center;margin-top:60px}
.footer-links{display:flex;justify-content:center;gap:30px;margin-bottom:20px}
.footer-links a{color:#94a3b8;text-decoration:none;transition:color .3s}
.footer-links a:hover{color:#fff}

/* Footer Dark Theme */
.footer-dark{background:#0a0f1c;color:#e7edf7;border-top:1px solid #1f2a44}
.footer-dark .footer-links a{color:#9db0d1;transition:color .3s}
.footer-dark .footer-links a:hover{color:#7cc4ff}

/* ============================================
   ORIGINAL STYLES (for calculator page)
   ============================================ */

/* Hero + CTA styles reused */
.hero{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:80px 0;text-align:center}

/* ✅ Ensure hero headline + subtitle stay white */
.hero h1 { color: #fff; }
.hero .subtitle { color: #fff; }

.cta-phone{display:inline-block;background:#fff;color:#667eea;padding:14px 30px;font-size:18px;font-weight:700;text-decoration:none;border-radius:8px;transition:transform .3s,box-shadow .3s;box-shadow:0 4px 15px rgba(0,0,0,.2);margin:10px}
.cta-phone:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(0,0,0,.3)}
.urgency-badge{background:#ef4444;color:#fff;display:inline-block;padding:10px 20px;border-radius:30px;font-weight:700;margin:10px 0 20px}

/* Content wrappers */
.main-wrap{max-width:900px;margin:0 auto;padding:32px 20px}
.card{background:#fff;border:1px solid #e5e7eb;border-radius:12px;box-shadow:0 2px 8px rgba(0,0,0,0.04);padding:20px}

/* Trust badges */
.trust-badges{margin-top:40px;display:flex;justify-content:center;gap:40px;flex-wrap:wrap;opacity:.9}
.trust-badge{display:flex;align-items:center;gap:10px;font-size:14px}

/* Comparison Section */
.comparison{background:#fff;padding:80px 0}
.comparison h2{text-align:center;font-size:40px;margin-bottom:60px;color:#1e293b}
.comparison-grid{display:grid;grid-template-columns:1fr 1fr;gap:40px}
.comparison-card{padding:40px;border-radius:20px}
.comparison-card.before{background:#fef2f2;border:3px solid #ef4444}
.comparison-card.after{background:#f0fdf4;border:3px solid #22c55e}
.comparison-card h3{font-size:28px;margin-bottom:30px;text-align:center}
.comparison-card.before h3{color:#dc2626}
.comparison-card.after h3{color:#16a34a}
.workflow-step{background:#fff;padding:20px;margin:15px 0;border-radius:10px;border-left:4px solid #2563eb}
.workflow-step strong{display:block;margin-bottom:10px;color:#2563eb}

/* Competitive Section */
.competitive{background:#f8fafc;padding:80px 0}
.competitive h2{text-align:center;font-size:40px;margin-bottom:30px;color:#1e293b}
.competitive-content{max-width:900px;margin:0 auto;background:#fff;padding:50px;border-radius:20px;box-shadow:0 4px 6px rgba(0,0,0,0.1)}
.competitive-scenario{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:40px;border-radius:15px;margin:30px 0}
.competitive-scenario h3{font-size:24px;margin-bottom:20px}
.scenario-step{padding:15px;margin:10px 0;background:rgba(255,255,255,0.1);border-radius:8px}

/* Demo Section */
.demo-section{background:#fff;padding:80px 0;text-align:center}
.demo-section h2{font-size:40px;margin-bottom:20px;color:#1e293b}
.demo-box{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:60px;border-radius:20px;margin:40px auto;max-width:700px}
.demo-box h3{font-size:28px;margin-bottom:20px}
.demo-box p{font-size:18px;margin-bottom:30px;opacity:.95}

/* Pain Points */
.pain-points{background:#f8fafc;padding:80px 0}
.pain-points h2{text-align:center;font-size:40px;margin-bottom:60px;color:#1e293b}
.pain-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px}
.pain-card{background:#fff;padding:35px;border-radius:15px;border-left:5px solid #ef4444;box-shadow:0 4px 6px rgba(0,0,0,0.1)}
.pain-card h3{color:#dc2626;margin-bottom:15px;font-size:22px}
.pain-card .solution{margin-top:20px;padding-top:20px;border-top:2px solid #e2e8f0}
.pain-card .solution strong{color:#16a34a;display:block;margin-bottom:10px}

/* Integration Section */
.integration{background:#fff;padding:80px 0}
.integration h2{text-align:center;font-size:40px;margin-bottom:20px;color:#1e293b}
.integration-subtitle{text-align:center;font-size:18px;color:#64748b;margin-bottom:50px;max-width:800px;margin-left:auto;margin-right:auto}
.software-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.software-card{padding:25px;background:#f8fafc;border-radius:10px;text-align:center;border:2px solid #e2e8f0;transition:all .3s}
.software-card:hover{border-color:#2563eb;transform:translateY(-3px);box-shadow:0 4px 12px rgba(37,99,235,.15)}
.software-name{color:#2563eb;font-weight:700;font-size:16px;display:block;margin-bottom:8px}
.software-type{color:#64748b;font-size:14px}

/* Pricing */
.pricing{background:#f8fafc;padding:80px 0;text-align:center}
.pricing h2{font-size:40px;margin-bottom:20px;color:#1e293b}
.pricing-subtitle{font-size:18px;color:#64748b;margin-bottom:50px}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:30px}
.pricing-tier{background:#fff;border:2px solid #e2e8f0;border-radius:20px;padding:40px;transition:all .3s;position:relative}
.pricing-tier:hover{border-color:#2563eb;transform:translateY(-5px);box-shadow:0 10px 30px rgba(37,99,235,.2)}
.pricing-tier.recommended{border:3px solid #2563eb;box-shadow:0 10px 40px rgba(37,99,235,.2)}
.recommended-badge{background:#2563eb;color:#fff;padding:5px 20px;border-radius:20px;font-size:12px;font-weight:700;position:absolute;top:-15px;left:50%;transform:translateX(-50%)}
.tier-name{font-size:24px;font-weight:700;color:#1e293b;margin-bottom:10px}
.tier-description{color:#64748b;font-size:14px;margin-bottom:20px}
.tier-price{font-size:40px;color:#2563eb;font-weight:700;margin:20px 0}
.tier-setup{color:#64748b;font-size:14px;margin-bottom:20px}

/* FAQ */
.faq{background:#fff;padding:80px 0}
.faq h2{text-align:center;font-size:40px;margin-bottom:60px;color:#1e293b}
.faq-container{max-width:800px;margin:0 auto}
.faq-item{margin-bottom:20px;border:1px solid #e2e8f0;border-radius:8px;overflow:hidden}
.faq-question{background:#f8fafc;padding:20px;cursor:pointer;display:flex;justify-content:space-between;align-items:center;font-weight:600;color:#1e293b;transition:background .3s}
.faq-question:hover{background:#e2e8f0}
.faq-icon{font-size:24px;color:#2563eb;transition:transform .3s}
.faq-icon.active{transform:rotate(45deg)}
.faq-answer{padding:0 20px;max-height:0;overflow:hidden;transition:max-height .3s,padding .3s;color:#475569;line-height:1.8}
.faq-answer.active{padding:20px;max-height:500px}

/* Final CTA */
.final-cta{background:linear-gradient(135deg,#667eea 0%,#764ba2 100%);color:#fff;padding:80px 0;text-align:center}
.final-cta h2{font-size:36px;margin-bottom:20px}
.final-cta .subtitle{font-size:20px;margin-bottom:30px;opacity:.95}
.urgency{background:#ef4444;color:#fff;padding:15px 30px;border-radius:50px;font-weight:700;margin:20px 0;display:inline-block}

/* Sticky CTA */
.sticky-cta{position:fixed;bottom:20px;right:20px;background:#2563eb;color:#fff;padding:15px 30px;border-radius:50px;text-decoration:none;font-weight:700;box-shadow:0 4px 15px rgba(37,99,235,.4);transition:transform .3s,opacity .3s;z-index:999;opacity:0}
.sticky-cta.visible{opacity:1}
.sticky-cta:hover{transform:scale(1.05)}

/* Agent differentiator section (from earlier suggestions) */
.agent-diff{background:#f8fafc;padding:60px 0}
.agent-diff .wrap{max-width:1000px;margin:0 auto}
.pill-points{display:flex;flex-wrap:wrap;gap:10px;margin-top:20px}
.pill{background:#fff;border:1px solid #e2e8f0;border-radius:999px;padding:10px 14px;font-weight:500}

/* Video section */
.video-section{background:#fff;padding:60px 0;text-align:center}

/* Mobile adjustments */
@media (max-width:768px){
  .hero h1{font-size:32px}
  .hero .subtitle{font-size:18px}
  .comparison-grid{grid-template-columns:1fr}
  .nav-links{display:none}
  .sticky-cta{bottom:10px;right:10px;font-size:14px;padding:12px 20px}
  .pain-grid{grid-template-columns:1fr}
  .software-grid{grid-template-columns:repeat(auto-fit,minmax(150px,1fr))}
  .pricing-grid{grid-template-columns:1fr}
}

/* ==== Vet-Automation Utilities (homepage) ==== */
.va-section{padding:80px 0}
.va-section--light{background:#f8fafc}
.va-section--dark{
  background:linear-gradient(180deg,#5b61f6 0%, #6a38bd 100%);
  color:#fff
}
.va-container{max-width:1120px;margin:0 auto;padding:0 20px}
.va-center{text-align:center}
.va-title{font-size:42px;line-height:1.15;font-weight:800;margin:0 0 14px;color:#0f172a}
.va-subtitle{font-size:18px;color:#64748b;margin:0 0 22px}
.va-lead{font-size:18px;color:#64748b;max-width:820px;margin:0 auto 28px}
.va-text-white{color:#fff}
.va-text-white-80{color:rgba(255,255,255,.85)}
.va-muted{color:#334155}
.va-kicker{font-weight:700;color:#334155;margin:0 0 8px}
.va-price{font-size:34px;font-weight:800;color:#0f172a;margin:10px 0 14px}

.va-grid-2{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.va-grid-3{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px}
@media (max-width:960px){.va-grid-2,.va-grid-3{grid-template-columns:1fr}}

.va-card{background:#fff;border:1px solid #e5e7eb;border-radius:16px;padding:22px}
.va-card--tinted{background:#f1f5f9}
.va-list{padding-left:18px;margin:10px 0 0}
.va-list li{margin:8px 0;color:#334155}

.va-badge-row{display:flex;flex-wrap:wrap;gap:18px;justify-content:center;margin-top:18px}
.va-badge{background:#eef2ff;color:#3730a3;border:1px solid #c7d2fe;padding:8px 12px;border-radius:999px;font-size:14px}

.va-btn-row{display:flex;gap:12px;justify-content:center;align-items:center;margin-top:14px}
.va-btn{display:inline-block;border-radius:10px;padding:12px 16px;font-weight:600;border:1px solid #cbd5e1;background:#fff;color:#0f172a;text-decoration:none}
.va-btn--primary{background:#2563eb;color:#fff;border-color:#1d4ed8}
.va-btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.35)}
.va-center .va-btn--primary{color:#fff}

/* Responsive video embed */
.va-video{position:relative;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:16px;box-shadow:0 4px 16px rgba(0,0,0,.15);margin-top:24px}
.va-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:16px}

/* Vertical spacing helper */
.va-stack-24 > * + *{margin-top:24px}
/* ---------- YouTube placeholder styles ---------- */
.va-video--placeholder {
  position: relative;
  background: radial-gradient(120% 120% at 10% 0%, #0f172a 0%, #1f2937 60%, #111827 100%);
  border: 1px solid #111827;
}
.va-video--placeholder .va-video-content{
  position:absolute; inset:0;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  gap:14px; text-align:center; padding:24px;
}
.va-video--placeholder .va-play{
  width:76px; height:76px;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
}
.va-video--placeholder .va-play circle{ fill:#0ea5e9; }
.va-video--placeholder .va-play polygon{ fill:#fff; }
.va-video--placeholder .va-video-title{
  color:#fff; font-weight:800; font-size:22px;
}
.va-video--placeholder .va-video-sub{
  color:rgba(255,255,255,.85); font-size:16px; margin-bottom:6px;
}

/* ---------- Responsive/nav/grid polish ---------- */
/* Let the header links wrap neatly on smaller screens */
.nav .nav-content{ display:flex; flex-wrap:wrap; align-items:center; gap:12px; }
.nav .nav-links{ display:flex; flex-wrap:wrap; gap:12px; }

/* Tighten container padding on small screens */
@media (max-width: 1024px){
  .va-container{ padding:0 16px; }
}

/* Tablet and below */
@media (max-width: 900px){
  .va-title{ font-size:36px; }
  .va-grid-3{ grid-template-columns:1fr 1fr; }
  .va-badge-row{ gap:12px; }
}

@media (max-width: 768px){
  .va-title{ font-size:32px; }
  .va-lead, .va-subtitle{ font-size:16px; }
  .va-grid-2, .va-grid-3{ grid-template-columns:1fr; }
  .va-section{ padding:64px 0; }
  .va-btn-row{ flex-direction:column; align-items:stretch; }
  .va-btn-row .va-btn{ text-align:center; }
  .va-video{ margin-top:18px; }
}

/* Small phones */
@media (max-width: 480px){
  .va-title{ font-size:28px; }
  .va-badge{ font-size:13px; padding:7px 10px; }
}

/* === Added by ChatGPT (heading color fixes on dark backgrounds) === */
.competitive-scenario h3 { color: #fff; }        /* "The Scenario: Pet Gets Sick at 8 PM" */
.demo-box h3 { color: #fff; }                    /* "Call the AI Right Now / Call the AI Demo" */
.pricing .dark-card h3,
.pricing .dark-card h2 { color:#fff; }

/* Utility to force white text when needed */
.va-text-white { color:#fff !important; }
.dark-card { color:#fff; } /* helper class for dark panels */


/* ============================================
   NEW V2 STYLES (for landing page only)
   Dark Navy Theme - Calculator Inspired
   ============================================ */

/* Landing page body identifier */
.landing-page {
  background: #0b1220;
  color: #e7edf7;
}

/* Section Utilities */
.section-title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #e7edf7;
  margin: 0 0 16px;
  text-align: center;
  line-height: 1.2;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: #9db0d1;
  margin: 0 auto 50px;
  text-align: center;
  max-width: 900px;
}

/* Button System */
.btn-v2 {
  display: inline-block;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-v2.large {
  padding: 18px 36px;
  font-size: 18px;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.btn-primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #7cc4ff;
  border-color: #1f2a44;
}

.btn-secondary:hover {
  background: #1f2a44;
  border-color: #2563eb;
  color: #fff;
}

.cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 30px 0;
}

/* Hero Section V2 */
.hero-v2 {
  background: radial-gradient(circle at top right, #1a2744 0%, #0b1220 50%, #0a0f1c 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 150%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.urgency-badge-v2 {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.hero-v2 h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #e7edf7;
  margin: 0 0 20px;
  line-height: 1.1;
}

.hero-v2 .subtitle {
  font-size: clamp(18px, 2.5vw, 22px);
  color: #9db0d1;
  margin: 0 auto 30px;
  line-height: 1.6;
  max-width: 900px;
}

.hero-note {
  color: #7cc4ff;
  font-size: 14px;
  margin: 10px 0 40px;
  opacity: 0.9;
}

.trust-badges-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0;
}

.trust-badge-v2 {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #111a2b;
  border: 1px solid #1f2a44;
  padding: 16px 20px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.trust-badge-v2:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.badge-icon {
  font-size: 24px;
  color: #58d1a7;
  background: rgba(88, 209, 167, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.badge-text {
  flex: 1;
  text-align: left;
}

.badge-title {
  font-size: 18px;
  font-weight: 700;
  color: #e7edf7;
  margin-bottom: 2px;
}

.badge-sub {
  font-size: 13px;
  color: #9db0d1;
}

/* Comparison Section V2 */
.comparison-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.comparison-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.comparison-card-v2 {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.comparison-card-v2.before {
  border-color: #ef4444;
}

.comparison-card-v2.after {
  border-color: #10b981;
}

.comparison-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.comparison-card-v2 .card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  border-bottom: 1px solid #1f2a44;
}

.comparison-card-v2 .card-icon {
  font-size: 32px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  flex-shrink: 0;
}

.comparison-card-v2.before .card-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}

.comparison-card-v2.after .card-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
}

.comparison-card-v2 h3 {
  font-size: 24px;
  font-weight: 700;
  color: #e7edf7;
  margin: 0;
}

.comparison-card-v2 .card-content {
  padding: 24px;
}

.workflow-step-v2 {
  background: #0c1627;
  border: 1px solid #1f2a44;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.workflow-step-v2:last-child {
  margin-bottom: 0;
}

.step-label {
  font-weight: 700;
  color: #7cc4ff;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.step-text {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.6;
}

/* Callout Box */
.callout-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  border-radius: 12px;
  margin-top: 40px;
  border: 2px solid;
}

.callout-box.warning {
  background: rgba(251, 191, 36, 0.1);
  border-color: #fbbf24;
}

.callout-box.success {
  background: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
}

.callout-box.primary {
  background: rgba(37, 99, 235, 0.1);
  border-color: #2563eb;
}

.callout-icon {
  font-size: 32px;
  flex-shrink: 0;
  line-height: 1;
}

.callout-content {
  flex: 1;
}

.callout-content h3 {
  color: #e7edf7;
  margin: 0 0 12px;
  font-size: 20px;
}

.callout-content p {
  color: #9db0d1;
  margin: 0 0 12px;
  line-height: 1.7;
}

.callout-content p:last-child {
  margin-bottom: 0;
}

.callout-highlight {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  color: #e7edf7;
}

.callout-sub {
  font-size: 16px;
  margin-top: 8px;
  color: #9db0d1;
}

/* Features Section V2 */
.features-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.features-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.feature-card-v2 {
  background: #111a2b;
  border: 1px solid #1f2a44;
  border-radius: 12px;
  padding: 30px;
  transition: all 0.3s ease;
}

.feature-card-v2:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.2);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.feature-card-v2 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #e7edf7;
  margin: 0 0 12px;
}

.feature-card-v2 p {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Math Section V2 */
.math-section-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.kpi-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.kpi-card-v2 {
  background: #111a2b;
  border: 1px solid #1f2a44;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.kpi-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.kpi-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 12px;
  line-height: 1;
}

.kpi-value.danger {
  color: #ef4444;
}

.kpi-value.success {
  color: #10b981;
}

.kpi-value.primary {
  color: #3b82f6;
}

.kpi-label {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.5;
}

/* Competitive Section V2 */
.competitive-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.scenario-box {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
}

.scenario-title {
  color: #e7edf7;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}

.scenario-steps {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.scenario-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #0c1627;
  border: 1px solid #1f2a44;
  border-radius: 10px;
  padding: 20px;
}

.step-number {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.step-title {
  color: #7cc4ff;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 16px;
}

.step-desc {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.6;
}

.scenario-conclusion {
  color: #9db0d1;
  font-size: 16px;
  line-height: 1.7;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #1f2a44;
}

/* Video Section V2 */
.video-section-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.video-container-v2 {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 16px;
  border: 2px solid #1f2a44;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-container-v2 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Demo Section V2 */
.demo-section-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.demo-box-v2 {
  background: radial-gradient(circle at top left, #1a2744 0%, #111a2b 100%);
  border: 2px solid #2563eb;
  border-radius: 16px;
  padding: 60px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.demo-box-v2 h2 {
  color: #e7edf7;
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 16px;
}

.demo-box-v2 > p {
  color: #9db0d1;
  font-size: 18px;
  margin: 0 0 30px;
}

.demo-box-v2 h3 {
  color: #7cc4ff;
  font-size: 24px;
  margin: 30px 0 16px;
}

.demo-desc {
  color: #9db0d1;
  font-size: 16px;
  margin: 0 0 30px;
  line-height: 1.6;
}

.demo-note {
  color: #7cc4ff;
  font-size: 14px;
  margin: 20px 0 0;
  opacity: 0.9;
}

/* Pain Points V2 */
.pain-points-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.pain-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.pain-card-v2 {
  background: #111a2b;
  border: 1px solid #ef4444;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pain-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
  border-color: #dc2626;
}

.pain-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 24px 16px;
}

.pain-icon {
  font-size: 32px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 10px;
  flex-shrink: 0;
}

.pain-card-v2 h3 {
  color: #e7edf7;
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.pain-card-v2 > p {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.6;
  padding: 0 24px;
  margin: 0 0 20px;
}

.solution-v2 {
  background: #0c1627;
  padding: 20px 24px 24px;
  border-top: 1px solid #1f2a44;
}

.solution-label {
  color: #10b981;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.solution-text {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* Agent Diff V2 */
.agent-diff-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pill-v2 {
  background: #111a2b;
  border: 1px solid #1f2a44;
  border-radius: 50px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #7cc4ff;
  transition: all 0.3s ease;
}

.pill-v2:hover {
  background: #1f2a44;
  border-color: #2563eb;
  transform: translateY(-2px);
}

/* Integration V2 */
.integration-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.software-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.software-card-v2 {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.software-card-v2:hover {
  border-color: #2563eb;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
}

.software-card-v2.featured {
  border-color: #fbbf24;
  background: rgba(251, 191, 36, 0.05);
}

.software-card-v2 .software-name {
  color: #7cc4ff;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 8px;
  display: block;
}

.software-card-v2 .software-type {
  color: #9db0d1;
  font-size: 14px;
}

.integration-note {
  color: #9db0d1;
  text-align: center;
  margin-top: 40px;
  font-size: 16px;
}

/* Philosophy V2 */
.philosophy-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.philosophy-content {
  max-width: 900px;
  margin: 0 auto;
}

.philosophy-lead {
  font-size: clamp(20px, 3vw, 26px);
  color: #e7edf7;
  text-align: center;
  margin: 0 0 30px;
  line-height: 1.5;
}

.philosophy-text {
  color: #9db0d1;
  font-size: 17px;
  line-height: 1.8;
  margin: 0 0 20px;
  text-align: center;
}

/* Pricing V2 */
.pricing-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.pricing-grid-v2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.pricing-tier-v2 {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-tier-v2:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  border-color: #2563eb;
}

.pricing-tier-v2.recommended {
  border-color: #2563eb;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.3);
}

.recommended-badge-v2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.tier-header {
  padding: 32px 32px 16px;
  text-align: center;
  border-bottom: 1px solid #1f2a44;
}

.tier-name {
  font-size: 26px;
  font-weight: 800;
  color: #e7edf7;
  margin: 0 0 8px;
}

.tier-description {
  color: #9db0d1;
  font-size: 15px;
  margin: 0;
}

.tier-pricing {
  padding: 24px 32px;
  text-align: center;
  border-bottom: 1px solid #1f2a44;
}

.tier-price {
  font-size: 48px;
  font-weight: 800;
  color: #7cc4ff;
  margin: 0;
  line-height: 1;
}

.price-period {
  font-size: 18px;
  color: #9db0d1;
  font-weight: 600;
}

.tier-setup {
  color: #9db0d1;
  font-size: 14px;
  margin-top: 8px;
}

.tier-features {
  list-style: none;
  padding: 24px 32px;
  margin: 0;
  border-bottom: 1px solid #1f2a44;
}

.tier-features li {
  color: #9db0d1;
  font-size: 15px;
  line-height: 2;
  padding-left: 0;
}

.tier-recovery {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  border-radius: 8px;
  padding: 16px;
  margin: 24px 32px;
  color: #10b981;
  font-size: 14px;
  text-align: center;
}

.pricing-tier-v2 .btn-v2 {
  margin: 0 32px 32px;
  width: calc(100% - 64px);
  text-align: center;
}

.pricing-details {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  padding: 40px;
  margin-top: 60px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.details-title {
  color: #e7edf7;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

.details-subtitle {
  color: #9db0d1;
  font-size: 16px;
  margin: 0 0 30px;
  text-align: center;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.detail-item {
  background: #0c1627;
  border: 1px solid #1f2a44;
  border-radius: 10px;
  padding: 20px;
}

.detail-title {
  color: #7cc4ff;
  font-weight: 700;
  font-size: 15px;
  margin: 0 0 8px;
}

.detail-desc {
  color: #9db0d1;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.additional-services {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  padding: 40px;
  margin-top: 40px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.additional-services h3 {
  color: #e7edf7;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  text-align: center;
}

.services-subtitle {
  color: #9db0d1;
  font-size: 16px;
  margin: 0 0 30px;
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.service-card {
  background: #0c1627;
  border: 1px solid #1f2a44;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  border-color: #2563eb;
  transform: translateY(-2px);
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-title {
  color: #e7edf7;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 8px;
}

.service-desc {
  color: #9db0d1;
  font-size: 14px;
  margin: 0;
}

/* Implementation V2 */
.implementation-v2 {
  background: #0b1220;
  padding: 80px 0;
}

.implementation-timeline {
  max-width: 1100px;
  margin: 50px auto 0;
}

.phase-card {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.phase-card:hover {
  border-color: #2563eb;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.2);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #0c1627;
  border-bottom: 1px solid #1f2a44;
}

.phase-number {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.phase-info h3 {
  color: #e7edf7;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 4px;
}

.phase-duration {
  color: #9db0d1;
  font-size: 14px;
}

.phase-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.phase-column h4 {
  color: #7cc4ff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phase-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.phase-column li {
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.8;
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.phase-column li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: bold;
}

.phase-outcome {
  background: #0c1627;
  border: 1px solid #1f2a44;
  border-radius: 8px;
  padding: 16px;
  margin-top: 20px;
  color: #9db0d1;
  font-size: 14px;
  line-height: 1.6;
}

.phase-outcome strong {
  color: #10b981;
}

.implementation-summary {
  background: #111a2b;
  border: 2px solid #1f2a44;
  border-radius: 16px;
  padding: 40px;
  margin-top: 50px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.implementation-summary h3 {
  color: #e7edf7;
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  text-align: center;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.summary-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.summary-icon {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.summary-content {
  flex: 1;
}

.summary-title {
  color: #e7edf7;
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 6px;
}

.summary-desc {
  color: #9db0d1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

/* FAQ V2 */
.faq-v2 {
  background: #0f1829;
  padding: 80px 0;
}

.faq-container-v2 {
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item-v2 {
  background: #111a2b;
  border: 1px solid #1f2a44;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-v2:hover {
  border-color: #2563eb;
}

.faq-question-v2 {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  background: #111a2b;
  transition: background 0.3s ease;
}

.faq-question-v2:hover {
  background: #1f2a44;
}

.faq-icon-left {
  font-size: 20px;
  flex-shrink: 0;
  color: #7cc4ff;
}

.faq-question-v2 > span:nth-child(2) {
  flex: 1;
  color: #e7edf7;
  font-weight: 600;
  font-size: 16px;
}

.faq-icon-right {
  font-size: 24px;
  color: #2563eb;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-icon-right.active {
  transform: rotate(45deg);
}

.faq-answer-v2 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: #9db0d1;
  font-size: 15px;
  line-height: 1.7;
  background: #0c1627;
}

.faq-answer-v2.active {
  max-height: 500px;
  padding: 20px 24px;
  border-top: 1px solid #1f2a44;
}

/* Final CTA V2 */
.final-cta-v2 {
  background: radial-gradient(circle at center, #1a2744 0%, #0b1220 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.final-cta-v2::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-v2 .container {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 900px;
}

.final-cta-v2 h2 {
  color: #e7edf7;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  margin: 0 0 20px;
  line-height: 1.2;
}

.final-cta-v2 .subtitle {
  color: #9db0d1;
  font-size: clamp(18px, 2.5vw, 22px);
  margin: 0 0 30px;
  line-height: 1.6;
}

.final-note {
  color: #7cc4ff;
  font-size: 16px;
  margin: 30px 0 0;
}

/* Sticky CTA V2 */
.sticky-cta-v2 {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  padding: 16px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
  transition: all 0.3s ease;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
}

.sticky-cta-v2.visible {
  opacity: 1;
  pointer-events: auto;
}

.sticky-cta-v2:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.6);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS FOR V2
   ============================================ */

@media (max-width: 768px) {
  .comparison-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .features-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .kpi-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .pain-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .software-grid-v2 {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  
  .pricing-grid-v2 {
    grid-template-columns: 1fr;
  }
  
  .phase-content {
    grid-template-columns: 1fr;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .summary-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-group {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-group .btn-v2 {
    width: 100%;
  }
  
  .sticky-cta-v2 {
    bottom: 10px;
    right: 10px;
    font-size: 14px;
    padding: 14px 22px;
  }
  
  .trust-badges-v2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
  
  .demo-box-v2 {
    padding: 40px 20px;
  }
  
  .callout-box {
    flex-direction: column;
    gap: 12px;
  }
  
  .scenario-step {
    flex-direction: column;
    text-align: center;
  }
}
