/* ===== KRID.AI V2 FIXES — New components & overrides ===== */

/* =============================================================
   HERO GUARANTEE BADGE
============================================================= */
.hero-guarantee-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  margin: 2.25rem auto 0;
  padding: 1.15rem 1.85rem;
  background: transparent;
  border: none;
  border-radius: 18px;
  max-width: 640px;
  width: fit-content;
  box-shadow: none;
  text-align: center;
}

.hero-guarantee-badge .hgb-shield {
  font-size: 2.35rem;
  flex-shrink: 0;
  line-height: 1;
}

.hero-guarantee-badge strong {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-gold-light);
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.hero-guarantee-badge p {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
  line-height: 1.45;
}

/* =============================================================
   FULL CHANNELS MATRIX GRID (17 CHANNELS)
============================================================= */
.channels-grid-section {
  width: 100%;
  max-width: 1060px;
  margin: 2.25rem 0 2.75rem;
}

.channels-grid-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brand-gold-light);
  margin-bottom: 1.15rem;
  text-align: center;
}

.channels-grid-matrix {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 0.85rem;
}

.channel-card-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1.15rem;
  background: rgba(19, 26, 36, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  user-select: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.channel-card-item:hover {
  background: rgba(195, 166, 105, 0.14);
  border-color: rgba(195, 166, 105, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

.channel-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.08);
}

.channel-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.channel-name {
  font-size: 0.775rem;
  font-weight: 600;
  color: #cbd5e1;
  white-space: nowrap;
}

/* Mobile Responsiveness for Channel Grid Matrix */
@media (max-width: 768px) {
  .channels-grid-section {
    margin: 1.5rem 0 2rem;
    padding: 0 0.25rem;
  }
  
  .channels-grid-matrix {
    gap: 0.45rem 0.45rem;
  }

  .channel-card-item {
    padding: 0.35rem 0.65rem;
    gap: 0.45rem;
  }

  .channel-icon-wrap {
    width: 24px;
    height: 24px;
    border-radius: 5px;
  }

  .channel-logo-img {
    width: 18px;
    height: 18px;
  }

  .channel-name {
    font-size: 0.725rem;
  }
}

@media (max-width: 480px) {
  .channels-grid-matrix {
    gap: 0.35rem 0.35rem;
  }

  .channel-card-item {
    padding: 0.3rem 0.55rem;
    gap: 0.35rem;
  }

  .channel-icon-wrap {
    width: 20px;
    height: 20px;
  }

  .channel-logo-img {
    width: 15px;
    height: 15px;
  }

  .channel-name {
    font-size: 0.685rem;
  }
}

/* =============================================================
   HERO LAYOUT (TOP-DOWN: CENTERED COPY, FULL BANNER BELOW)
============================================================= */
.hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  text-align: center !important;
  padding: 8rem 1.5rem 4rem !important;
  max-width: 1320px !important;
  margin: 0 auto !important;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 840px;
  width: 100%;
  margin-bottom: 2.75rem;
  text-align: center;
}

.hero-copy h1 {
  text-align: center;
}

.hero-deck {
  max-width: 700px !important;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  color: #ffffff !important;
}

.hero-channel-switcher {
  justify-content: center;
}

.hero-guarantee-badge {
  margin: 2rem auto 0;
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: 1.5rem 0 0;
  position: relative;
  z-index: 2;
}

.button-primary {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(195, 166, 105, 0.28);
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(195, 166, 105, 0.4);
  color: #fff;
}

.problem-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem 1.25rem;
  margin-top: 2rem;
}

.problem-cta-note {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0f172a;
}

.optional-tag {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-transform: none;
  letter-spacing: 0;
}

/* Full Width Banner Canvas Container */
.ad-banner-canvas {
  width: 100%;
  max-width: 1280px;
  min-height: 620px;
  background: #080c14;
  background-image: 
    radial-gradient(circle at 50% 25%, #162030 0%, #080c14 70%),
    radial-gradient(circle at 20% 80%, rgba(195, 166, 105, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(195, 166, 105, 0.08) 0%, transparent 50%);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.85);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.bg-glow-rect-left {
  position: absolute;
  width: 440px;
  height: 440px;
  left: -90px;
  bottom: -80px;
  border-radius: 64px;
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.12), rgba(195, 166, 105, 0.02));
  border: 1px solid rgba(195, 166, 105, 0.15);
  transform: rotate(-12deg);
  pointer-events: none;
}

.bg-glow-rect-right {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -110px;
  top: -50px;
  border-radius: 80px;
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.1), rgba(195, 166, 105, 0.01));
  border: 1px solid rgba(195, 166, 105, 0.12);
  transform: rotate(15deg);
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.5;
  pointer-events: none;
}

.showcase-stage {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  padding: 3rem 2rem 2.5rem;
}

.phone-device {
  position: relative;
  width: 295px;
  height: 580px;
  background: #000;
  border-radius: 44px;
  padding: 10px;
  box-shadow: 
    0 25px 50px -10px rgba(0, 0, 0, 0.85),
    0 0 0 2px #383144,
    0 0 0 5px #1e1926,
    0 15px 30px rgba(0, 0, 0, 0.9);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  flex-shrink: 0;
}

.phone-device.hero-phone {
  width: 320px;
  height: 620px;
  z-index: 3;
  transform: translateY(-10px);
  box-shadow: 
    0 35px 70px -15px rgba(0, 0, 0, 0.95),
    0 0 0 2.5px var(--brand-gold),
    0 0 35px rgba(195, 166, 105, 0.3),
    0 0 0 6px #241d13;
}

.phone-device.side-phone-left {
  transform: translateY(12px) rotate(-1.5deg);
  z-index: 2;
  margin-right: 0;
}

.phone-device.side-phone-right {
  transform: translateY(12px) rotate(1.5deg);
  z-index: 2;
  margin-left: 0;
}

.phone-device:hover {
  transform: translateY(-6px) scale(1.02);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 36px;
  overflow: hidden;
  position: relative;
}

.screen-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 36px;
}

/* Mobile Responsiveness for 3-Phone Showcase Banner Canvas */
@media (max-width: 992px) {
  .ad-banner-canvas {
    min-height: 480px;
    border-radius: 20px;
  }

  .showcase-stage {
    gap: 1rem;
    padding: 2rem 1rem;
  }

  .phone-device {
    width: 210px;
    height: 410px;
    border-radius: 30px;
    padding: 8px;
  }

  .phone-device.hero-phone {
    width: 235px;
    height: 450px;
  }

  .phone-screen {
    border-radius: 24px;
  }

  .screen-img {
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .ad-banner-canvas {
    min-height: 350px;
    border-radius: 16px;
  }

  .showcase-stage {
    gap: 0.4rem;
    padding: 1.25rem 0.5rem;
  }

  .phone-device {
    width: 125px;
    height: 250px;
    border-radius: 18px;
    padding: 4px;
  }

  .phone-device.hero-phone {
    width: 145px;
    height: 285px;
  }

  .phone-screen {
    border-radius: 14px;
  }

  .screen-img {
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .ad-banner-canvas {
    min-height: 260px;
    border-radius: 14px;
  }

  .showcase-stage {
    gap: 0.25rem;
    padding: 0.85rem 0.25rem;
  }

  .phone-device {
    width: 100px;
    height: 200px;
    border-radius: 14px;
    padding: 3px;
  }

  .phone-device.hero-phone {
    width: 115px;
    height: 228px;
  }

  .phone-screen {
    border-radius: 11px;
  }

  .screen-img {
    border-radius: 11px;
  }
}

/* =============================================================
   TRUST BAR
============================================================= */
.page-break-trust {
  width: 100%;
  background: linear-gradient(180deg, #0d131f 0%, #0a0e14 100%);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.trust-bar {
  max-width: 1240px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 2rem;
  text-align: center;
}

.trust-guarantee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0;
  border-bottom: none;
}

.trust-guarantee > span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
}

.trust-guarantee strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}

.trust-guarantee small {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-free strong {
  color: var(--brand-gold-light);
}

.trust-industries {
  font-size: 0.825rem;
  color: var(--text-dark-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-top: 0.75rem;
  border-top: none;
}

/* =============================================================
   DEMO SPLIT — Phone Mock + Owner Alert
============================================================= */
.demo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 3rem 0;
  align-items: stretch;
}

/* --- Phone Mock (WhatsApp-style) --- */
.phone-mock {
  background: #0b141a;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
}

.phone-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: #1f2c34;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.phone-back {
  color: #00a884;
  font-size: 1.4rem;
  font-weight: 300;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #128C7E, #25D366);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-contact strong {
  display: block;
  font-size: 0.9rem;
  color: #e9edef;
  font-weight: 600;
}

.phone-contact small {
  font-size: 0.725rem;
  color: #8696a0;
}

