:root {
  --black: #0B0F14;
  --white: #F5F7FA;
  --orange: #3B82F6;
  --orange-dark: #2563EB;
  --orange-muted: rgba(59,130,246,0.12);
  --cyan: #22D3EE;
  --cyan-muted: rgba(34,211,238,0.12);
  --gray: #131A22;
  --gray-mid: #1E2A38;
  --gray-light: #9AA4B2;
  --green: #22c55e;
  --border: rgba(255,255,255,0.07);
}

/* ── LANGUAGE TOGGLE ── */
.en-only, .es-only { display: contents; }
.lang-en .es-only  { display: none; }
.lang-es .en-only  { display: none; }

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.5;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-mark {
  width: 36px; height: 36px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-mark svg { width: 20px; height: 20px; }
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1;
}
.logo-text span { color: var(--cyan); }
.logo-ai {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: var(--orange);
  background: var(--orange-muted);
  border: 1px solid rgba(59,130,246,0.3);
  border-radius: 4px;
  padding: 2px 6px;
  letter-spacing: 0.08em;
  align-self: center;
}

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  background: rgba(10,10,10,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--black) !important;
  font-weight: 600 !important;
  padding: 9px 22px;
  border-radius: 4px;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 120px 48px 80px;
  position: relative;
  overflow: hidden;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  z-index: 0;
}
.hero-left { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-muted);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
  animation: fadeUp 0.5s ease both;
}
.badge-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: blink 2s infinite;
  flex-shrink: 0;
}
@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.93;
  letter-spacing: 0.025em;
  animation: fadeUp 0.5s 0.08s ease both;
}
.hero h1 .accent { color: var(--cyan); display: block; }
.hero-sub {
  font-size: 17px;
  color: var(--gray-light);
  font-weight: 300;
  margin-top: 28px;
  max-width: 480px;
  line-height: 1.65;
  animation: fadeUp 0.5s 0.16s ease both;
}
.hero-sub strong { color: var(--white); font-weight: 500; }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.5s 0.24s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(59,130,246,0.40);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
}
.btn-ghost:hover { color: var(--white); }
.play-btn {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  flex-shrink: 0;
  transition: border-color 0.2s;
}
.btn-ghost:hover .play-btn { border-color: rgba(255,255,255,0.35); }

.hero-right {
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.3s ease both;
}
.hero-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.hero-image-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.85) saturate(0.9);
}
.hero-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.12) 0%, rgba(34,211,238,0.06) 60%, transparent 80%);
}
.hero-float-card {
  position: absolute;
  bottom: 24px; left: 24px; right: 24px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.float-card-left { display: flex; align-items: center; gap: 12px; }
.float-icon {
  width: 40px; height: 40px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.float-title { font-size: 13px; font-weight: 500; color: var(--white); }
.float-sub { font-size: 11px; color: var(--gray-light); margin-top: 2px; }
.float-badge {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 500;
  color: var(--green);
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.stats-bar {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 36px 48px;
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat { text-align: center; padding: 0 48px; border-right: 1px solid var(--border); }
.stat:last-child { border-right: none; }
.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: var(--orange);
  letter-spacing: 0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  color: var(--gray-light);
  letter-spacing: 0.09em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 400;
}

.demo-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #1D4ED8 100%);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.demo-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: var(--black);
  line-height: 1;
}
.demo-text p { color: rgba(0,0,0,0.55); font-size: 14px; margin-top: 5px; }
.demo-phone-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,0.18);
  border-radius: 8px;
  padding: 14px 24px;
  flex-shrink: 0;
}
.phone-circle {
  width: 42px; height: 42px;
  background: rgba(0,0,0,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.demo-num {
  font-family: 'DM Mono', monospace;
  font-size: 26px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.demo-num-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 2px;
}

.section { padding: 96px 48px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  letter-spacing: 0.03em;
  line-height: 0.96;
  margin-bottom: 20px;
}
.section-body {
  font-size: 17px;
  color: var(--gray-light);
  line-height: 1.68;
  max-width: 560px;
  font-weight: 300;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pain-card {
  background: var(--black);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.pain-card:hover { background: #111; }
.pain-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  color: var(--orange);
  opacity: 0.12;
  position: absolute;
  top: 12px; right: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.pain-icon { font-size: 26px; margin-bottom: 18px; display: block; }
.pain-title { font-size: 16px; font-weight: 500; margin-bottom: 10px; color: var(--white); line-height: 1.35; }
.pain-desc { font-size: 13px; color: var(--gray-light); line-height: 1.62; }

.how-section {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step { background: var(--gray); padding: 36px 32px; }
.step-num {
  width: 52px; height: 52px;
  background: var(--orange-muted);
  border: 1px solid rgba(59,130,246,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 24px;
}
.step-title { font-size: 15px; font-weight: 500; margin-bottom: 10px; color: var(--white); line-height: 1.35; }
.step-desc { font-size: 13px; color: var(--gray-light); line-height: 1.62; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.pricing-card {
  background: var(--black);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.pricing-card.featured {
  background: #111;
  outline: 1px solid rgba(59,130,246,0.45);
  outline-offset: -1px;
}
.featured-tag {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--black);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 6px 6px;
  white-space: nowrap;
}
.plan-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 6px;
}
.plan-price-wrap { display: flex; align-items: flex-start; gap: 2px; margin-bottom: 4px; line-height: 1; }
.plan-dollar { font-family: 'DM Sans', sans-serif; font-size: 22px; font-weight: 300; color: var(--gray-light); margin-top: 10px; }
.plan-amount { font-family: 'Bebas Neue', sans-serif; font-size: 68px; letter-spacing: -0.02em; color: var(--white); }
.plan-period { font-size: 12px; color: var(--gray-light); margin-bottom: 24px; }
.plan-highlight {
  background: var(--orange-muted);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 4px;
  padding: 9px 14px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 500;
  margin-bottom: 28px;
  text-align: center;
}
.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  margin-bottom: 32px;
}
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--gray-light); line-height: 1.45; }
.chk { color: var(--green); flex-shrink: 0; font-size: 13px; margin-top: 1px; }
.plan-btn {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}
.plan-btn-primary { background: var(--orange); color: var(--black); }
.plan-btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); }
.plan-btn-outline { background: transparent; color: var(--white); border: 1px solid var(--border); }
.plan-btn-outline:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.no-fee-note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--gray-light); }
.no-fee-note strong { color: var(--green); }