.chat-area {
  padding: 1rem 0.85rem;
  background: #0b141a;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 280px;
}

.chat-date {
  text-align: center;
  font-size: 0.7rem;
  color: #8696a0;
  background: rgba(17, 27, 33, 0.9);
  padding: 0.25rem 0.75rem;
  border-radius: 8px;
  margin: 0 auto 0.5rem;
  font-weight: 600;
}

.chat-bubble {
  max-width: 85%;
  padding: 0.6rem 0.75rem;
  border-radius: 10px;
  font-size: 0.85rem;
  line-height: 1.45;
  position: relative;
}

.chat-bubble.incoming {
  background: #1f2c34;
  color: #e9edef;
  align-self: flex-start;
  border-top-left-radius: 2px;
}

.chat-bubble.outgoing {
  background: #005c4b;
  color: #e9edef;
  align-self: flex-end;
  border-top-right-radius: 2px;
}

.chat-bubble p {
  margin: 0 0 0.25rem;
  font-size: 0.835rem;
  line-height: 1.4;
}

.chat-bubble .chat-list {
  font-size: 0.82rem;
  opacity: 0.95;
}

.chat-time {
  display: block;
  text-align: right;
  font-size: 0.65rem;
  color: rgba(233, 237, 239, 0.5);
  margin-top: 0.2rem;
}

.krid-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--brand-gold-light);
  background: rgba(195, 166, 105, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.phone-label {
  padding: 0.65rem 1rem;
  background: rgba(0, 92, 75, 0.15);
  border-top: 1px solid rgba(0, 168, 132, 0.2);
  font-size: 0.75rem;
  color: #00a884;
  text-align: center;
  font-weight: 600;
}

/* --- Owner Alert Card --- */
.owner-alert-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-gold);
  border-left: 4px solid var(--brand-gold);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 25px rgba(195, 166, 105, 0.08);
}

.alert-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dark-muted);
  margin-bottom: 1rem;
}

.alert-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #f97316;
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.6);
  animation: pulse-dot 1.8s infinite;
}

.owner-alert-card h3 {
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.alert-details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.alert-details > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.alert-details > div:last-child {
  border-bottom: none;
}

.alert-details span {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.alert-details strong {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

.alert-cta-wrap {
  margin-bottom: 1rem;
}

.alert-cta {
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--brand-gold);
  background: rgba(195, 166, 105, 0.1);
  color: var(--brand-gold-light);
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-main);
}

.alert-cta:hover {
  background: rgba(195, 166, 105, 0.2);
  transform: translateY(-1px);
}

.owner-alert-footer {
  font-size: 0.78rem;
  color: var(--text-dark-muted);
  text-align: center;
  line-height: 1.4;
  font-style: italic;
}

/* =============================================================
   GUARANTEE SECTION — Prominent, accent-themed
============================================================= */
.page-break-guarantee {
  width: 100%;
  background: #ffffff;
  border-top: 3px solid var(--brand-gold);
}

.guarantee-section {
  text-align: center;
}

.guarantee-intro {
  margin-bottom: 3.5rem;
}

.guarantee-intro .section-index {
  color: var(--brand-gold-dark);
}

.guarantee-shield-icon {
  font-size: 3rem;
  margin: 0.75rem 0;
}

.guarantee-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light-main);
  margin-bottom: 0.75rem;
}

.guarantee-intro > p {
  font-size: 1.1rem;
  color: var(--text-light-muted);
}

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.guarantee-item {
  background: #fff;
  border: 1px solid rgba(195, 166, 105, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(195, 166, 105, 0.1);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.guarantee-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(195, 166, 105, 0.18);
}

.guarantee-item strong {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--brand-gold-dark);
  margin-bottom: 0.25rem;
  letter-spacing: -0.03em;
}

.guarantee-item > span {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
  margin-bottom: 1rem;
}

.guarantee-item p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.55;
}

.guarantee-pledge {
  background: linear-gradient(135deg, #1a1408 0%, #2a1f0a 100%);
  border: 1px solid var(--brand-gold);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(195, 166, 105, 0.1);
}

.guarantee-pledge strong {
  display: block;
  font-size: 1.3rem;
  color: var(--brand-gold-light);
  margin-bottom: 0.5rem;
}

.guarantee-pledge p {
  font-size: 0.95rem;
  color: #ffffff;
  margin: 0;
}

/* =============================================================
   TESTIMONIALS
============================================================= */
.page-break-testimonials {
  width: 100%;
  background: #ffffff;
}

.cta form .form-field,
.audit-modal form .form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.cta form .form-row,
.audit-modal form .form-row {
  margin-bottom: 1.25rem;
}

.cta form .form-row .form-field,
.audit-modal form .form-row .form-field {
  margin-bottom: 0;
}

.cta--form-only,
.cta--form-only .cta form,
.cta form {
  text-align: left;
}

.cta--form-only {
  text-align: left !important;
}

.cta form .form-field label,
.audit-modal form .form-field label {
  margin: 0;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
}

.cta form .form-field-error,
.audit-modal form .form-field-error {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fca5a5;
}

.cta form .form-field.is-invalid input,
.cta form .form-field.is-invalid select,
.cta form .form-field.is-invalid textarea,
.cta form .form-field.is-invalid .phone-input,
.audit-modal form .form-field.is-invalid input,
.audit-modal form .form-field.is-invalid select,
.audit-modal form .form-field.is-invalid textarea,
.audit-modal form .form-field.is-invalid .phone-input {
  border-color: rgba(248, 113, 113, 0.8);
}

.cta form .phone-input,
.audit-modal form .phone-input {
  display: flex;
  align-items: stretch;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.cta form .phone-input-prefix,
.audit-modal form .phone-input-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
}

.cta form .phone-input input,
.audit-modal form .phone-input input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  flex: 1;
  min-width: 0;
}

.cta form textarea,
.audit-modal form textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 0.85rem 1rem;
  font: inherit;
}

.cta form .form-submit-status,
.audit-modal form .form-submit-status {
  margin: 0.85rem 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

.cta form .form-submit-status[data-type="error"],
.audit-modal form .form-submit-status[data-type="error"] {
  color: #fca5a5;
}

.testimonials h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light-main);
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid rgba(195, 166, 105, 0.25);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(195, 166, 105, 0.12);
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--brand-gold);
  opacity: 0.35;
  margin-bottom: -1rem;
  user-select: none;
}

.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--text-light-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(195, 166, 105, 0.2);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light-main);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-light-dim);
}

/* =============================================================
   FAQ
============================================================= */
.page-break-faq {
  width: 100%;
  background: #ffffff;
  border-top: 1px solid rgba(195, 166, 105, 0.2);
}

.faq-intro {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.faq-intro h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-light-main);
  margin-bottom: 0.75rem;
  white-space: nowrap;
}

.faq-intro > p:last-child {
  font-size: 1.05rem;
  color: var(--text-light-muted);
  line-height: 1.6;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(195, 166, 105, 0.28);
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid rgba(195, 166, 105, 0.28);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 0.25rem;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light-main);
  letter-spacing: -0.01em;
  line-height: 1.35;
  transition: color var(--transition-fast);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  color: var(--brand-gold-dark);
}

.faq-item[open] summary {
  color: var(--brand-gold-dark);
  padding-bottom: 0.85rem;
}

.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(195, 166, 105, 0.55);
  background: #fff;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--brand-gold-dark);
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.faq-icon::before {
  width: 12px;
  height: 1.5px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-icon {
  background: var(--brand-gold);
  border-color: var(--brand-gold);
}

.faq-item[open] .faq-icon::before,
.faq-item[open] .faq-icon::after {
  background: #fff;
}

.faq-item[open] .faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  padding: 0 2.5rem 1.5rem 0.25rem;
  animation: faq-open 0.28s ease;
}

.faq-answer p {
  font-size: 0.98rem;
  color: var(--text-light-muted);
  line-height: 1.7;
  max-width: 68ch;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-break-try-wa {
  width: 100%;
  background: var(--bg-dark-1, #0a0e14);
  border-top: 1px solid rgba(195, 166, 105, 0.18);
}

.try-wa-shell {
  padding-top: 0;
  padding-bottom: 4rem;
}

.faq-try-wa {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  max-width: 820px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  background: #0f172a;
  border: 1px solid rgba(195, 166, 105, 0.35);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.hero-try-wa,
.trust-try-wa {
  width: 100%;
  max-width: 820px;
  margin: 1.75rem auto 0;
  padding: 1.5rem 0 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  border-top: 1px solid rgba(195, 166, 105, 0.2);
}

.faq-try-wa-copy {
  flex: 1;
  min-width: 0;
}

.faq-try-wa-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-gold);
  margin-bottom: 0.4rem;
}

.faq-try-wa h3 {
  font-size: 1.25rem;
  color: #f8fafc;
  margin-bottom: 0.4rem;
  letter-spacing: -0.02em;
}

.faq-try-wa-copy > p:last-child {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.55;
  margin: 0;
}

.faq-try-wa-copy strong {
  color: var(--brand-gold-light);
  font-weight: 700;
}

.faq-try-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  box-shadow: 0 6px 18px rgba(195, 166, 105, 0.35);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.faq-try-wa-btn:hover {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--brand-gold) 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(195, 166, 105, 0.45);
}

.faq-try-wa-btn svg {
  flex-shrink: 0;
}

/* =============================================================
   PRICING HINT (inside CTA section)
============================================================= */
.cta-pricing-hint {
  margin-top: 2rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1.25rem 1.5rem;
  background: rgba(195, 166, 105, 0.08);
  border: 1px solid rgba(195, 166, 105, 0.25);
  border-radius: var(--radius-md);
  width: fit-content;
  max-width: 100%;
  text-align: center;
}

.cta-pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 0.35rem;
}

.cta-pricing-amount span {
  font-size: 0.85rem;
  color: var(--text-dark-muted);
  font-weight: 500;
}

.cta-pricing-amount strong {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--brand-gold-light);
  letter-spacing: -0.02em;
}

.cta-pricing-hint small {
  font-size: 0.8rem;
  color: var(--text-dark-muted);
}

/* =============================================================
   FLOATING WHATSAPP BUTTON
============================================================= */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-dark) 100%);
  color: #fff;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.875rem;
  font-family: var(--font-main);
  box-shadow: 0 6px 20px rgba(195, 166, 105, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: all var(--transition-fast);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(195, 166, 105, 0.5), 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wa-float-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.wa-float-label {
  font-size: 0.85rem;
}

/* =============================================================
   CTA PROOF LIST — override for checkmarks
============================================================= */
.cta-proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border-left: none;
  padding-left: 0;
  margin: 1.5rem auto 0;
  text-align: center;
}

.cta-proof span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark-muted);
}

/* =============================================================
   RESPONSIVE OVERRIDES
============================================================= */
@media (max-width: 1024px) {
  .hero-showcase-stage {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  .phone-device.side-phone-left,
  .phone-device.side-phone-right {
    transform: none;
  }
  
  .demo-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0.5rem;
  }

  .testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonial-card {
    flex: 0 0 min(70vw, 340px);
    width: min(70vw, 340px);
    max-width: min(70vw, 340px);
    scroll-snap-align: start;
  }

  .faq-intro {
    margin-bottom: 2.25rem;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 1.25rem 0;
    gap: 1rem;
  }

  .faq-answer {
    padding-right: 0.5rem;
  }

  .try-wa-shell {
    padding-bottom: 3rem;
  }

  .faq-try-wa {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
    padding: 1.5rem 1.25rem;
  }

  .hero-try-wa,
  .trust-try-wa {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
    padding: 1.25rem 0 0;
  }

  .trust-try-wa .faq-try-wa-copy {
    text-align: center;
  }

  .faq-try-wa-btn {
    width: auto;
    align-self: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: none;
    gap: 0.75rem;
  }

  .hero-guarantee-badge {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
  }

  .trust-guarantee {
    gap: 1.5rem 2rem;
  }

  .trust-guarantee strong {
    font-size: 1.2rem;
  }

  .demo-split {
    gap: 1.5rem;
  }

  .phone-mock {
    border-radius: var(--radius-lg);
  }

  .owner-alert-card {
    border-radius: var(--radius-lg);
    padding: 1.25rem;
  }

  .guarantee-pledge {
    padding: 1.5rem;
  }

  .guarantee-pledge strong {
    font-size: 1.1rem;
  }

  .cta-pricing-amount strong {
    font-size: 1.35rem;
  }

  .wa-float-label {
    display: none;
  }

  .wa-float {
    padding: 0.85rem;
    border-radius: 50%;
  }
}

@media (max-width: 480px) {
  .trust-guarantee {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.35rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }

  .trust-guarantee::-webkit-scrollbar {
    display: none;
  }

  .trust-guarantee > span {
    flex: 1 1 0;
    min-width: 0;
  }

  .trust-guarantee strong {
    font-size: 0.78rem;
    white-space: nowrap;
  }

  .trust-guarantee small {
    font-size: 0.48rem;
    letter-spacing: 0.04em;
    line-height: 1.2;
    white-space: normal;
    max-width: 4.5rem;
  }

  .guarantee-grid {
    gap: 0.55rem;
  }

  .guarantee-item {
    padding: 0.85rem 0.65rem;
  }

  .guarantee-item strong {
    font-size: 1.2rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }
}

/* =============================================================
   SECTION 02: LEFT SIDEBAR OPTIONS & DEMO PREVIEW
============================================================= */
.page-break-product > .section-shell,
.product.section-shell {
  max-width: 1400px !important;
  margin-left: auto;
  margin-right: auto;
}

.demo-sidebar-container {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-top: 2rem;
  width: 100%;
}

.demo-sidebar-options {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.sidebar-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem;
  background: rgba(19, 26, 36, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: left;
  user-select: none;
}

.sidebar-option-card:hover {
  background: rgba(195, 166, 105, 0.08);
  border-color: rgba(195, 166, 105, 0.3);
  transform: translateX(4px);
}

.sidebar-option-card.active {
  background: linear-gradient(135deg, rgba(195, 166, 105, 0.18), rgba(195, 166, 105, 0.04));
  border-color: var(--brand-gold);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4), 0 0 20px rgba(195, 166, 105, 0.15);
  transform: translateX(6px);
}

.sidebar-option-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.sidebar-option-card.active .sidebar-option-icon {
  background: rgba(195, 166, 105, 0.2);
  color: var(--brand-gold);
}

.sidebar-option-info strong {
  display: block;
  font-size: 0.975rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.2rem;
}

.sidebar-option-info .label-short {
  display: none;
}

.sidebar-option-info > span {
  font-size: 0.8rem;
  color: #94a3b8;
  line-height: 1.35;
  display: block;
}

@media (max-width: 992px) {
  .demo-sidebar-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .demo-sidebar-options {
    flex-direction: row;
    gap: 0.45rem;
    width: 100%;
  }

  .sidebar-option-card {
    flex: 1 1 0;
    min-width: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.7rem 0.35rem;
    border-radius: 12px;
    text-align: center;
  }

  .sidebar-option-card:hover,
  .sidebar-option-card.active {
    transform: none;
  }

  .sidebar-option-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .sidebar-option-icon img {
    width: 18px !important;
    height: 18px !important;
  }

  .sidebar-option-info {
    width: 100%;
  }

  .sidebar-option-info strong {
    font-size: 0.68rem;
    line-height: 1.2;
    margin-bottom: 0;
  }

  .sidebar-option-info .label-full {
    display: none;
  }

  .sidebar-option-info .label-short {
    display: inline;
  }

  .sidebar-option-info > span {
    display: none;
  }
}

@media (max-width: 480px) {
  .sidebar-option-card {
    width: 44px !important;
    height: 44px !important;
    border-radius: 12px !important;
    padding: 0 !important;
  }

  .sidebar-option-icon {
    font-size: 1.1rem !important;
    border-radius: 12px !important;
  }

  .sidebar-option-info {
    display: none !important;
  }
}

.demo-preview-display {
  width: 100%;
  min-width: 0;
}

.demo-panel {
  display: none;
  width: 100%;
}

.demo-panel.active {
  display: block;
  width: 100%;
}