.compare-section {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.compare-table { width: 100%; border-collapse: collapse; margin-top: 56px; font-size: 13px; }
.compare-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
  font-weight: 400;
  font-family: 'DM Mono', monospace;
  white-space: nowrap;
}
.compare-table th.hl { color: var(--orange); background: var(--orange-muted); }
.compare-table td { padding: 16px 20px; border-bottom: 1px solid var(--border); color: var(--gray-light); vertical-align: middle; }
.compare-table td:first-child { color: var(--white); font-weight: 400; }
.compare-table td.hl { background: var(--orange-muted); color: var(--white); font-weight: 500; }
.compare-table tr:last-child td { border-bottom: none; }
.yes { color: var(--green); font-weight: 500; }
.no-val { color: #f87171; }

.industries-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 44px; }
.ind-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 11px 18px;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.2s;
  cursor: default;
  white-space: nowrap;
}
.ind-tag:hover { border-color: rgba(59,130,246,0.35); background: var(--orange-muted); color: var(--orange); }

.testimonials-section {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 56px;
  background: var(--border);
  border: 1px solid var(--border);
}
.testimonial-card { background: var(--gray); padding: 36px; }
.stars { color: var(--cyan); font-size: 13px; letter-spacing: 2px; margin-bottom: 18px; }
.t-text {
  font-size: 15px;
  line-height: 1.68;
  color: var(--white);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}
.t-text::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px;
  color: var(--orange);
  opacity: 0.25;
  position: absolute;
  top: -14px; left: -4px;
  line-height: 1;
}
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange-muted);
  border: 1px solid rgba(59,130,246,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.t-name { font-size: 13px; font-weight: 500; color: var(--white); }
.t-role { font-size: 11px; color: var(--gray-light); margin-top: 2px; }

.faq-section { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  letter-spacing: -0.01em;
  line-height: 1.4;
}
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.2s;
  font-weight: 300;
}
.faq-item.open .faq-icon { background: var(--orange-muted); border-color: rgba(59,130,246,0.3); }
.faq-a { font-size: 14px; color: var(--gray-light); line-height: 1.7; padding-bottom: 24px; display: none; }
.faq-item.open .faq-a { display: block; }

.cta-section {
  padding: 120px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, rgba(59,130,246,0.06) 40%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  letter-spacing: 0.03em;
  line-height: 0.94;
  margin-bottom: 20px;
  position: relative;
}
.cta-section h2 .accent { color: var(--cyan); }
.cta-sub { font-size: 17px; color: var(--gray-light); margin-bottom: 44px; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }
.cta-fine { margin-top: 20px; font-size: 12px; color: var(--gray-light); letter-spacing: 0.05em; position: relative; }

footer {
  background: var(--gray);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 28px; list-style: none; flex-wrap: wrap; }
.footer-links a { color: var(--gray-light); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 12px; color: var(--gray-light); }

@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ── MOBILE NAV ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 60px; left: 0; right: 0;
    background: rgba(11,15,20,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 8px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a, .nav-links button { width: 100%; text-align: left; font-size: 16px; padding: 10px 0; }
  .nav-cta { display: block; text-align: center !important; margin-top: 8px; padding: 12px 0 !important; }
}
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero { grid-template-columns: 1fr; padding: 100px 24px 60px; gap: 40px; min-height: auto; }
  .hero-right { order: -1; }
  .hero-image-wrap img { height: 280px; }
  .stats-bar { padding: 28px 24px; gap: 0; }
  .stat { padding: 12px 20px; }
  .stat-number { font-size: 36px; }
  .demo-strip { padding: 28px 24px; }
  .demo-num { font-size: 20px; }
  .section { padding: 64px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-section .section { padding: 64px 24px; }
  .compare-table { font-size: 12px; }
  .compare-table th, .compare-table td { padding: 12px 10px; }
  .cta-section { padding: 80px 24px; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
}
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray-mid); border-radius: 2px; }