/* Canvas Banner Stage for Demo Panels — fixed frame for every tab */
.ad-banner-canvas.demo-banner-canvas,
.demo-banner-canvas {
  width: 100%;
  height: 520px !important;
  min-height: 520px !important;
  max-height: 520px !important;
  background: #080c14;
  background-image: 
    radial-gradient(circle at 50% 25%, #162030 0%, #080c14 70%),
    radial-gradient(circle at 20% 80%, rgba(195, 166, 105, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(195, 166, 105, 0.08) 0%, transparent 50%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.25rem 1rem;
  box-sizing: border-box;
}

.call-banner-stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0.5rem;
}

/* Sizing for 3-Phone Showcase inside Demo Banner Stage */
.demo-banner-canvas .showcase-stage {
  gap: 0.85rem;
  padding: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.demo-banner-canvas .phone-device {
  width: 180px;
  height: 360px;
  border-radius: 26px;
  padding: 6px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.8);
}

.demo-banner-canvas .phone-device.hero-phone {
  width: 205px;
  height: 410px;
  border-radius: 30px;
  padding: 7px;
}

.demo-banner-canvas .phone-screen,
.demo-banner-canvas .screen-img {
  border-radius: 22px;
}

@media (max-width: 768px) {
  .ad-banner-canvas.demo-banner-canvas,
  .demo-banner-canvas {
    height: 300px !important;
    min-height: 300px !important;
    max-height: 300px !important;
    padding: 0.75rem 0.5rem;
    border-radius: 16px;
  }

  .demo-banner-canvas .showcase-stage {
    gap: 0.35rem;
  }

  .demo-banner-canvas .phone-device {
    width: 110px;
    height: 220px;
    border-radius: 16px;
    padding: 4px;
  }

  .demo-banner-canvas .phone-device.hero-phone {
    width: 130px;
    height: 255px;
    border-radius: 18px;
    padding: 5px;
  }

  .demo-banner-canvas .phone-screen,
  .demo-banner-canvas .screen-img {
    border-radius: 13px;
  }

  .call-banner-stage {
    gap: 0.5rem;
    padding: 0.35rem;
  }

  .center-call-details {
    max-width: 220px;
    padding: 0.7rem 0.8rem;
    border-radius: 14px;
  }
}

@media (max-width: 480px) {
  .ad-banner-canvas.demo-banner-canvas,
  .demo-banner-canvas {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    padding: 0.6rem 0.35rem;
    border-radius: 14px;
  }

  .demo-banner-canvas .showcase-stage {
    gap: 0.2rem;
  }

  .demo-banner-canvas .phone-device {
    width: 88px;
    height: 176px;
    border-radius: 13px;
    padding: 3px;
  }

  .demo-banner-canvas .phone-device.hero-phone {
    width: 105px;
    height: 208px;
    border-radius: 15px;
    padding: 4px;
  }

  .demo-banner-canvas .phone-screen,
  .demo-banner-canvas .screen-img {
    border-radius: 11px;
  }

  .center-call-details {
    max-width: 180px;
    padding: 0.55rem 0.65rem;
  }
}

.center-call-details {
  max-width: 325px;
  width: 100%;
  z-index: 3;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 0 1.5px var(--brand-gold);
  padding: 0.9rem 1.1rem;
  border-radius: 18px;
  gap: 0.65rem;
}

.center-call-details .call-header-row {
  padding-bottom: 0.5rem;
}

.center-call-details .call-header-row h3 {
  font-size: 1.05rem;
}

.center-call-details .ended-reason-tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.65rem;
}

.center-call-details .call-section-block {
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
}

.center-call-details .call-section-block label {
  font-size: 0.65rem;
  margin-bottom: 0.3rem;
}

.center-call-details .call-audio-player {
  height: 32px;
}

.center-call-details .transcript-quote {
  font-size: 0.825rem;
  padding: 0.45rem 0.7rem;
  line-height: 1.35;
}

@media (max-width: 992px) {
  .call-banner-stage {
    flex-wrap: wrap;
  }
}

/* Call Details Right Card */
.call-details-card {
  background: #0b111e;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 1.25rem;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  text-align: left;
}

.call-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.call-header-row h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ended-reason-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  border-radius: 100px;
  font-weight: 600;
}

.call-section-block {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.75rem;
}

.call-section-block label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold-light);
  display: block;
  margin-bottom: 0.4rem;
}

.call-audio-player {
  width: 100%;
  border-radius: 8px;
  outline: none;
}

.transcript-quote {
  font-size: 0.875rem;
  color: #e2e8f0;
  line-height: 1.4;
  margin: 0;
  background: rgba(0, 0, 0, 0.35);
  padding: 0.65rem 0.85rem;
  border-left: 3px solid var(--brand-gold);
  border-radius: 0 8px 8px 0;
}

/* Audio Playing Overlay Badge */
.audio-badge-overlay {
  position: absolute;
  bottom: 14px;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 19, 31, 0.95);
  border: 1px solid var(--brand-gold);
  border-radius: 100px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.775rem;
  font-weight: 600;
  color: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px rgba(195, 166, 105, 0.2);
  z-index: 10;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.audio-badge-overlay.playing {
  opacity: 1;
}

.sound-wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 12px;
}

.sound-wave span {
  width: 2.5px;
  background: var(--brand-gold);
  border-radius: 2px;
  animation: soundWaveAnim 1s infinite ease-in-out;
}

.sound-wave span:nth-child(1) { height: 40%; animation-delay: 0s; }
.sound-wave span:nth-child(2) { height: 100%; animation-delay: 0.2s; }
.sound-wave span:nth-child(3) { height: 60%; animation-delay: 0.4s; }

@keyframes soundWaveAnim {
  0%, 100% { transform: scaleY(0.4); }
  50% { transform: scaleY(1); }
}

/* Messenger / Email split stage — content only, same outer frame */
.messenger-banner-stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0;
  width: 100%;
  height: 100%;
}

.messenger-banner-stage .messenger-hero-phone {
  width: 170px;
  height: 340px;
  flex-shrink: 0;
}

.messenger-phones-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.messenger-phones-wrap .phone-device {
  width: 150px;
  height: 310px;
  border-radius: 24px;
  padding: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.desktop-device-mock {
  width: 440px;
  max-width: 100%;
  background: #0d131f;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(195, 166, 105, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 5;
  flex-shrink: 0;
}

.desktop-topbar {
  background: #141c2b;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.desktop-dots {
  display: flex;
  gap: 6px;
}

.desktop-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.desktop-dot.red { background: #ff5f56; }
.desktop-dot.yellow { background: #ffbd2e; }
.desktop-dot.green { background: #27c93f; }

.desktop-address-bar {
  flex: 1;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.725rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.desktop-screen-img {
  width: 100%;
  display: block;
}

.desktop-clean-card {
  width: min(640px, 70%);
  max-width: 100%;
  max-height: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(195, 166, 105, 0.2);
  overflow: hidden;
  position: relative;
  z-index: 5;
  flex: 1 1 auto;
  min-width: 0;
}

.desktop-clean-card img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  object-position: top center;
  border-radius: 15px;
  display: block;
}

/* Email: Gmail left, CRM phone right — full reply visible */
.email-banner-stage {
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.email-gmail-card {
  width: min(720px, 72%);
  flex: 1 1 auto;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.email-gmail-card img {
  background: #ffffff;
  object-fit: contain;
  object-position: top center;
  width: 100%;
  height: auto;
  max-height: 480px;
  border-radius: 14px;
}

.email-banner-stage .messenger-hero-phone {
  width: 170px;
  height: 340px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .email-gmail-card {
    width: min(100%, 64%);
  }

  .email-gmail-card img {
    max-height: 260px;
  }

  .email-banner-stage .messenger-hero-phone {
    width: 100px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .email-gmail-card img {
    max-height: 200px;
  }

  .email-banner-stage .messenger-hero-phone {
    width: 82px;
    height: 164px;
  }
}

@media (max-width: 992px) {
  .messenger-banner-stage {
    flex-wrap: nowrap;
    gap: 0.55rem;
  }

  .desktop-device-mock,
  .desktop-clean-card {
    width: min(100%, 62%);
  }

  .messenger-banner-stage .messenger-hero-phone {
    width: 140px;
    height: 280px;
  }
}

@media (max-width: 768px) {
  .messenger-banner-stage {
    gap: 0.45rem;
  }

  .messenger-banner-stage .messenger-hero-phone {
    width: 100px;
    height: 200px;
    border-radius: 16px;
    padding: 4px;
  }

  .desktop-clean-card {
    border-radius: 12px;
    width: min(100%, 58%);
  }

  .desktop-clean-card img {
    max-height: 240px;
    border-radius: 11px;
  }
}

@media (max-width: 480px) {
  .messenger-banner-stage .messenger-hero-phone {
    width: 82px;
    height: 164px;
    border-radius: 14px;
    padding: 0px;
  }

  .desktop-clean-card img {
    max-height: 190px;
  }
}

/* Exhibitions — original image, largest fit, uncropped, on shared demo background */
.expo-banner-stage {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

.expo-fullscreen-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

/* =============================================================
   OMNICHANNEL BANNER (hero replacement for channel icon grid)
============================================================= */
.omni-banner {
  width: 100%;
  max-width: 1280px;
  position: relative;
  z-index: 2;
  display: block;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
  min-height: 0;
}

/* Hero already has grid/halos — hide banner chrome overlays */
.omni-grid-overlay {
  display: none;
}

.omni-flow-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.omni-flow-path {
  fill: none;
  stroke: rgba(195, 166, 105, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 6 10;
  animation: omni-dash-flow 18s linear infinite;
}

.omni-flow-path.soft {
  stroke: rgba(195, 166, 105, 0.14);
  stroke-width: 1;
}

@keyframes omni-dash-flow {
  to { stroke-dashoffset: -320; }
}

.omni-banner-body {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1.15fr 0.9fr 1.05fr;
  gap: 1.25rem;
  align-items: center;
  padding: 0.5rem 0 0;
  min-height: 0;
}

.omni-cta-column,
.omni-outcome-column {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  min-width: 0;
}

.omni-col-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 0.15rem;
}

.omni-cta-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.38rem;
}

.omni-cta-chip {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem 0.55rem 0.55rem;
  border-radius: 12px;
  background: rgba(19, 26, 36, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  animation: omni-chip-in 0.7s ease both, omni-chip-drift 5.5s ease-in-out infinite;
  width: 100%;
  min-width: 0;
}

.omni-cta-chip:nth-child(odd) { animation-delay: 0s, 0.2s; }
.omni-cta-chip:nth-child(even) { animation-delay: 0.08s, 1.1s; }
.omni-cta-chip:nth-child(3n) { animation-delay: 0.16s, 2s; }

.omni-cta-chip .icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.omni-cta-chip .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.omni-cta-chip .copy {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.omni-cta-chip .copy strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: #f8fafc;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.omni-cta-chip .copy span {
  font-size: 0.62rem;
  color: #ffffff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes omni-chip-in {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes omni-chip-drift {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.omni-hub-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  position: relative;
  padding: 0 0.5rem;
}

.omni-hub-ring {
  position: relative;
  width: 168px;
  height: 168px;
  display: grid;
  place-items: center;
}

.omni-hub-ring::before,
.omni-hub-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(195, 166, 105, 0.35);
  animation: omni-pulse-ring 2.8s ease-out infinite;
}

.omni-hub-ring::after {
  inset: -14px;
  border-color: rgba(195, 166, 105, 0.18);
  animation-delay: 0.9s;
}

@keyframes omni-pulse-ring {
  0% { transform: scale(0.92); opacity: 0.85; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}

.omni-hub-core {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(229, 205, 151, 0.2), transparent 45%),
    rgba(19, 26, 36, 0.55);
  border: 1px solid rgba(195, 166, 105, 0.4);
  box-shadow: 0 0 0 8px rgba(195, 166, 105, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.omni-hub-core img {
  width: 78px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(195, 166, 105, 0.25));
}

.omni-hub-headline {
  max-width: 240px;
}

.omni-hub-title {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 0.45rem;
  color: #fff;
}

.omni-hub-title em {
  font-style: normal;
  color: var(--brand-gold-light, #e5cd97);
}

.omni-hub-headline p:not(.omni-hub-title) {
  font-size: 0.78rem;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

.omni-hub-steps {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
}

.omni-hub-step {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-gold-light, #e5cd97);
  padding: 0.32rem 0.55rem;
  border-radius: 100px;
  border: 1px solid rgba(195, 166, 105, 0.28);
  background: rgba(195, 166, 105, 0.08);
}

.omni-reply-stack {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.omni-reply-bubble {
  align-self: flex-start;
  max-width: 95%;
  padding: 0.55rem 0.75rem;
  border-radius: 14px 14px 14px 4px;
  background: rgba(195, 166, 105, 0.1);
  border: 1px solid rgba(195, 166, 105, 0.22);
  animation: omni-bubble-in 0.65s ease both;
}

.omni-reply-bubble:nth-child(2) {
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
  background: rgba(19, 26, 36, 0.45);
  border-color: rgba(255, 255, 255, 0.08);
  animation-delay: 0.25s;
}

.omni-reply-bubble:nth-child(3) { animation-delay: 0.45s; }

.omni-reply-bubble .meta {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand-gold-light, #e5cd97);
  margin-bottom: 0.2rem;
}

.omni-reply-bubble p {
  font-size: 0.72rem;
  line-height: 1.35;
  color: #ffffff;
  margin: 0;
}

@keyframes omni-bubble-in {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.omni-dash-panel {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
  background: rgba(0, 0, 0, 0.35);
  aspect-ratio: 16 / 11;
  max-height: 210px;
}

.omni-dash-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  display: block;
  opacity: 0.95;
}

.omni-dash-badge {
  position: absolute;
  left: 0.7rem;
  bottom: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border-radius: 100px;
  background: rgba(8, 12, 20, 0.82);
  border: 1px solid rgba(195, 166, 105, 0.35);
  backdrop-filter: blur(8px);
}

.omni-dash-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.8);
  animation: omni-live-blink 1.6s ease-in-out infinite;
}

@keyframes omni-live-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.omni-dash-badge span {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--brand-gold-light, #e5cd97);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 1100px) {
  .omni-banner-body {
    grid-template-columns: 1fr;
    grid-template-areas:
      "cta"
      "hub";
    gap: 1.35rem;
    padding: 0.25rem 0 0;
    align-items: center;
  }

  .omni-cta-column {
    grid-area: cta;
    align-items: center;
    text-align: center;
  }

  .omni-hub-column {
    grid-area: hub;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Hide "What krid does next" on iPad / tablet */
  .omni-outcome-column {
    display: none !important;
  }

  .omni-cta-chip .copy strong,
  .omni-cta-chip .copy span {
    white-space: normal;
  }

  .omni-hub-headline {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 480px;
  }

  .omni-hub-steps {
    justify-content: center;
  }

  .omni-cta-column .omni-col-label {
    text-align: center;
    width: 100%;
  }

  .omni-hub-ring { width: 140px; height: 140px; }
  .omni-hub-core { width: 104px; height: 104px; }
  .omni-flow-lines { display: none; }

  /* iPad / tablet: 4 compact icon chips per row */
  .omni-cta-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.55rem 0.4rem;
  }

  .omni-cta-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.2rem 0.15rem;
    border-radius: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    animation: none;
    width: 100%;
    min-width: 0;
  }

  .omni-cta-chip .icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: transparent;
    padding: 0;
  }

  .omni-cta-chip .icon img {
    width: 52px;
    height: 52px;
  }

  .omni-cta-chip .copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
  }

  .omni-cta-chip .copy strong {
    font-size: 0.68rem;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    line-height: 1.2;
  }

  .omni-cta-chip .copy span {
    display: none;
  }
}

@media (max-width: 640px) {
  /* Phone: keep 4-col compact chips; outcome stays hidden */
  .omni-banner-body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "cta"
      "hub";
    gap: 1rem !important;
  }

  .omni-cta-rail {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.38rem;
    overflow: visible;
  }

  .omni-outcome-column {
    display: none !important;
  }
}

/* =============================================================
   SCROLL MARGINS & FIXED HEADER ALIGNMENT
============================================================= */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

#top,
#how,
#product,
#guarantee,
#faq,
#proof,
#map-inbound {
  scroll-margin-top: 110px;
}

/* =============================================================
   MOBILE / TABLET NAVIGATION DRAWER (<= 1200px)
============================================================= */
@media (max-width: 1200px) {
  .site-header {
    padding: 0.85rem 1.25rem !important;
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center !important;
    gap: 0.65rem !important;
  }

  .site-header .brand-logo-wrap {
    margin-right: auto;
  }

  .site-header .brand-logo-img {
    height: 1.85rem;
  }

  .header-cta {
    padding: 0.5rem 0.95rem;
    font-size: 0.825rem;
    margin-left: 0 !important;
    flex-shrink: 0;
  }

  .mobile-menu-btn {
    flex-shrink: 0;
    margin-left: 0 !important;
  }

  .site-header nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(100vh - 60px);
    background: rgba(8, 12, 20, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2.25rem 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-bottom: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    z-index: 999;
  }

  .site-header nav a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: normal;
  }

  .site-header nav a::after {
    display: none;
  }

  .site-header nav a:hover,
  .site-header nav a.active {
    color: var(--brand-gold);
  }

  .site-header nav a.active {
    color: var(--brand-gold-light);
  }

  .about-hero {
    padding-top: 6.5rem !important;
  }

  .contact-container {
    padding-top: 5.25rem !important;
  }
}

@media (max-width: 480px) {
  .header-cta {
    display: none;
  }
}

/* =============================================================
   TABLET / MOBILE INTERACTIVE DEMO — centered intro + icon tabs
============================================================= */
@media (max-width: 1100px) {
  .page-break-product .section-intro {
    text-align: center !important;
  }

  .page-break-product .section-intro > div {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .demo-sidebar-options {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.55rem !important;
    width: 100% !important;
    overflow: visible !important;
    white-space: normal !important;
    padding-bottom: 0.35rem !important;
  }

  .sidebar-option-card {
    flex: 0 0 auto !important;
    min-width: 0 !important;
    width: 48px !important;
    height: 48px !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 !important;
    border-radius: 14px !important;
    background: rgba(19, 26, 36, 0.85) !important;
  }

  .sidebar-option-card.active {
    transform: none !important;
    border-color: var(--brand-gold) !important;
    background: rgba(195, 166, 105, 0.22) !important;
  }

  .sidebar-option-icon {
    width: 100% !important;
    height: 100% !important;
    border-radius: 14px !important;
    font-size: 1.2rem !important;
    background: transparent !important;
  }

  .sidebar-option-icon img {
    width: 22px !important;
    height: 22px !important;
  }

  .sidebar-option-info {
    display: none !important;
  }
}

/* =============================================================
   SITEWIDE MOBILE DENSITY (compact type, padding, forms)
============================================================= */
@media (max-width: 768px) {
  html {
    font-size: 15px;
    scroll-padding-top: 92px;
  }

  #top,
  #how,
  #product,
  #guarantee,
  #faq,
  #proof,
  #map-inbound {
    scroll-margin-top: 92px;
  }

  .section-shell,
  .page-break-urgency .section-shell {
    padding: 2.75rem 1rem !important;
  }

  .page-break-caio {
    padding: 2.5rem 1rem !important;
  }

  .page-break-brand-logic {
    padding: 1.5rem 1rem !important;
  }

  .hero {
    padding: 5rem 1rem 2.25rem !important;
  }

  .hero-copy {
    margin-bottom: 1.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.7rem, 7vw, 2.25rem) !important;
    line-height: 1.12;
  }

  .hero-deck {
    font-size: 0.95rem !important;
    line-height: 1.5;
  }

  .hero-guarantee-badge {
    margin: 1.15rem auto 0;
    padding: 0.7rem 0.85rem;
  }

  .hero-cta-row {
    margin-top: 1rem;
    gap: 0.65rem;
  }

  .section-index {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    margin-bottom: 0.45rem;
  }

  .eyebrow {
    font-size: 0.8rem;
    margin-bottom: 0.35rem;
  }

  .problem-main h2,
  .page-break-product .section-intro h2,
  .money-copy h2,
  .control-layout h2,
  .page-break-expansion .section-intro h2,
  .caio-layout h2,
  .cta-copy h2,
  .guarantee-intro h2,
  .faq-intro h2,
  .testimonials h2 {
    font-size: clamp(1.55rem, 6.5vw, 2rem) !important;
    line-height: 1.15;
    white-space: normal !important;
  }

  .problem-main p,
  .section-intro p,
  .money-copy p,
  .control-layout p,
  .caio-layout p,
  .cta-copy p,
  .faq-intro > p:last-child {
    font-size: 0.92rem !important;
    line-height: 1.5;
  }

  .problem-cta-row {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .button,
  .button-dark,
  .button-primary {
    padding: 0.7rem 1.1rem;
    font-size: 0.875rem;
  }

  .trust-bar {
    padding: 1.5rem 1rem 1.25rem;
  }

  .trust-guarantee {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.5rem 0.65rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0 !important;
    border-bottom: none !important;
  }

  .trust-guarantee > span {
    flex: 1 1 0;
    min-width: 0;
  }

  .trust-guarantee strong {
    font-size: 0.9rem;
    white-space: nowrap;
  }

  .trust-guarantee small {
    font-size: 0.55rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
    white-space: normal;
  }

  .trust-industries {
    font-size: 0.75rem;
    padding-top: 0.5rem;
    border-top: none !important;
  }

  .demo-split {
    gap: 1.15rem;
    margin: 1.5rem 0;
  }

  .owner-alert-card {
    padding: 1rem !important;
  }

  .capability-grid article,
  .outcome-grid article,
  .control-stack article {
    padding: 1.15rem 1rem !important;
  }

  .capability-grid article h3,
  .outcome-grid article h3,
  .control-stack article h3,
  .value-card h3 {
    font-size: 1rem;
  }

  .capability-grid article p,
  .outcome-grid article p,
  .control-stack article p {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .brand-logic span {
    padding: 0.95rem 0.85rem !important;
  }

  .brand-logic strong {
    font-size: 0.95rem !important;
  }

  .brand-logic small {
    font-size: 0.78rem !important;
  }

  .workflow-display,
  .brand-logic,
  .capability-grid,
  .outcome-grid {
    gap: 0.85rem !important;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    margin-top: 1.5rem !important;
  }

  .capability-grid article {
    padding: 1rem 0.85rem !important;
  }

  .capability-grid article span {
    font-size: 0.75rem !important;
    margin-bottom: 0.35rem !important;
  }

  .capability-grid article h3 {
    font-size: 0.95rem !important;
    margin-bottom: 0.35rem !important;
  }

  .capability-grid article p {
    font-size: 0.78rem !important;
    line-height: 1.4 !important;
  }

  .guarantee-intro {
    margin-bottom: 1.75rem !important;
  }

  .guarantee-shield-icon {
    font-size: 2rem !important;
    margin: 0.4rem 0 !important;
  }

  .guarantee-intro > p {
    font-size: 0.92rem !important;
  }

  .guarantee-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
    margin-bottom: 1.5rem !important;
    max-width: none !important;
  }

  .guarantee-item {
    padding: 1rem 0.75rem !important;
  }

  .guarantee-item strong {
    font-size: 1.35rem !important;
  }

  .guarantee-item > span {
    font-size: 0.65rem !important;
  }

  .guarantee-item p {
    font-size: 0.72rem !important;
    line-height: 1.4 !important;
  }

  .guarantee-pledge {
    padding: 1.1rem !important;
  }

  .guarantee-pledge strong {
    font-size: 1rem !important;
  }

  .testimonial-card {
    flex: 0 0 min(78vw, 300px) !important;
    width: min(78vw, 300px) !important;
    max-width: min(78vw, 300px) !important;
    scroll-snap-align: start;
    padding: 1.15rem !important;
  }

  .try-wa-shell {
    padding-bottom: 2rem !important;
  }

  .faq-try-wa h3 {
    font-size: 1.05rem !important;
  }

  .faq-intro {
    margin: 0 auto 1.5rem !important;
    text-align: center;
  }

  .faq-item summary {
    font-size: 0.95rem !important;
    padding: 0.95rem 0 !important;
    gap: 0.75rem !important;
  }

  .faq-answer {
    font-size: 0.9rem;
    padding-bottom: 0.95rem;
  }

  .faq-try-wa {
    padding: 1.1rem 1rem !important;
    gap: 0.85rem !important;
  }

  .cta form {
    padding: 1.15rem 1rem 1.25rem !important;
    border-radius: 16px !important;
  }

  .form-head {
    padding-bottom: 0.75rem !important;
    margin-bottom: 1rem !important;
  }

  .form-head span,
  .form-head strong {
    font-size: 0.75rem !important;
  }

  .cta form .form-field {
    margin-bottom: 0.75rem !important;
    gap: 0.3rem;
  }

  .cta form .form-row {
    margin-bottom: 0.75rem !important;
    gap: 0.75rem;
  }

  .cta form .form-field label,
  .cta form label {
    font-size: 0.78rem !important;
    margin-bottom: 0.75rem;
  }

  .cta form input,
  .cta form select,
  .cta form textarea {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.9rem !important;
  }

  .cta form small {
    margin-top: 0.65rem !important;
    font-size: 0.75rem !important;
  }

  .cta-pricing-amount strong {
    font-size: 1.2rem !important;
  }

  #footer {
    padding: 2.5rem 1rem 1.5rem !important;
  }

  .footer-lead {
    margin-bottom: 2rem !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
    gap: 0.75rem;
  }

  .footer-lead strong {
    font-size: clamp(0.68rem, 3.1vw, 0.95rem) !important;
    line-height: 1.3 !important;
    white-space: nowrap !important;
  }

  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 1.5rem !important;
  }

  .footer-directory h3 {
    font-size: 0.85rem;
    margin-bottom: 0.65rem;
  }

  .footer-directory a {
    font-size: 0.85rem;
    padding: 0.2rem 0;
  }

  .footer-bottom {
    padding-top: 1.25rem !important;
    font-size: 0.8rem;
  }

  .about-hero {
    padding: 5rem 1rem 2rem !important;
  }

  .about-hero h1 {
    font-size: clamp(1.65rem, 6.5vw, 2.1rem) !important;
    margin-bottom: 0.75rem !important;
  }

  .about-hero > p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }

  .about-story {
    padding: 1.5rem 1rem 2rem !important;
  }

  .about-story h2,
  .about-section > h2 {
    font-size: 1.35rem !important;
    margin-bottom: 0.85rem !important;
  }

  .about-story p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 0.75rem !important;
  }

  .about-section {
    padding: 1rem 1rem 2.5rem !important;
  }

  .about-section > h2 {
    margin-bottom: 1.25rem !important;
  }

  .values-grid {
    gap: 0.85rem !important;
  }

  .value-card {
    padding: 1.15rem 1rem !important;
  }

  .value-card p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  .team-band {
    padding: 2.25rem 1rem !important;
  }

  .team-band-inner > p {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
    margin-bottom: 1.25rem !important;
  }

  .team-highlights {
    gap: 0.75rem !important;
  }

  .team-highlight {
    padding: 1.1rem 0.95rem !important;
  }

  .team-highlight strong {
    font-size: 1.45rem !important;
    margin-bottom: 0.3rem !important;
  }

  .team-highlight span {
    font-size: 0.82rem !important;
  }

  .contact-container {
    padding: 5rem 1rem 2.25rem !important;
    gap: 1.5rem !important;
  }

  .product-guarantee {
    padding: 1.15rem 1rem !important;
    margin-bottom: 1.5rem !important;
    border-radius: 16px !important;
  }

  .product-guarantee strong {
    font-size: 1.1rem !important;
  }

  .product-guarantee p {
    font-size: 0.88rem !important;
  }

  .workflow-display {
    padding: 1.25rem 0.85rem !important;
    gap: 1rem !important;
  }

  .workflow-display h3 {
    font-size: 1.25rem !important;
  }

  .omni-banner {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14.5px;
  }

  .section-shell,
  .page-break-urgency .section-shell {
    padding: 2.25rem 0.85rem !important;
  }

  .hero {
    padding: 4.5rem 0.85rem 1.75rem !important;
  }

  .hero-copy h1 {
    font-size: 1.55rem !important;
  }

  .hero-deck {
    font-size: 0.9rem !important;
  }

  .problem-main h2,
  .page-break-product .section-intro h2,
  .money-copy h2,
  .control-layout h2,
  .page-break-expansion .section-intro h2,
  .caio-layout h2,
  .cta-copy h2,
  .guarantee-intro h2,
  .faq-intro h2,
  .testimonials h2 {
    font-size: 1.45rem !important;
    white-space: normal !important;
  }

  .guarantee-item {
    padding: 0.85rem 0.65rem !important;
  }

  .guarantee-item strong {
    font-size: 1.2rem !important;
  }

  .guarantee-item > span {
    font-size: 0.6rem !important;
  }

  .guarantee-item p {
    font-size: 0.68rem !important;
  }

  .testimonial-card {
    padding: 1rem !important;
  }

  .cta form {
    padding: 1rem 0.85rem 1.1rem !important;
  }

  #footer {
    padding: 2rem 0.85rem 1.25rem !important;
  }

  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.85rem !important;
  }

  .about-hero {
    padding: 4.5rem 0.85rem 1.5rem !important;
  }

  .about-hero h1 {
    font-size: 1.5rem !important;
  }

  .about-story,
  .about-section {
    padding-left: 0.85rem !important;
    padding-right: 0.85rem !important;
  }

  .contact-container {
    padding: 4.5rem 0.85rem 1.75rem !important;
    gap: 1.25rem !important;
  }
}