/* Industries split layout */
.industries-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 40px;
}

.industries-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 420px;
}

.industries-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 16px;
  filter: brightness(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .industries-split {
    grid-template-columns: 1fr;
  }
  .industries-photo {
    height: 280px;
  }
}

/* Problem section split layout */
.problem-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 48px;
}

.problem-photo {
  border-radius: 16px;
  overflow: hidden;
  height: 380px;
}

.problem-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  filter: brightness(0.85) contrast(1.05);
}

@media (max-width: 768px) {
  .problem-split {
    grid-template-columns: 1fr;
  }
  .problem-photo {
    height: 240px;
  }
}

/* ── SMS SHOWCASE SECTION ── */
.sms-section { background: var(--black); }

.sms-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 64px;
}

/* PHONE */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone-glow {
  position: absolute;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(34,211,238,0.15) 0%, rgba(59,130,246,0.08) 50%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}
.phone-shell {
  position: relative;
  z-index: 1;
  width: 300px;
  background: #0f1923;
  border-radius: 36px;
  border: 2px solid rgba(34,211,238,0.25);
  box-shadow: 0 0 0 6px rgba(34,211,238,0.04), 0 32px 80px rgba(0,0,0,0.6);
  overflow: hidden;
  padding: 16px 12px 24px;
}
.phone-notch {
  width: 80px; height: 8px;
  background: #1a2535;
  border-radius: 4px;
  margin: 0 auto 16px;
}
.phone-screen {
  background: #0b1520;
  border-radius: 20px;
  overflow: hidden;
}

/* SMS HEADER */
.sms-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px;
  background: #0f1e2e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sms-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #22D3EE, #3B82F6);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.sms-from { flex: 1; }
.sms-name { font-size: 12px; font-weight: 600; color: #F5F7FA; }
.sms-time { font-size: 10px; color: #9AA4B2; }
.sms-signal { font-size: 8px; color: #22D3EE; letter-spacing: 2px; }

/* SMS BUBBLE */
.sms-bubble {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sms-tag-row { display: flex; gap: 6px; margin-bottom: 4px; }
.sms-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.sms-tag.urgent { background: rgba(239,68,68,0.2); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }
.sms-tag.new { background: rgba(34,211,238,0.15); color: #22D3EE; border: 1px solid rgba(34,211,238,0.25); }
.sms-business {
  font-size: 11px;
  font-weight: 700;
  color: #22D3EE;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.sms-divider {
  height: 1px;
  background: rgba(255,255,255,0.07);
  margin: 4px 0;
}
.sms-row {
  display: flex;
  gap: 8px;
  font-size: 10.5px;
  line-height: 1.5;
}
.sms-label {
  color: #9AA4B2;
  min-width: 62px;
  font-weight: 500;
  flex-shrink: 0;
}
.sms-val { color: #F5F7FA; }
.sms-urgent-val { color: #f87171; font-weight: 600; }
.sms-summary-label {
  font-size: 9px;
  font-weight: 700;
  color: #9AA4B2;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.sms-summary-text {
  font-size: 10px;
  color: #c8d0db;
  line-height: 1.6;
}
.sms-listen-row { margin-top: 8px; }
.sms-listen-btn {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  color: #22D3EE;
  background: rgba(34,211,238,0.1);
  border: 1px solid rgba(34,211,238,0.25);
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s;
}
.sms-listen-btn:hover { background: rgba(34,211,238,0.2); }

/* FLOW STEPS */
.sms-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.flow-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.02);
  transition: all 0.25s;
}
.flow-step:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.04);
  transform: translateX(4px);
}
.flow-step-win {
  border-color: rgba(34,211,238,0.2);
  background: rgba(34,211,238,0.05);
}
.flow-icon { font-size: 28px; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.flow-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.flow-desc { font-size: 13px; color: var(--gray-light); line-height: 1.5; }
.flow-arrow {
  text-align: center;
  color: rgba(34,211,238,0.4);
  font-size: 20px;
  padding: 4px 0;
  margin-left: 32px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sms-showcase { grid-template-columns: 1fr; gap: 48px; }
  .phone-shell { width: 280px; }
}

/* ── WHY CALLZIO GRID ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 48px 0 56px;
}
.why-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.25s;
}
.why-card:hover {
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.04);
  transform: translateY(-2px);
}
.why-icon { font-size: 28px; margin-bottom: 12px; }
.why-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.why-desc { font-size: 13px; color: var(--gray-light); line-height: 1.6; }

.compare-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── PRIVACY BADGES ── */
.privacy-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.privacy-badge {
  font-size: 13px;
  color: var(--gray-light);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: 100px;
}

/* extra col in compare table */
.compare-table .yes-val { color: var(--gray-light); }

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .privacy-badges { flex-direction: column; align-items: center; }
}