/* =============================================================
   MOBILE OPTIMIZATION PASS — Compact, clean, no wasted space
   (appended after all existing rules to ensure specificity wins)
============================================================= */

/* ── 768px and below ─────────────────────────────────────── */
@media (max-width: 768px) {

  /* --- Brand Logic Strip: 2×2 grid instead of stacked 1-col --- */
  .brand-logic {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0 !important;
  }

  .brand-logic span {
    padding: 0.85rem 0.6rem !important;
    border-right: 1px solid rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .brand-logic span:nth-child(even) {
    border-right: none;
  }

  .brand-logic span:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .brand-logic strong {
    font-size: 1.35rem !important;
  }

  .brand-logic small {
    font-size: 0.72rem !important;
  }

  /* --- Omni Banner: chips full-width, hub | outcome side-by-side on iPad --- */
  .omni-banner {
    overflow: hidden;
  }

  .omni-banner-body {
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "cta"
      "hub";
    gap: 1.15rem !important;
    padding-top: 0.25rem !important;
    align-items: center !important;
  }

  /* Channel chips: same layout as desktop (icon + label + subtitle) */
  .omni-cta-column {
    grid-area: cta !important;
    order: 0 !important;
    gap: 0.45rem !important;
    display: flex !important;
    align-items: center !important;
    text-align: center !important;
  }

  .omni-cta-column .omni-col-label {
    display: block !important;
    text-align: center !important;
    font-size: 0.68rem !important;
    margin-bottom: 0.15rem !important;
  }

  .omni-cta-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-rows: none !important;
    overflow: visible !important;
    gap: 0.38rem !important;
    padding-bottom: 0 !important;
    scroll-snap-type: none !important;
  }

  .omni-cta-chip {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35rem !important;
    padding: 0.1rem 0.05rem !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    animation: none !important;
    width: 100% !important;
    min-width: 0 !important;
    scroll-snap-align: unset !important;
  }

  .omni-cta-chip .icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    flex-shrink: 0;
  }

  .omni-cta-chip .icon img {
    width: 48px !important;
    height: 48px !important;
  }

  .omni-cta-chip .copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 0;
    width: 100%;
    margin-top: 0 !important;
  }

  .omni-cta-chip .copy strong {
    font-size: 0.62rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    display: block !important;
    color: #f8fafc;
    max-width: 100%;
  }

  .omni-cta-chip .copy span {
    display: none !important;
  }

  /* Hub column: left side on iPad */
  .omni-hub-column {
    grid-area: hub !important;
    order: 0 !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.85rem !important;
    padding: 0.35rem 0 0.15rem !important;
    text-align: center !important;
  }

  .omni-hub-ring {
    width: 112px !important;
    height: 112px !important;
    flex-shrink: 0;
  }

  .omni-hub-core {
    width: 82px !important;
    height: 82px !important;
  }

  .omni-hub-core img {
    width: 54px !important;
  }

  .omni-hub-headline {
    max-width: 420px !important;
    text-align: center !important;
    margin-left: auto;
    margin-right: auto;
  }

  .omni-hub-title {
    font-size: 1.65rem !important;
    margin-bottom: 0.4rem !important;
    line-height: 1.12 !important;
  }

  .omni-hub-headline p:not(.omni-hub-title) {
    font-size: 0.88rem !important;
    margin-left: auto;
    margin-right: auto;
  }

  .omni-hub-steps {
    gap: 0.35rem !important;
    justify-content: center !important;
    flex-wrap: wrap;
  }

  .omni-hub-step {
    font-size: 0.62rem !important;
    padding: 0.28rem 0.55rem !important;
  }

  /* Outcome column: hidden on iPad / tablet */
  .omni-outcome-column {
    display: none !important;
  }

  /* --- Leak lines: keep each bullet on one line --- */
  .leak-lines {
    gap: 0.75rem !important;
    max-width: 100% !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.15rem;
  }

  .leak-lines::-webkit-scrollbar {
    display: none;
  }

  .leak-lines p {
    font-size: 0.78rem !important;
    padding-left: 1.35rem !important;
    white-space: nowrap !important;
    line-height: 1.35 !important;
  }

  /* --- Problem punch box compact --- */
  .problem-punch {
    padding: 0.85rem 1rem !important;
    margin-bottom: 1.25rem !important;
  }

  .problem-punch span {
    font-size: 0.72rem !important;
    letter-spacing: 0.06em !important;
    line-height: 1.35 !important;
  }

  .problem-punch strong {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
  }

  /* --- Capability / Outcome / Control cards — tighten icon --- */
  .capability-grid article span,
  .outcome-grid article span {
    font-size: 0.75rem !important;
    margin-bottom: 0.35rem !important;
  }

  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.65rem !important;
  }

  .capability-grid article {
    padding: 0.85rem 0.7rem !important;
  }

  .capability-grid article h3 {
    font-size: 0.88rem !important;
  }

  .capability-grid article p {
    font-size: 0.72rem !important;
  }

  /* --- Control layout: full width, 1×3 centered cards on mobile --- */
  .control-layout {
    grid-template-columns: 1fr !important;
    gap: 1.35rem !important;
    text-align: center !important;
  }

  .control-layout > div:first-child {
    text-align: center !important;
  }

  .control-deck {
    margin-left: auto;
    margin-right: auto;
    max-width: 36ch;
  }

  .control-stack {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.55rem !important;
    width: 100%;
  }

  .control-stack article {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.55rem !important;
    padding: 0.85rem 0.55rem !important;
  }

  .control-stack article span {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
    border-radius: 8px !important;
    margin: 0 auto;
  }

  .control-stack article h3 {
    font-size: 0.78rem !important;
    line-height: 1.25 !important;
    margin-bottom: 0.25rem !important;
  }

  .control-stack article p {
    font-size: 0.65rem !important;
    line-height: 1.35 !important;
  }

  .control-close {
    grid-column: 1 !important;
    font-size: 0.85rem !important;
    margin-top: 0.75rem !important;
  }

  /* --- CAIO section: single col, compact --- */
  .caio-layout {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  /* --- CTA section: single col, compact, centered --- */
  .cta {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: none !important;
    text-align: center !important;
  }

  .cta-copy {
    align-items: center !important;
    text-align: center !important;
  }

  .cta-proof {
    align-items: center !important;
    border-left: none !important;
    padding-left: 0 !important;
    text-align: center !important;
  }

  .cta-open-form {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* --- Instrument line in outcome --- */
  .instrument-line {
    padding: 1.1rem 1rem !important;
  }

  .instrument-line strong {
    font-size: 1.05rem !important;
  }

  /* --- Footer bottom: stack properly --- */
  .footer-bottom {
    flex-direction: column !important;
    gap: 0.65rem !important;
    text-align: center !important;
  }

  .footer-bottom div {
    justify-content: center !important;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem !important;
  }

  /* --- Hero guarantee badge more compact --- */
  .hero-guarantee-badge strong {
    font-size: 0.975rem !important;
  }

  .hero-guarantee-badge p {
    font-size: 0.82rem !important;
  }

  /* --- Workflow lab tabs: horizontal scroll on mobile --- */
  .workflow-tabs {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .workflow-tabs::-webkit-scrollbar {
    display: none;
  }

  .workflow-tabs button {
    min-width: 110px !important;
    padding: 0.9rem 0.65rem !important;
    font-size: 0.8rem !important;
  }

  .workflow-display {
    grid-template-columns: 1fr !important;
    padding: 1.25rem 1rem !important;
    gap: 0.85rem !important;
  }

  .software-line {
    font-size: 0.9rem !important;
  }

  /* --- Product guarantee box --- */
  .product-guarantee {
    padding: 1rem 1.1rem !important;
  }

  /* --- CTA pricing hint compact --- */
  .cta-pricing-hint {
    padding: 1rem 1rem !important;
  }

  /* --- Faq try-wa compact on mobile --- */
  .trust-try-wa {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 0.85rem !important;
    padding-top: 1rem !important;
    margin-top: 1rem !important;
  }

  .trust-try-wa .faq-try-wa-copy {
    text-align: center !important;
  }

  .trust-try-wa .faq-try-wa-btn,
  .faq-try-wa-btn {
    width: auto !important;
    align-self: center !important;
    justify-content: center;
    padding: 0.65rem 1.1rem !important;
    font-size: 0.85rem !important;
  }
}

/* ── 480px and below ─────────────────────────────────────── */
@media (max-width: 480px) {

  /* Brand logic: keep 2×2 but even tighter */
  .brand-logic strong {
    font-size: 1.15rem !important;
  }

  /* Omni banner: same chip style as desktop */
  .omni-cta-column {
    display: flex !important;
    order: 1;
    gap: 0.45rem !important;
  }

  .omni-col-label {
    display: block !important;
    text-align: center !important;
  }

  .omni-cta-rail {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-template-rows: none !important;
    overflow: visible !important;
    gap: 0.38rem !important;
    padding-bottom: 0 !important;
    width: 100%;
    scroll-snap-type: none !important;
  }

  .omni-cta-chip {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.25rem !important;
    padding: 0.1rem !important;
    border-radius: 0 !important;
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
    min-width: 0 !important;
    scroll-snap-align: unset !important;
  }

  .omni-cta-chip .icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 0 !important;
    background: transparent !important;
  }

  .omni-cta-chip .icon img {
    width: 40px !important;
    height: 40px !important;
  }

  .omni-cta-chip .copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    min-width: 0;
    width: 100%;
    margin-top: 0.18rem;
  }

  .omni-cta-chip .copy strong {
    font-size: 0.5rem !important;
    text-align: center !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    display: block !important;
    color: #f8fafc;
    max-width: 100%;
  }

  .omni-cta-chip .copy span {
    display: none !important;
  }

  .omni-outcome-column {
    display: none !important;
  }

  .omni-reply-stack {
    display: none !important;
  }

  .omni-hub-column {
    flex-direction: column !important;
    grid-area: hub;
    order: 0 !important;
    gap: 0.65rem !important;
    padding: 0.5rem 0 !important;
  }

  .omni-hub-ring {
    width: 88px !important;
    height: 88px !important;
  }

  .omni-hub-core {
    width: 62px !important;
    height: 62px !important;
  }

  .omni-hub-core img {
    width: 40px !important;
  }

  .omni-hub-headline {
    max-width: 300px !important;
    text-align: center !important;
  }

  .omni-hub-title {
    font-size: 1.55rem !important;
    line-height: 1.12 !important;
  }

  .omni-hub-steps {
    justify-content: center !important;
  }

  /* Channels grid: smaller chips */
  .channel-card-item {
    padding: 0.28rem 0.5rem !important;
    gap: 0.32rem !important;
  }

  /* Leak lines */
  .leak-lines p {
    font-size: 0.85rem !important;
    padding-left: 1.2rem !important;
  }

  /* Control stack: 1×3 centered */
  .control-stack {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.45rem !important;
  }

  .control-stack article {
    gap: 0.4rem !important;
    padding: 0.75rem 0.4rem !important;
  }

  .control-stack article h3 {
    font-size: 0.72rem !important;
  }

  .control-stack article p {
    font-size: 0.6rem !important;
  }

  /* Footer: 3-col directory on mobile */
  .footer-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 0.75rem !important;
  }

  .footer-directory h3 {
    font-size: 0.72rem !important;
  }

  .footer-directory a {
    font-size: 0.75rem !important;
  }

  /* Instrument line */
  .instrument-line {
    padding: 0.85rem !important;
  }

  /* Workflow tabs */
  .workflow-tabs button {
    min-width: 90px !important;
    font-size: 0.75rem !important;
    padding: 0.75rem 0.5rem !important;
  }

  /* Outcome grid: tighten article spacing */
  .outcome-grid article {
    padding: 1.25rem 1rem !important;
  }
}

/* =============================================================
   LEAD AUDIT FORM MODAL (popup like current site)
============================================================= */
.audit-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.audit-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.audit-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 12, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.audit-modal__panel {
  position: relative;
  width: min(100%, 34rem);
  max-height: min(92vh, 52rem);
  overflow-y: auto;
  background: #0f151d;
  border: 1px solid rgba(195, 166, 105, 0.28);
  border-radius: 1rem;
  padding: 1.75rem 1.75rem 1.5rem;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.audit-modal__close {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 9999px;
  background: #1e2736;
  color: #cbd5e1;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.audit-modal__close:hover {
  background: #2a3441;
  color: #fff;
}

.audit-modal__eyebrow {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-gold, #c3a669);
  margin: 0 0 0.35rem;
  padding-right: 2.5rem;
}

.audit-modal__title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #f8fafc;
  margin: 0 0 0.35rem;
  padding-right: 2rem;
  letter-spacing: -0.02em;
}

.audit-modal__subtitle {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #94a3b8;
  margin: 0 0 1.35rem;
}

.audit-modal #lead-audit-form {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  display: block;
  width: 100%;
}

.audit-modal #lead-audit-form .form-field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.4rem;
  margin-bottom: 1rem;
  width: 100%;
}

.audit-modal #lead-audit-form .form-field label {
  display: block;
  width: 100%;
  margin: 0;
  color: #e2e8f0;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
}

.audit-modal #lead-audit-form input,
.audit-modal #lead-audit-form select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-family: var(--font-main, inherit);
  font-size: 0.95rem;
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
}

.audit-modal #lead-audit-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%94a3b8' d='M1.4.6 6 5.2 10.6.6 12 2 6 8 0 2z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.4rem;
}

.audit-modal #lead-audit-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-bottom: 1rem;
  width: 100%;
}

.audit-modal #lead-audit-form .form-row .form-field {
  margin-bottom: 0;
  min-width: 0;
}

.audit-modal #lead-audit-form .phone-input {
  display: flex;
  align-items: stretch;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(10, 14, 20, 0.9);
  overflow: hidden;
}

.audit-modal #lead-audit-form .phone-input-prefix {
  display: inline-flex;
  align-items: center;
  padding: 0 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
}

.audit-modal #lead-audit-form .phone-input input {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  min-width: 0;
}

.audit-modal #lead-audit-form .button {
  width: 100%;
  margin-top: 0.15rem;
}

.audit-modal #lead-audit-form small {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  color: #94a3b8;
}

@media (max-width: 480px) {
  .audit-modal {
    padding: 0.75rem;
    align-items: flex-end;
  }

  .audit-modal__panel {
    width: 100%;
    max-height: 88vh;
    border-radius: 1rem 1rem 0.75rem 0.75rem;
    padding: 1.35rem 1.1rem 1.15rem;
  }

  .audit-modal__title {
    font-size: 1.25rem;
  }

  .audit-modal #lead-audit-form .form-row {
    grid-template-columns: 1fr;
  }
}
