/* styles.css — Avyra (Dark/Light Theme) */

/* Default = LIGHT */
:root,
:root[data-theme="light"]{
  --page-bg: #f5f7fb;
  --page-bg-2: #ffffff;
  --text: #0b0e14;
  --muted: rgba(11,14,20,0.66);

  --nav-bg: rgba(255, 255, 255, 0.88);
  --nav-border: rgba(10,11,16,0.08);

  --accent-pink: #ff2d75;
  --accent-blue: #0b74ff;

  --avyra-purple: #5B4FD6;
  --avyra-cyan: #2FB8E0;

  --glass-bg: rgba(255, 255, 255, 0.86);
  --glass-border: rgba(10, 11, 16, 0.08);

  --pill-bg: rgba(10,11,16,0.04);
  --pill-border: rgba(10,11,16,0.08);
  --pill-text: rgba(11,14,20,0.78);

  --neon-glow: 0 10px 24px rgba(255, 45, 117, 0.08);
  --blue-glow: 0 12px 28px rgba(11, 116, 255, 0.10);
  --card-shadow: 0 14px 36px rgba(11, 14, 20, 0.08);
  --card-shadow-hover: 0 18px 44px rgba(11, 14, 20, 0.10);

  --demo-bg: linear-gradient(45deg, #ffffff, #f3f5fb);
  --footer-bg: rgba(10,11,16,0.04);
}

/* DARK */
:root[data-theme="dark"]{
  --page-bg: #0a0b10;
  --page-bg-2: #07080c;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.68);

  --nav-bg: rgba(10, 11, 16, 0.9);
  --nav-border: rgba(255,255,255,0.10);

  --accent-pink: #ff2d75;
  --accent-blue: #00d2ff;

  --avyra-purple: #7A6BEA;
  --avyra-cyan: #7FD1F2;

  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);

  --pill-bg: rgba(255,255,255,0.04);
  --pill-border: rgba(255,255,255,0.12);
  --pill-text: rgba(255,255,255,0.82);

  --neon-glow: 0 0 18px rgba(255, 45, 117, 0.22);
  --blue-glow: 0 0 18px rgba(0, 210, 255, 0.16);
  --card-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  --card-shadow-hover: 0 22px 52px rgba(0, 0, 0, 0.28);

  --demo-bg: linear-gradient(45deg, #161a25, #0a0b10);
  --footer-bg: rgba(0,0,0,0.20);
}

body{
  font-family: "Inter", sans-serif;
  background: var(--page-bg);
  color: var(--text);
  scroll-behavior: smooth;
}

/* Keep Bootstrap helpers readable */
.text-secondary{ color: var(--muted) !important; }

/* Navbar */
.navbar{
  background: var(--nav-bg) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--nav-border);
}

.brand-logo{
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.15));
}

.brand-wordmark{
  display: block;
  width: auto;
  height: 58px;
  filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.15));
}

:root[data-theme="dark"] .brand-wordmark,
:root[data-theme="dark"] .router-step-logo,
:root[data-theme="dark"] .hero-logo{
  content: url("images/logo final_light.png");
}

.brand-lockup{
  flex-direction: column;
  gap: 0 !important;
}

.brand-slogan{
  margin-top: -2px;
  color: var(--text);
  font-size: 0.64rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.brand-text{
  letter-spacing: 0.5px;
  font-size: 1.35rem;
}

@media (max-width: 767.98px){
  .brand-logo{
    height: 38px;
  }
  .brand-wordmark{
    height: 46px;
  }
  .brand-slogan{
    margin-top: -1px;
    font-size: 0.52rem;
  }
  .brand-text{
    font-size: 1.15rem;
  }
}

/* Ensure nav links are readable in both themes */
#mainNav .nav-link{
  color: rgba(11,14,20,0.82) !important;
}
#mainNav.navbar-dark .nav-link{
  color: rgba(255,255,255,0.86) !important;
}
#mainNav .nav-link:hover{
  color: var(--accent-blue) !important;
}
:root[data-theme="light"] #mainNav .nav-link.btn,
#mainNav.navbar-light .nav-link.btn{
  border-color: rgba(11,14,20,0.25) !important;
}

/* Theme toggle button */
.theme-toggle{
  border-width: 1px;
}

.section-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* August promotion blocks */
.august-top-strip{
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 45, 117, 0.30);
  background:
    radial-gradient(circle at 14% 30%, rgba(255, 45, 117, 0.20), transparent 52%),
    linear-gradient(135deg, rgba(255, 233, 242, 0.92), rgba(255, 248, 252, 0.95));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: 0 14px 34px rgba(255, 45, 117, 0.10);
}

.august-top-strip::after{
  content: "";
  position: absolute;
  inset: -40% -18% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 45, 117, 0.22), transparent 68%);
  pointer-events: none;
}

.august-top-strip-badge{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 117, 0.34);
  background: rgba(255, 255, 255, 0.70);
  color: #870f44;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.august-top-strip-copy{
  position: relative;
  z-index: 1;
  flex: 1 1 360px;
  color: #1a2033;
  font-size: 0.98rem;
  line-height: 1.45;
}

.august-top-strip-btn{
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.august-promo-card,
.august-pricing-banner,
.august-assistant-callout{
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 45, 117, 0.30);
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 45, 117, 0.18), transparent 48%),
    radial-gradient(circle at 8% 85%, rgba(255, 122, 185, 0.14), transparent 52%),
    linear-gradient(135deg, rgba(255, 236, 245, 0.95), rgba(255, 248, 252, 0.96));
  box-shadow: 0 22px 44px rgba(255, 45, 117, 0.12);
}

.august-promo-card{
  padding: clamp(20px, 3vw, 34px);
}

.august-promo-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 13px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 117, 0.40);
  background: rgba(255, 255, 255, 0.70);
  color: #7d0f41;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.august-promo-title,
.august-pricing-title{
  color: #121a30;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.august-promo-free{
  color: #ff2d75;
  font-size: clamp(1.65rem, 3.2vw, 2.55rem);
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  text-shadow: 0 10px 22px rgba(255, 45, 117, 0.16);
}

.august-value-wrap{
  display: grid;
  gap: 2px;
}

.august-value-math{
  color: #26304a;
  font-size: 0.96rem;
  font-weight: 700;
}

.august-value-amount{
  color: #ff2d75;
  font-size: clamp(1.45rem, 3.4vw, 2.45rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.august-value-sub{
  color: #3d4968;
  font-size: 0.9rem;
  font-weight: 600;
}

.august-plans-note{
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(11, 14, 20, 0.16);
  background: rgba(255, 255, 255, 0.68);
  color: #152037;
  font-size: 0.88rem;
  font-weight: 700;
}

.august-countdown{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 45, 117, 0.26);
  background: rgba(255, 255, 255, 0.72);
  color: #1d2942;
  font-size: 0.86rem;
  line-height: 1.35;
}

.august-countdown i{
  color: var(--accent-pink);
}

.august-claim-btn{
  padding-top: 11px;
  padding-bottom: 11px;
  box-shadow: 0 14px 28px rgba(255, 45, 117, 0.24);
}

.august-claim-btn:hover,
.august-claim-btn:focus{
  transform: translateY(-1px);
}

.august-mascot-stage{
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: flex-end;
  width: min(100%, 280px);
  min-height: 220px;
  padding: 16px 10px 0;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.40));
}

.august-year-badge{
  position: absolute;
  top: 8px;
  right: 8px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #ff2d75;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.august-promo-mascot{
  width: min(100%, 220px);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(255, 45, 117, 0.24));
}

.august-hero-card{
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.4vw, 24px);
  border-radius: 20px;
  border: 1px solid rgba(255, 45, 117, 0.30);
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 45, 117, 0.18), transparent 46%),
    linear-gradient(135deg, rgba(255, 236, 245, 0.96), rgba(255, 248, 252, 0.96));
  box-shadow: 0 18px 40px rgba(255, 45, 117, 0.12);
}

.august-pricing-banner,
.august-assistant-callout{
  padding: clamp(18px, 2.3vw, 28px);
}

.august-pricing-value-box{
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 45, 117, 0.28);
  background: rgba(255, 255, 255, 0.70);
}

.august-pricing-mascot{
  width: min(100%, 120px);
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(255, 45, 117, 0.2));
}

.august-assistant-callout .august-promo-kicker{
  margin-bottom: 10px;
}

.august-assistant-callout .august-value-amount{
  font-size: clamp(1.25rem, 2.4vw, 1.8rem);
}

.august-mini-callout{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 45, 117, 0.26);
  background: rgba(255, 45, 117, 0.09);
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.august-mini-link{
  margin-left: 8px;
  color: var(--accent-pink);
  font-weight: 700;
  text-decoration: none;
}

.august-mini-link:hover,
.august-mini-link:focus{
  text-decoration: underline;
}

:root[data-theme="dark"] .august-top-strip,
:root[data-theme="dark"] .august-promo-card,
:root[data-theme="dark"] .august-hero-card,
:root[data-theme="dark"] .august-pricing-banner,
:root[data-theme="dark"] .august-assistant-callout,
:root[data-theme="dark"] .august-mini-callout{
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 45, 117, 0.24), transparent 52%),
    linear-gradient(140deg, rgba(47, 19, 38, 0.78), rgba(24, 16, 30, 0.82));
}

:root[data-theme="dark"] .august-promo-kicker{
  color: #ffd7e8;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 178, 214, 0.48);
}

:root[data-theme="dark"] .august-top-strip-copy,
:root[data-theme="dark"] .august-promo-title,
:root[data-theme="dark"] .august-pricing-title,
:root[data-theme="dark"] .august-value-math,
:root[data-theme="dark"] .august-value-sub,
:root[data-theme="dark"] .august-plans-note,
:root[data-theme="dark"] .august-assistant-callout p,
:root[data-theme="dark"] .august-top-strip-badge{
  color: rgba(255, 255, 255, 0.92);
}

:root[data-theme="dark"] .august-pricing-value-box,
:root[data-theme="dark"] .august-mascot-stage,
:root[data-theme="dark"] .august-plans-note,
:root[data-theme="dark"] .august-top-strip-badge{
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
}

:root[data-theme="dark"] .august-countdown{
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 767.98px){
  .august-top-strip{
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .august-top-strip-copy{
    font-size: 0.92rem;
  }

  .august-top-strip-btn{
    width: 100%;
  }

  .august-promo-card,
  .august-hero-card,
  .august-pricing-banner,
  .august-assistant-callout{
    padding: 18px;
  }

  .august-promo-title,
  .august-pricing-title{
    font-size: 1.45rem;
  }

  .august-promo-free{
    font-size: 1.75rem;
  }

  .august-value-amount{
    font-size: 1.85rem;
  }

  .august-mascot-stage{
    margin-top: 4px;
    width: 100%;
    min-height: 200px;
  }

  .august-pricing-value-box{
    text-align: left;
  }

  .august-pricing-mascot{
    margin-top: 2px;
  }

  .august-hero-card .col-lg-4,
  .august-promo-card .col-lg-4,
  .august-pricing-banner .col-lg-3{
    order: 4;
  }

  .august-mini-link{
    display: inline-block;
    margin-left: 0;
    margin-top: 8px;
  }
}

/* Homepage August hero */
.august-home-hero{
  position: relative;
  padding: 112px 0 34px;
}

.august-home-hero-card{
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 45, 117, 0.22);
  padding: clamp(20px, 3vw, 34px);
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 45, 117, 0.22), transparent 45%),
    radial-gradient(circle at 12% 82%, rgba(255, 141, 199, 0.20), transparent 46%),
    linear-gradient(120deg, #ffffff, #fff2f8 52%, #fff8fb);
  box-shadow: 0 20px 44px rgba(255, 45, 117, 0.14);
}

.august-home-title{
  color: #15203b;
  font-size: clamp(1.85rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1.06;
}

.august-home-free{
  color: #ff2d75;
  font-size: clamp(2rem, 4.6vw, 4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-shadow: 0 12px 24px rgba(255, 45, 117, 0.18);
}

.august-home-support{
  color: #25314f;
  max-width: 620px;
  font-size: 1.1rem;
  line-height: 1.45;
}

.august-home-value-row{
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px;
}

.august-home-normal{
  color: #23314f;
  font-size: clamp(1.15rem, 2vw, 2rem);
  font-weight: 700;
}

.august-home-value{
  color: #ff2d75;
  font-size: clamp(2rem, 4.2vw, 3.7rem);
  font-weight: 900;
  line-height: 0.95;
}

.august-home-ctas .btn{
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.august-home-ctas .btn:hover,
.august-home-ctas .btn:focus{
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(255, 45, 117, 0.20);
}

.august-live-btn{
  border-color: rgba(11, 14, 20, 0.20) !important;
  color: #1f2a44 !important;
  background: rgba(255, 255, 255, 0.74);
}

.august-live-btn:hover,
.august-live-btn:focus{
  border-color: var(--accent-blue) !important;
  color: var(--accent-blue) !important;
}

.august-hero-visual-wrap{
  display: flex;
  justify-content: center;
}

.august-hero-visual{
  position: relative;
  width: min(100%, 460px);
  min-height: 390px;
  border-radius: 26px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 14px 10px 0;
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.40) 64%),
    radial-gradient(circle at 60% 80%, rgba(255, 45, 117, 0.10), transparent 66%);
}

.august-home-mascot{
  position: relative;
  z-index: 2;
  width: min(100%, 390px);
  height: auto;
  filter: drop-shadow(0 16px 28px rgba(255, 45, 117, 0.22));
  animation: augustMascotFloat 6.2s ease-in-out infinite;
}

.august-home-badge{
  position: absolute;
  z-index: 3;
  bottom: 16px;
  right: 8px;
  width: clamp(130px, 20vw, 176px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.72);
  background: radial-gradient(circle at 30% 20%, #ff69a5, #ff2d75 58%, #e61063);
  color: #fff;
  font-size: clamp(1rem, 2.1vw, 1.25rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-align: center;
  display: grid;
  place-content: center;
  box-shadow: 0 14px 28px rgba(255, 45, 117, 0.24);
  animation: augustBadgePulse 5.5s ease-in-out infinite;
}

.august-home-badge span{
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 0.95;
}

.august-home-badge small{
  display: block;
  margin-top: 2px;
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  opacity: 0.94;
}

.august-offer-qualifier{
  color: #3a4665;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.35;
}

.august-sparkle{
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(255, 45, 117, 0.64) 58%, transparent 72%);
  opacity: 0.64;
  animation: augustTwinkle 4.8s ease-in-out infinite;
}

.august-sparkle-1{ top: 62px; left: 34px; animation-delay: 0.2s; }
.august-sparkle-2{ top: 188px; right: 26px; animation-delay: 1.2s; }
.august-sparkle-3{ bottom: 72px; left: 14px; animation-delay: 2s; }

.august-hero-copy{ animation: augustTextIn 560ms ease-out both; }
.august-hero-visual-wrap{ animation: augustVisualIn 640ms ease-out both; }
.august-home-value{ animation: augustValueIn 520ms ease-out both; animation-delay: 120ms; }

@keyframes augustTextIn{
  from{ opacity: 0; transform: translateY(10px); }
  to{ opacity: 1; transform: translateY(0); }
}

@keyframes augustVisualIn{
  from{ opacity: 0; transform: translateX(16px); }
  to{ opacity: 1; transform: translateX(0); }
}

@keyframes augustValueIn{
  from{ opacity: 0; transform: scale(0.96); }
  to{ opacity: 1; transform: scale(1); }
}

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

@keyframes augustBadgePulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.035); }
}

@keyframes augustTwinkle{
  0%, 100%{ opacity: 0.35; transform: scale(0.9); }
  45%{ opacity: 0.9; transform: scale(1.08); }
}

:root[data-theme="dark"] .august-home-hero-card{
  background:
    radial-gradient(circle at 74% 24%, rgba(255, 45, 117, 0.26), transparent 45%),
    radial-gradient(circle at 12% 82%, rgba(255, 141, 199, 0.14), transparent 46%),
    linear-gradient(120deg, #221725, #2a1730 52%, #2a1a31);
  border-color: rgba(255, 168, 211, 0.24);
}

:root[data-theme="dark"] .august-home-title,
:root[data-theme="dark"] .august-home-support,
:root[data-theme="dark"] .august-home-normal,
:root[data-theme="dark"] .august-offer-qualifier,
:root[data-theme="dark"] .august-live-btn{
  color: rgba(255, 255, 255, 0.94) !important;
}

:root[data-theme="dark"] .august-hero-visual{
  background:
    radial-gradient(circle at 52% 34%, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 64%),
    radial-gradient(circle at 60% 80%, rgba(255, 45, 117, 0.10), transparent 66%);
}

@media (max-width: 991.98px){
  .august-home-hero{
    padding-top: 98px;
    padding-bottom: 22px;
  }

  .august-home-hero-card{
    border-radius: 20px;
    padding: 18px;
  }

  .august-home-title{
    font-size: clamp(1.5rem, 6vw, 2.3rem);
  }

  .august-home-free{
    font-size: clamp(1.65rem, 10vw, 2.6rem);
  }

  .august-home-support{
    font-size: 1rem;
  }

  .august-home-value-row{
    gap: 10px;
  }

  .august-home-value{
    font-size: clamp(1.7rem, 9.5vw, 2.6rem);
  }

  .august-home-ctas .btn{
    width: 100%;
  }

  .august-hero-visual{
    width: min(100%, 360px);
    min-height: 280px;
    margin: 2px auto 0;
  }

  .august-home-mascot{
    width: min(100%, 300px);
  }

  .august-home-badge{
    bottom: 10px;
    right: 2px;
    width: clamp(118px, 30vw, 144px);
  }
}

@media (prefers-reduced-motion: reduce){
  .august-hero-copy,
  .august-hero-visual-wrap,
  .august-home-value,
  .august-home-mascot,
  .august-home-badge,
  .august-sparkle{
    animation: none !important;
    transform: none !important;
  }

  .august-home-ctas .btn,
  .august-claim-btn{
    transition: none !important;
  }
}

/* Hero */
.hero-section{
  position: relative;
  padding: 170px 0 105px;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.18), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
}
:root[data-theme="light"] .hero-section{
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.10), transparent 45%),
    radial-gradient(circle at bottom left, rgba(11, 116, 255, 0.10), transparent 50%),
    linear-gradient(180deg, rgba(0,0,0,0.02), transparent 40%);
}

.home-hero-container{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: 56px;
}

.home-hero-copy{
  max-width: 650px;
}

.home-hero-media{
  overflow: hidden;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  box-shadow: var(--card-shadow-hover);
}

.home-hero-media img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-container{
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-text{
  flex: 0 0 520px;
  max-width: 520px;
}

.hero-language-block{
  display: grid;
  gap: 6px;
}

.hero-language-title,
.hero-value-line{
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.hero-language-copy,
.hero-cta-note{
  font-size: 0.98rem;
}

.hero-primary-cta{
  box-shadow: 0 16px 36px rgba(255, 45, 85, 0.18);
}

.hero-value-line{
  max-width: 460px;
}

.subtle-grid{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at 25% 10%, rgba(0,0,0,1), rgba(0,0,0,0) 65%);
}
:root[data-theme="light"] .subtle-grid{
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(10,11,16,0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,11,16,0.06) 1px, transparent 1px);
}

/* Sections */
section{ padding: 100px 0; }

.section-story,
.section-clean,
#try,
#verticals,
#features,
#results,
#contact{
  position: relative;
}

.section-soft{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.00));
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
:root[data-theme="light"] .section-soft{
  background: linear-gradient(180deg, rgba(10,11,16,0.02), rgba(10,11,16,0.00));
  border-top: 1px solid rgba(10,11,16,0.06);
  border-bottom: 1px solid rgba(10,11,16,0.06);
}

/* Typography */
.neon-text{ color: var(--accent-pink); text-shadow: var(--neon-glow); }
.blue-text{ color: var(--accent-blue); text-shadow: var(--blue-glow); }

/* Pills */
.pill{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 0.9rem;
  white-space: nowrap;
  max-width: 100%;
}

/* Long pill copy ("AI receptionist for real businesses") doesn't fit nowrap on
   narrow screens — forcing it to fit was pushing the entire page wider than
   the viewport and clipping the mobile nav. Let it wrap instead. */
@media (max-width: 480px){
  .pill{
    white-space: normal;
    text-align: left;
  }
}

/* Cards */
.glass-card{
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  height: 100%;
  box-shadow: var(--card-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.glass-card:hover{
  transform: translateY(-4px);
  border-color: rgba(11, 116, 255, 0.18);
  box-shadow: var(--card-shadow-hover);
}
:root[data-theme="light"] .glass-card:hover{
  border-color: rgba(11, 116, 255, 0.16);
}

/* Hero */
.hero-visual,
.hero-photo,
.media-frame,
.feature-media-card{
  overflow: hidden;
  position: relative;
}

.hero-visual,
.hero-photo{
  min-height: 540px;
  border-radius: 16px;
  box-shadow: var(--card-shadow-hover);
  isolation: isolate;
  padding: 14px;
}

.hero-image{
  flex: 1.2;
  min-height: 620px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.hero-image::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(255,255,255,0.56), rgba(255,255,255,0.18), transparent 62%);
  pointer-events: none;
  z-index: 1;
}

.hero-visual-image,
.hero-photo,
.media-frame img,
.vertical-media,
.vertical-card-img,
.story-image{
  width: 100%;
  display: block;
  object-fit: cover;
}

.hero-visual-image,
.hero-photo,
.media-frame img{
  height: 100%;
}

.hero-visual-image{
  border-radius: 0;
  object-fit: cover;
  object-position: center right;
  filter: brightness(1.04) contrast(1.02);
}

.hero-visual-overlay,
.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 8, 12, 0.72) 0%, rgba(7, 8, 12, 0.38) 42%, rgba(7, 8, 12, 0.10) 100%),
    linear-gradient(180deg, rgba(7, 8, 12, 0.10) 0%, rgba(7, 8, 12, 0.42) 100%);
}

.hero-visual-content{
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 28px;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(10,11,16,0.18), rgba(10,11,16,0.48));
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.hero-visual-kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual-title{
  max-width: 320px;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-call-card,
.floating-ai-card{
  position: absolute;
  top: 20px;
  right: 20px;
  width: min(300px, calc(100% - 60px));
  padding: 16px;
  background: rgba(255,255,255,0.85);
  color: #0b0e14;
  border: 1px solid rgba(10,11,16,0.06);
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(11,14,20,0.16);
  backdrop-filter: blur(10px);
  z-index: 2;
}

:root[data-theme="light"] .hero-visual-content{
  background: linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0.50));
  border-color: rgba(255,255,255,0.66);
}

:root[data-theme="light"] .hero-visual-kicker{
  color: rgba(11,14,20,0.66);
}

:root[data-theme="light"] .hero-visual-title{
  color: #0b0e14;
}

:root[data-theme="light"] .hero-call-card,
:root[data-theme="light"] .floating-ai-card{
  background: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.72);
}

.hero-call-card-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-call-title{
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-call-subtitle{
  margin-top: 3px;
  color: rgba(11,14,20,0.62);
  font-size: 0.8rem;
}

.hero-call-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(11, 116, 255, 0.10);
  color: #0b74ff;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-call-conversation{
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(11,14,20,0.05);
  color: rgba(11,14,20,0.82);
  font-size: 0.88rem;
  line-height: 1.6;
}

.hero-call-status-list{
  display: grid;
  gap: 10px;
}

.hero-call-status{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-call-status i{
  color: #0bb37a;
}

.section-story{
  position: relative;
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 30%, rgba(0, 210, 255, 0.08), transparent 34%),
    radial-gradient(circle at 85% 72%, rgba(255, 45, 117, 0.08), transparent 36%);
}

:root[data-theme="light"] .section-story{
  background:
    radial-gradient(circle at 12% 30%, rgba(11, 116, 255, 0.07), transparent 34%),
    radial-gradient(circle at 85% 72%, rgba(255, 45, 117, 0.06), transparent 36%);
}

.story-media-wrap{
  position: relative;
  padding: 26px 0 0 26px;
}

.story-media-accent{
  position: absolute;
  top: 0;
  left: 0;
  width: 72%;
  height: 78%;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 45, 117, 0.18), rgba(0, 210, 255, 0.12));
  filter: blur(0.5px);
}

:root[data-theme="light"] .story-media-accent{
  background: linear-gradient(135deg, rgba(255, 45, 117, 0.12), rgba(11, 116, 255, 0.10));
}

.story-media-frame{
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
}

.image-split-layout{
  align-items: center;
}

.image-split-media{
  position: relative;
}

.image-split-card{
  overflow: hidden;
  border-radius: 26px;
}

.story-media-image{
  display: block;
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
}

.receptionist-human-image{
  aspect-ratio: 16 / 10;
  object-position: center 42%;
}

.story-image{
  border-radius: 26px;
}

.story-media-frame::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,8,12,0.02), rgba(7,8,12,0.18));
  pointer-events: none;
}

:root[data-theme="light"] .story-media-frame::after{
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.12));
}

.moving-hero-media{
  max-width: 1040px;
  border: 1px solid var(--glass-border);
}
.moving-hero-media .story-media-image{
  aspect-ratio: 16 / 9;
}

.consulting-hero-media{
  max-width: 1040px;
  border: 1px solid var(--glass-border);
}
.consulting-hero-media .story-media-image{
  aspect-ratio: 16 / 9;
}

.medical-hero-media{
  max-width: 1040px;
  border: 1px solid var(--glass-border);
}
.medical-hero-media .story-media-image{
  aspect-ratio: 16 / 9;
}

.restaurant-hero-media{
  max-width: 1040px;
  border: 1px solid var(--glass-border);
}
.restaurant-hero-media .story-media-image{
  aspect-ratio: 16 / 9;
}

.avyra-roi-section{
  overflow: hidden;
}
.avyra-roi-calculator{
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-bg);
  box-shadow: var(--card-shadow);
}
.avyra-roi-heading{
  max-width: 660px;
}
.avyra-roi-heading .pill{
  margin-left: 0;
}
.avyra-roi-grid{
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: stretch;
  margin-top: 30px;
}
.avyra-roi-inputs{
  display: grid;
  gap: 14px;
}
.avyra-roi-field{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 120px;
  align-items: center;
  gap: 18px;
  margin: 0;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}
.avyra-roi-field > span{
  display: flex;
  align-items: center;
  gap: 10px;
}
.avyra-roi-field i{
  color: var(--accent-pink);
  font-size: 1.1rem;
}
.avyra-roi-field input{
  width: 100%;
  min-height: 46px;
  padding: 8px 12px;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  background: var(--page-bg);
  color: var(--text);
  font: inherit;
  text-align: right;
}
.avyra-roi-field input:focus{
  outline: 2px solid rgba(255, 45, 85, 0.38);
  border-color: var(--accent-pink);
}
.avyra-roi-input-wrap{
  position: relative;
}
.avyra-roi-input-prefix,
.avyra-roi-input-suffix{
  position: absolute;
  z-index: 1;
  top: 50%;
  color: var(--muted);
  transform: translateY(-50%);
  pointer-events: none;
}
.avyra-roi-input-prefix{
  left: 13px;
}
.avyra-roi-input-suffix{
  right: 13px;
}
.avyra-roi-input-wrap:has(.avyra-roi-input-prefix) input{
  padding-left: 30px;
}
.avyra-roi-input-wrap:has(.avyra-roi-input-suffix) input{
  padding-right: 30px;
}
.avyra-roi-results{
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(255, 45, 85, 0.45);
  border-radius: 12px;
  background: rgba(255, 45, 85, 0.08);
}
.avyra-roi-result-label{
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.avyra-roi-primary-result{
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.avyra-roi-primary-result span{
  color: var(--accent-pink);
  font-size: 2.55rem;
  font-weight: 700;
  line-height: 1;
}
.avyra-roi-primary-result small{
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.avyra-roi-result-row{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--glass-border);
  color: var(--muted);
  font-size: 0.92rem;
}
.avyra-roi-result-row + .avyra-roi-result-row{
  margin-top: 12px;
}
.avyra-roi-result-row strong{
  color: var(--text);
}
.avyra-roi-footnote{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.8rem;
}
.avyra-roi-footnote i{
  color: var(--accent-pink);
}
@media (max-width: 767.98px){
  .avyra-roi-calculator{
    padding: 28px 20px;
  }
  .avyra-roi-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .avyra-roi-field{
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .avyra-roi-results{
    padding: 24px;
  }
  .avyra-roi-primary-result span{
    font-size: 2.25rem;
  }
}

.story-benefits{
  display: grid;
  gap: 14px;
}

.story-benefit-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}

.story-benefit-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 45, 117, 0.16), rgba(0, 210, 255, 0.16));
  color: var(--accent-blue);
  font-size: 1rem;
  flex: 0 0 auto;
}

.story-benefit-copy{
  font-weight: 600;
  color: var(--text);
}

.section-clean{
  padding: 92px 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0));
}

:root[data-theme="light"] .section-clean{
  background: linear-gradient(180deg, rgba(10,11,16,0.015), rgba(10,11,16,0));
}

.how-grid{
  position: relative;
}

.how-card{
  position: relative;
  border-radius: 22px;
  text-align: center;
}

.how-step-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 999px;
  border: 1px solid var(--glass-border);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 0.9rem;
  font-weight: 800;
}

.how-step-icon{
  margin-bottom: 18px;
  font-size: 2rem;
  line-height: 1;
}

.pricing-section{
  padding-top: 104px;
  padding-bottom: 104px;
}

.pricing-label{
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-price{
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}

.pricing-price span{
  margin-left: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--muted);
}

.pricing-badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 45, 117, 0.10);
  color: var(--accent-pink);
  font-size: 0.78rem;
  font-weight: 700;
}

.pricing-footnote{
  display: grid;
  gap: 6px;
  justify-content: center;
}

.pricing-urgency{
  margin-top: 6px;
  color: var(--accent-pink);
  font-size: 0.92rem;
  font-weight: 600;
}

.pricing-btn-starter,
.pricing-btn-growth{
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
}

.pricing-btn-starter{
  border: 1px solid #ff2d55;
  background: transparent;
  color: #ff2d55;
}

.pricing-btn-starter:hover,
.pricing-btn-starter:focus{
  background: rgba(255, 45, 85, 0.06);
  color: #ff2d55;
  border-color: #ff2d55;
}

.pricing-btn-growth{
  border: none;
  background: linear-gradient(135deg, #ff2d55, #ff5a7a);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(255, 45, 85, 0.20);
}

.pricing-btn-growth:hover,
.pricing-btn-growth:focus{
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 45, 85, 0.24);
}

.media-frame{
  min-height: 100%;
  border-radius: 20px;
}

.feature-section{
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature-text{
  flex: 1;
  order: 1;
}

.feature-text-card{
  padding-right: clamp(1.5rem, 3vw, 3rem);
}

.feature-heading{
  max-width: 14ch;
  line-height: 1.15;
}

.feature-copy{
  max-width: 54ch;
  line-height: 1.7;
}

.feature-list{
  max-width: 56ch;
}

.feature-list li{
  margin-bottom: 18px;
  line-height: 1.6;
}

.feature-visual{
  flex: 1.2;
  order: 2;
  min-height: 460px;
}

.feature-image{
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.workflow-card {
  background: #fff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.workflow-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f2ff 100%);
}

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

.workflow-flow-glow,
.workflow-flow-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 280;
  stroke-dashoffset: 280;
  opacity: 0;
  animation: workflowPathLoop 12s linear infinite;
}

.workflow-flow-glow {
  stroke: rgba(124, 58, 237, 0.18);
  stroke-width: 2.8;
}

.workflow-flow-path {
  stroke: rgba(124, 58, 237, 0.72);
  stroke-width: 1.15;
}

.workflow-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.workflow-label {
  position: absolute;
  font-weight: 700;
  color: #7c3aed;
  line-height: 1;
  text-shadow:
    0 0 10px rgba(124, 58, 237, 0.15),
    0 1px 2px rgba(255, 255, 255, 0.9);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
  z-index: 2;
  opacity: 0.76;
  --label-transform: none;
  transform: var(--label-transform) translateY(0) scale(1);
  animation: workflowLabelPulse 12s ease-in-out infinite;
}

.label-call {
  top: 6%;
  left: 14%;
  --label-transform: translateX(-50%);
  font-size: clamp(16px, 1.6vw, 28px);
  animation-delay: 0.5s;
}

.label-respond {
  top: 6%;
  left: 50%;
  --label-transform: translateX(-50%);
  font-size: clamp(16px, 1.6vw, 28px);
  animation-delay: 1.75s;
}

.label-understand {
  bottom: 6%;
  left: 32%;
  --label-transform: translateX(-50%);
  font-size: clamp(15px, 1.5vw, 26px);
  animation-delay: 1.15s;
}

.label-resolve {
  bottom: 6%;
  left: 60%;
  --label-transform: translateX(-50%);
  font-size: clamp(15px, 1.5vw, 26px);
  animation-delay: 2.35s;
}

.label-action {
  top: 8%;
  right: 10%;
  font-size: clamp(16px, 1.6vw, 28px);
  animation-delay: 3s;
}

@keyframes workflowPathLoop {
  0% {
    stroke-dashoffset: 280;
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  24% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  88% {
    stroke-dashoffset: 0;
    opacity: 1;
  }
  89% {
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 280;
    opacity: 0;
  }
}

@keyframes workflowLabelPulse {
  0% {
    color: #7c3aed;
    opacity: 0.76;
    transform: var(--label-transform) translateY(0) scale(1);
    text-shadow:
      0 0 10px rgba(124, 58, 237, 0.15),
      0 1px 2px rgba(255, 255, 255, 0.9);
  }
  2.5% {
    color: #5b21b6;
    opacity: 1;
    transform: var(--label-transform) translateY(-4px) scale(1.12);
    text-shadow:
      0 0 24px rgba(124, 58, 237, 0.38),
      0 0 40px rgba(124, 58, 237, 0.16),
      0 3px 6px rgba(255, 255, 255, 0.98);
  }
  6% {
    color: #7c3aed;
    opacity: 0.82;
    transform: var(--label-transform) translateY(0) scale(1);
    text-shadow:
      0 0 10px rgba(124, 58, 237, 0.15),
      0 1px 2px rgba(255, 255, 255, 0.9);
  }
  100% {
    color: #7c3aed;
    opacity: 0.76;
    transform: var(--label-transform) translateY(0) scale(1);
    text-shadow:
      0 0 10px rgba(124, 58, 237, 0.15),
      0 1px 2px rgba(255, 255, 255, 0.9);
  }
}

@media (prefers-reduced-motion: reduce) {
  .workflow-flow-glow,
  .workflow-flow-path,
  .workflow-label {
    opacity: 1;
    animation: none;
  }

  .workflow-flow-glow,
  .workflow-flow-path {
    stroke-dashoffset: 0;
  }

  .workflow-label {
    opacity: 0.9;
    transform: var(--label-transform) translateY(0) scale(1);
  }
}

.vertical-card{
  overflow: hidden;
  border-radius: 16px;
}

.vertical-card-enhanced{
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.vertical-media,
.vertical-card-img{
  aspect-ratio: 16 / 11;
  border-radius: 0;
  margin-bottom: 0;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.vertical-card-body{
  display: flex;
  flex: 1;
  flex-direction: column;
}

.vertical-support-wrap{
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

:root[data-theme="light"] .vertical-support-wrap{
  border-color: rgba(10,11,16,0.08);
  background: rgba(10,11,16,0.03);
}

.vertical-support-img{
  display: block;
  width: 100%;
  height: 120px;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.vertical-card::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

.vertical-card > *{
  position: relative;
  z-index: 1;
}

.vertical-card:hover .vertical-media,
.vertical-card:hover .vertical-card-img,
.vertical-card:hover .vertical-support-img{
  transform: scale(1.035);
  filter: saturate(1.03);
}

.vertical-mini-list{
  display: grid;
  gap: 10px;
}

.vertical-mini-item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  color: var(--pill-text);
  font-size: 0.92rem;
}

:root[data-theme="light"] .vertical-mini-item{
  border-color: rgba(10,11,16,0.08);
  background: rgba(10,11,16,0.03);
}

.vertical-mini-item i{
  color: var(--accent-blue);
}

.vertical-link{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--accent-blue);
  font-weight: 700;
  text-decoration: none;
}

.vertical-link:hover,
.vertical-link:focus{
  color: var(--accent-pink);
}

.vertical-card-enhanced:hover .vertical-link{
  color: var(--accent-pink);
}

.detail-list{
  list-style: none;
  margin: 0;
  padding: 0;
}

.detail-list li{
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

.detail-list li:last-child{
  margin-bottom: 0;
}

.detail-list li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-pink), var(--accent-blue));
  box-shadow: var(--blue-glow);
}

/* Buttons */
.btn-avyra{
  background: var(--accent-pink);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 700;
}
.btn-avyra:hover{
  background: #e62065;
  color: #fff;
  box-shadow: var(--neon-glow);
}

.self-serve-cta{
  border-radius: 20px;
}

.self-serve-btn{
  min-width: min(100%, 360px);
  padding: 16px 28px;
  font-size: 1.05rem;
  box-shadow: 0 16px 34px rgba(255, 45, 85, 0.18);
}

.self-serve-support{
  display: grid;
  gap: 8px;
  font-size: 0.98rem;
  font-weight: 500;
}

.self-serve-contact{
  font-weight: 500;
}

.self-serve-contact .contact-link{
  color: var(--accent-pink);
  font-weight: 700;
  text-decoration: none;
}

.self-serve-contact .contact-link:hover,
.self-serve-contact .contact-link:focus{
  text-decoration: underline;
}

.final-call-section{
  padding-top: 44px;
  padding-bottom: 104px;
}

.final-call-card{
  border-radius: 24px;
}

.final-call-number{
  display: inline-block;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1;
  font-weight: 800;
  color: var(--accent-pink);
  text-decoration: none;
  letter-spacing: -0.03em;
}

.final-call-number:hover,
.final-call-number:focus{
  color: var(--accent-pink);
}

/* Pricing (legacy if still present) */
.price-card.featured{
  border: 2px solid var(--accent-pink);
  box-shadow: var(--neon-glow);
}

/* Demo box */
.demo-box{
  background: var(--demo-bg);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.08);
}
:root[data-theme="light"] .demo-box{
  border: 1px solid rgba(10,11,16,0.10);
}

/* Lists */
.stack-list{
  padding-left: 1.1rem;
  margin: 0;
}
.stack-list li{ margin-bottom: 8px; }

/* Try Avyra cards */
.try-card{
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 14px;
  padding: 16px;
}
:root[data-theme="light"] .try-card{
  background: rgba(10,11,16,0.03);
  border: 1px solid rgba(10,11,16,0.10);
}

.demo-card-shell{
  border-radius: 16px;
  box-shadow: var(--card-shadow-hover);
}

.demo-card-pill{
  justify-content: center;
}

.demo-prompt-card{
  border-radius: 16px;
  max-width: 860px;
}

.try-conversion{
  padding-top: 44px;
  padding-bottom: 28px;
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
}

:root[data-theme="dark"] .try-conversion{
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04)),
    radial-gradient(circle at top center, rgba(0, 210, 255, 0.08), transparent 40%);
}

.try-region{
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
}

#try{
  padding-top: 96px;
  padding-bottom: 72px;
}

#results{
  padding-top: 72px;
}

.demo-number-grid{
  align-items: stretch;
}

.demo-number-card{
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 188px;
  text-align: center;
}

.live-number{
  display: inline-block;
  margin-top: 6px;
  text-align: center;
  animation: livePulse 2.8s ease-in-out infinite;
}

.try-copy-btn{
  align-self: center;
  min-width: 112px;
  border-color: rgba(10,11,16,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--text);
}

.try-copy-btn:hover,
.try-copy-btn:focus{
  border-color: rgba(11, 116, 255, 0.24);
  background: rgba(255,255,255,0.92);
  color: var(--accent-blue);
}

:root[data-theme="dark"] .try-copy-btn{
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  color: #ffffff;
}

.try-saying-list{
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
}

.try-saying-item{
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(10,11,16,0.04);
  color: var(--text);
  font-weight: 500;
}

:root[data-theme="dark"] .try-saying-item{
  background: rgba(255,255,255,0.05);
}

@keyframes livePulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(11, 116, 255, 0);
    transform: translateY(0);
  }
  50% {
    text-shadow: 0 0 18px rgba(11, 116, 255, 0.12);
    transform: translateY(-1px);
  }
}

.media-frame img,
.story-media-image,
.story-image{
  transition: transform 0.45s ease, filter 0.45s ease;
}

.media-frame:hover img,
.story-media-frame:hover .story-media-image,
.image-split-card:hover .story-image{
  transform: scale(1.025);
  filter: saturate(1.02);
}

.try-card-prominent{
  padding: 22px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  box-shadow: var(--card-shadow);
}

.pricing-card{
  border-radius: 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--card-shadow);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.pricing-card:hover{
  transform: translateY(-4px);
  border-color: rgba(11, 116, 255, 0.18);
  box-shadow: var(--card-shadow-hover);
}

.pricing-card-featured{
  border-color: rgba(255, 45, 117, 0.20);
  transform: scale(1.01);
}

.restaurant-video-trigger{
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
}

.restaurant-video-thumb{
  display: inline-block;
  width: clamp(120px, 14vw, 170px);
  max-width: 100%;
  height: auto;
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.restaurant-video-trigger:hover .restaurant-video-thumb,
.restaurant-video-trigger:focus-visible .restaurant-video-thumb{
  transform: translateY(-2px);
  box-shadow: var(--card-shadow-hover);
}

.restaurant-video-dialog{
  max-width: min(1100px, calc(100vw - 1.5rem));
  margin: 0.75rem auto;
}

.restaurant-video-modal .modal-content{
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--page-bg-2);
  color: var(--text);
  border-radius: 14px;
}

.restaurant-video-modal .modal-header{
  border-bottom-color: var(--glass-border);
}

.restaurant-demo-video{
  display: block;
  width: 100%;
  height: auto;
  max-height: min(65vh, 520px);
  background: #000;
  border: 0;
  border-radius: 0;
  object-fit: contain;
}

:root[data-theme="dark"] .restaurant-video-modal .btn-close{
  filter: invert(1);
}

@media (max-width: 767.98px){
  .restaurant-video-thumb{
    width: min(36vw, 140px) !important;
  }

  .restaurant-video-dialog{
    max-width: calc(100vw - 1rem);
    margin: 0.5rem auto;
  }

  .restaurant-demo-video{
    max-height: min(55vh, 360px);
  }
}

:root[data-theme="light"] .try-card-prominent{
  background: linear-gradient(180deg, rgba(255,255,255,0.7), rgba(255,255,255,0.45));
}

.try-card-title{
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.try-card-meta{
  line-height: 1.5;
}

.try-number{
  display: inline-block;
  font-weight: 800;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.try-number:hover{ text-decoration: underline; }

/* Contact links (readable) */
#contact a.contact-link,
#contact a.contact-link:visited{
  color: rgba(255,255,255,0.92) !important;
}
:root[data-theme="light"] #contact a.contact-link,
:root[data-theme="light"] #contact a.contact-link:visited{
  color: rgba(11,14,20,0.90) !important;
}
#contact a.contact-link:hover,
#contact a.contact-link:focus{
  color: var(--accent-blue) !important;
  text-decoration: underline;
}

/* Footer */
footer{
  background: var(--footer-bg);
}
.section-soft{
  background: radial-gradient(circle at top left, rgba(0, 210, 255, 0.08), transparent),
              radial-gradient(circle at bottom right, rgba(255, 45, 117, 0.10), transparent);
}
.tech-pill{
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  font-weight: 600;
}

@media (max-width: 991.98px){
  .home-hero-container{
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-hero-copy{
    max-width: 720px;
  }

  .hero-container{
    padding: 44px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 36px;
  }

  .hero-text{
    flex: initial;
    max-width: none;
  }

  .hero-image,
  .hero-visual,
  .hero-photo{
    min-height: 460px;
  }

  .feature-section{
    gap: 28px;
  }

  .feature-heading{
    max-width: none;
  }

  .feature-visual{
    min-height: 400px;
  }
}

@media (max-width: 767.98px){
  .home-hero-container{
    gap: 24px;
  }

  .home-hero-media{
    max-height: 230px;
  }

  .subpage-hero > .container,
  .section-story > .container,
  .section-clean > .container,
  .section-soft > .container,
  #features > .container,
  #verticals > .container,
  #pricing > .container,
  #try > .container,
  #results > .container,
  #contact > .container,
  #final-call > .container{
    padding-left: 22px;
    padding-right: 22px;
  }

  .hero-section{
    padding: 145px 0 90px;
  }

  .hero-container{
    padding: 24px 16px;
    gap: 28px;
  }

  section{
    padding: 82px 0;
  }

  .hero-image,
  .hero-visual,
  .hero-photo{
    min-height: 380px;
  }

  .feature-section{
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
  }

  .feature-visual{
    order: 1;
    min-height: 280px;
  }

  .feature-text{
    order: 2;
  }

  .feature-text-card{
    padding-right: 1.5rem;
  }

  .feature-copy,
  .feature-list{
    max-width: none;
  }

  .workflow-card {
    padding: 14px;
    border-radius: 20px;
  }

  .workflow-visual,
  .workflow-image {
    border-radius: 16px;
  }

  .workflow-label {
    font-size: 13px;
    font-weight: 800;
  }

  .workflow-flow-glow {
    stroke-width: 2.2;
  }

  .workflow-flow-path {
    stroke-width: 1;
  }

  .label-call {
    top: 4%;
    left: 16%;
  }

  .label-respond {
    top: 4%;
    left: 52%;
  }

  .label-understand {
    bottom: 4%;
    left: 34%;
  }

  .label-resolve {
    bottom: 4%;
    left: 62%;
  }

  .label-action {
    top: 6%;
    right: 8%;
  }

  /* Stack the photo, caption, and call card instead of overlaying them —
     overlaying on a short mobile image height let the call card swallow the photo. */
  .hero-image{
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 10px;
  }

  .hero-visual-image{
    position: static;
    height: auto;
    max-height: 260px;
    border-radius: 14px;
  }

  .hero-image::after{
    display: none;
  }

  .hero-call-card,
  .floating-ai-card,
  .hero-visual-content{
    position: static;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
    padding: 18px;
  }

  .hero-value-line{
    max-width: none;
  }

  .hero-visual-title{
    max-width: none;
    font-size: 1.05rem;
  }

  .section-story{
    padding: 82px 0;
  }

  .section-clean{
    padding: 78px 0;
  }

  .pricing-section{
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .vertical-support-img{
    height: 108px;
  }

  .try-conversion{
    padding-top: 30px;
    padding-bottom: 22px;
  }

  .demo-number-card{
    min-height: 0;
  }

  #verticals,
  #features,
  #try,
  #results,
  #contact,
  #final-call{
    padding-top: 84px;
    padding-bottom: 84px;
  }

  #results{
    padding-top: 72px;
  }

  .pricing-card-featured{
    transform: none;
  }

  .story-media-wrap{
    padding: 18px 0 0 18px;
  }
}

/* ===== Product Fork (Receptionist / Assistant) ===== */
.fork-card{
  padding: 34px 30px;
  border-top: 3px solid var(--accent-pink);
}
.fork-card.fork-card-assistant{
  border-top-color: var(--accent-blue);
}
.fork-card-icon{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 45, 117, 0.10);
  color: var(--accent-pink);
  margin-bottom: 18px;
}
.fork-card-assistant .fork-card-icon{
  background: rgba(11, 116, 255, 0.10);
  color: var(--accent-blue);
}
.fork-card-audience{
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.fork-together-banner{
  border: 1px dashed var(--glass-border);
  border-radius: 16px;
  padding: 20px 26px;
  margin-top: 28px;
  background: var(--glass-bg);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.fork-together-banner i{
  font-size: 1.3rem;
  color: var(--accent-blue);
}

/* ===== Subpage hero (product / vertical / use-case pages) ===== */
.subpage-hero{
  position: relative;
  padding: 150px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.14), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.10), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
}
:root[data-theme="light"] .subpage-hero{
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.08), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(10,11,16,0.015), transparent 40%);
}
.breadcrumb-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
.breadcrumb-link:hover{
  color: var(--accent-blue);
}

/* ===== Outcome comparison rows ===== */
.compare-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--glass-border);
  align-items: start;
}
.compare-row:last-child{
  border-bottom: none;
}
.compare-old,
.compare-new{
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.compare-old i{
  color: var(--muted);
  font-size: 1.1rem;
  margin-top: 2px;
}
.compare-new i{
  color: var(--accent-blue);
  font-size: 1.1rem;
  margin-top: 2px;
}
.compare-old-label,
.compare-new-label{
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
@media (max-width: 767.98px){
  .compare-row{
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* ===== FAQ accordion ===== */
.avyra-accordion .accordion-item{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.avyra-accordion .accordion-button{
  background: transparent;
  color: var(--text);
  font-weight: 600;
  box-shadow: none !important;
}
.avyra-accordion .accordion-button:not(.collapsed){
  background: transparent;
  color: var(--accent-blue);
}
.avyra-accordion .accordion-button::after{
  filter: var(--accordion-icon-filter, none);
}
:root[data-theme="dark"] .avyra-accordion .accordion-button::after{
  filter: invert(1) brightness(1.8);
}
.avyra-accordion .accordion-body{
  color: var(--muted);
  padding-top: 0;
}

/* ===== Proof card (call sample / widget preview) ===== */
.proof-card{
  border-left: 3px solid var(--accent-pink);
}
.proof-card.proof-card-assistant{
  border-left-color: var(--accent-blue);
}
.proof-transcript{
  font-size: 0.95rem;
  line-height: 1.7;
}
.proof-transcript .proof-line-caller{
  color: var(--muted);
}
.proof-transcript .proof-line-avyra{
  color: var(--text);
  font-weight: 500;
}

/* ===== Chat widget mock (Assistant proof) ===== */
.widget-mock{
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--page-bg-2);
  overflow: hidden;
  max-width: 380px;
  margin: 0 auto;
}
.widget-mock-header{
  background: linear-gradient(90deg, var(--accent-blue), #6f9bff);
  color: #fff;
  padding: 12px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.widget-mock-body{
  padding: 16px;
}
.widget-mock-bubble{
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 0.88rem;
  margin-bottom: 10px;
  max-width: 84%;
}
.widget-mock-bubble-bot{
  background: var(--pill-bg);
  color: var(--text);
}
.widget-mock-bubble-user{
  background: var(--accent-blue);
  color: #fff;
  margin-left: auto;
}
.widget-mock-input{
  border-top: 1px solid var(--glass-border);
  padding: 10px 14px;
  color: var(--muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== Use-case / vertical mini nav pills ===== */
.subnav-pills{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.subnav-pills a{
  text-decoration: none;
}

@media (max-width: 767.98px){
  .subpage-hero{
    padding: 130px 0 50px;
  }
}

/* ===== Handoff flow diagram (together.html) ===== */
.flow-steps{
  display: flex;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step{
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  padding: 28px 20px;
}
.flow-step-icon{
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(255, 45, 117, 0.10);
  color: var(--accent-pink);
  margin-bottom: 14px;
}
.flow-step:nth-child(4n-1) .flow-step-icon,
.flow-step:nth-child(4n) .flow-step-icon{
  background: rgba(11, 116, 255, 0.10);
  color: var(--accent-blue);
}
.flow-arrow{
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.4rem;
  flex: 0 0 auto;
  padding: 0 4px;
}
@media (max-width: 767.98px){
  .flow-arrow{
    transform: rotate(90deg);
    padding: 6px 0;
    /* .flow-steps uses align-items:stretch so arrows match the tall step cards'
       height on desktop; undo that here or the rotated arrow inherits that
       height as its (now horizontal) width and overflows the viewport. */
    align-self: center;
    flex-basis: auto;
    width: 22px;
    height: 22px;
  }
}

/* .btn-outline-light is illegible on light backgrounds (white text/border on white).
   The theme-toggle button avoids this by swapping to btn-outline-dark in JS, but
   plain CTA usages (hero secondary buttons, banner links) need a light-theme override. */
:root[data-theme="light"] .btn-outline-light{
  color: rgba(11,14,20,0.82);
  border-color: rgba(11,14,20,0.28);
}
:root[data-theme="light"] .btn-outline-light:hover,
:root[data-theme="light"] .btn-outline-light:focus{
  color: #fff;
  background-color: rgba(11,14,20,0.85);
  border-color: rgba(11,14,20,0.85);
}

/* ===================================================================
   HOMEPAGE ROUTER REDESIGN
   Scoped to index.html only — new classes, nothing shared/overridden.
   =================================================================== */

/* --- Hero --- */
.router-hero{
  position: relative;
  padding: 170px 0 100px;
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.16), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.12), transparent 50%),
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 40%);
  overflow: hidden;
}
:root[data-theme="light"] .router-hero{
  background:
    radial-gradient(circle at top right, rgba(255, 45, 117, 0.08), transparent 45%),
    radial-gradient(circle at bottom left, rgba(0, 210, 255, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(10,11,16,0.015), transparent 40%);
}
.router-hero-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  align-items: center;
  gap: 56px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.router-hero-text{
  max-width: 560px;
}
.router-hero-headline{
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin-bottom: 22px;
}
.router-hero-sub{
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 18px;
  line-height: 1.6;
}
.router-hero-tagline{
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin: 0 0 34px;
  background: linear-gradient(90deg, var(--avyra-purple), var(--avyra-cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.router-hero-ctas{
  justify-content: flex-start;
  margin-bottom: 20px;
}
.router-cta-btn{
  padding: 16px 32px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 999px;
}
.router-hero-leadin{
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Hero mascot --- */
.router-hero-mascot{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.router-hero-mascot-img{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
  object-fit: contain;
}

/* --- Solution cards --- */
.router-solutions{
  padding: 30px 0 110px;
}
.solution-card{
  position: relative;
  overflow: hidden;
  padding: 48px 34px;
  text-align: center;
  border-top: 4px solid var(--accent-pink);
}
.solution-card-assistant{
  border-top-color: var(--accent-blue);
}
.solution-card-complete{
  border-top: 4px solid transparent;
}
.solution-card-complete::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
}
.solution-card-icon{
  font-size: 2.75rem;
  line-height: 1;
  margin-bottom: 18px;
}
.solution-card-eyebrow{
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.solution-card-headline{
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.solution-card-copy{
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}
.solution-card-cta{
  padding: 12px 26px;
  font-weight: 700;
}

/* --- Live demo directory --- */
.router-live-demos{
  padding: 92px 0;
  background: linear-gradient(180deg, rgba(0, 210, 255, 0.05), rgba(255, 45, 117, 0.03));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.router-live-demos-heading{
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}
.router-live-demos-heading .router-voices-eyebrow{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.router-live-demos-sub{
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}
.router-live-demo-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.router-live-demo-card{
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px;
  border-top: 3px solid var(--accent-blue);
}
.router-live-demo-card:nth-child(even){
  border-top-color: var(--accent-pink);
}
.router-live-demo-icon{
  display: flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--pill-bg);
  color: var(--accent-blue);
  font-size: 1.25rem;
}
.router-live-demo-card:nth-child(even) .router-live-demo-icon{
  color: var(--accent-pink);
}
.router-live-demo-type{
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.router-live-demo-card h3{
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 800;
}
.router-live-demo-card p{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}
.router-live-demo-number{
  margin-top: auto;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.router-live-demo-number:hover{
  color: var(--accent-blue);
}
.router-live-demo-call{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  border-radius: 999px;
  font-weight: 700;
}

/* --- Voice selector --- */
.router-voices{
  padding: 20px 0 90px;
}
.router-voices-heading-wrap{
  max-width: 640px;
  margin: 0 auto;
}
.router-voices-eyebrow{
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-pink);
  margin-bottom: 12px;
}
.router-voices-sub{
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
}
.voice-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  max-width: 900px;
  margin: 48px auto 0;
}
.voice-card{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.voice-avatar{
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-avatar img{
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.voice-name{
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

/* --- How it works (process steps) --- */
.router-steps{
  padding: 80px 0;
}
.router-steps-heading-wrap{
  max-width: 620px;
  margin: 0 auto;
}
.router-steps-sub{
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 14px 0 0;
}
.router-steps-row{
  display: flex;
  align-items: flex-start;
  justify-content: center;
  max-width: 980px;
  margin: 52px auto 0;
}
.router-step-card{
  flex: 0 1 210px;
  padding: 0 8px;
  text-align: center;
}
.router-step-connector{
  flex: 1 1 40px;
  min-width: 24px;
  max-width: 90px;
  height: 2px;
  margin-top: 32px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
  opacity: 0.3;
}
.router-step-icon{
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: var(--pill-bg);
  border: 1px solid var(--pill-border);
  font-size: 1.25rem;
  color: var(--accent-pink);
}
.router-step-card-blue .router-step-icon{
  color: var(--accent-blue);
}
.router-step-logo{
  width: 38px;
  height: 22px;
  object-fit: contain;
}
.router-step-index{
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--page-bg-2);
}
.router-step-card-blue .router-step-index{
  background: var(--accent-blue);
}
.router-step-title{
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.router-step-text{
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  max-width: 190px;
  margin: 0 auto;
  line-height: 1.5;
}

/* --- Who uses Avyra --- */
.router-industries{
  padding: 90px 0;
}
.router-section-heading{
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
}
.router-industry-pills{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  max-width: 840px;
  margin: 0 auto;
}
.router-industry-pill{
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1px solid var(--pill-border);
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 1rem;
  font-weight: 600;
}

/* --- Final CTA --- */
.router-final-cta{
  position: relative;
  padding: 110px 0 130px;
  text-align: center;
  background: radial-gradient(circle at bottom, rgba(255, 45, 117, 0.10), transparent 55%);
}
.router-final-headline{
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  margin-bottom: 8px;
}

@media (max-width: 991.98px){
  .router-hero-grid{ gap: 36px; }
  .router-hero-mascot-img{ max-width: 300px; }
  .router-live-demo-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .voice-grid{
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 16px;
    max-width: 720px;
  }
  .voice-avatar{ height: 92px; }
}

@media (max-width: 767.98px){
  .router-hero{ padding: 90px 0 40px; }
  .router-hero-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }
  .router-hero-text{ max-width: none; margin: 0 auto; }
  .router-hero-mascot{ order: -1; margin-bottom: 0; }
  .router-hero-mascot-img{ max-width: 200px; }
  .router-hero-headline{ font-size: 2.25rem; margin-bottom: 14px; }
  .router-hero-sub{ margin-bottom: 14px; }
  .router-hero-tagline{ margin-bottom: 20px; }
  .router-hero-ctas{ justify-content: center; }
  .router-solutions{ padding: 10px 0 70px; }
  .router-live-demos{ padding: 64px 0; }
  .router-live-demos-heading{ margin-bottom: 30px; }
  .router-live-demo-grid{ grid-template-columns: 1fr; }
  .router-live-demo-card{ padding: 24px; }
  .router-voices{ padding: 10px 0 60px; }
  .voice-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
    margin-top: 32px;
  }
  .voice-avatar{ height: 88px; }
  .router-steps{ padding: 60px 0; }
  .router-industries{ padding: 60px 0; }
  .router-final-cta{ padding: 70px 0 90px; }
  .solution-card{ padding: 36px 24px; }
  .router-steps-row{
    flex-direction: column;
    align-items: center;
    gap: 28px;
    margin-top: 36px;
  }
  .router-step-card{
    flex: 0 1 auto;
    width: 100%;
    max-width: 280px;
  }
  .router-step-connector{
    display: none;
  }
  .router-step-text{ max-width: none; }
}

/* ===================================================================
   RECEPTIONIST LANDING PAGE
   =================================================================== */

/* --- Compact feature tiles (Section 3) --- */
.feature-tile{
  padding: 30px 16px;
  text-align: center;
}
.feature-tile-icon{
  font-size: 1.9rem;
  color: var(--accent-pink);
  margin-bottom: 14px;
  display: block;
}
.feature-tile-label{
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

/* --- Comparison table (Section 6) --- */
.comparison-table-wrap{
  overflow-x: auto;
  border-radius: 16px;
}
.comparison-table{
  width: 100%;
  min-width: 620px;
  border-collapse: separate;
  border-spacing: 0;
}
.comparison-table th,
.comparison-table td{
  padding: 16px 18px;
  text-align: center;
  border-bottom: 1px solid var(--glass-border);
}
.comparison-table th:first-child,
.comparison-table td:first-child{
  text-align: left;
  font-weight: 600;
}
.comparison-table thead th{
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted);
  border-bottom: 2px solid var(--glass-border);
  white-space: nowrap;
}
.comparison-table tbody tr:last-child td{
  border-bottom: none;
}
.comparison-table .col-highlight{
  background: rgba(255, 45, 117, 0.06);
}
.comparison-table .check-yes{
  color: var(--accent-blue);
  font-size: 1.25rem;
}
.comparison-table .check-no{
  color: var(--muted);
  font-size: 1.1rem;
  opacity: 0.55;
}

/* ===================================================================
   COMPLETE LANDING PAGE
   Premium/flagship treatment: pink→blue gradient accents (vs. the
   single-tone pink/blue used on Receptionist/Assistant), bigger hero,
   more section padding.
   =================================================================== */

.complete-hero{
  padding: 180px 0 110px;
}
.complete-hero-headline{
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.08;
}

.section-premium{
  padding: 120px 0;
}

.gradient-text{
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-top-card{
  position: relative;
  overflow: hidden;
}
.gradient-top-card::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-pink), var(--accent-blue));
}

.gradient-icon-badge{
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: linear-gradient(135deg, rgba(255,45,117,0.14), rgba(0,210,255,0.14));
  margin-bottom: 16px;
}

/* Channel-to-platform flow (Section 3) */
.channel-input-card{
  padding: 22px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 1.05rem;
}
.channel-input-icon{
  font-size: 1.6rem;
  display: block;
  margin-bottom: 8px;
}

/* Metrics / ROI cards (Section 8) */
.metric-card{
  padding: 32px 20px;
  text-align: center;
}
.metric-card-icon{
  font-size: 1.8rem;
  margin-bottom: 14px;
  display: block;
}
.metric-card-label{
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

@media (max-width: 767.98px){
  .complete-hero{ padding: 150px 0 70px; }
  .section-premium{ padding: 70px 0; }
}

/* ===================================================================
   SITE-WIDE NAV: Solutions / Industries / Resources dropdowns + CTAs
   =================================================================== */
.avyra-dropdown{
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  padding: 10px;
  box-shadow: var(--card-shadow-hover);
  min-width: 240px;
}
.avyra-dropdown .dropdown-item{
  border-radius: 10px;
  padding: 10px 12px;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  white-space: normal;
}
.avyra-dropdown .dropdown-item:hover,
.avyra-dropdown .dropdown-item:focus{
  background: var(--pill-bg);
  color: var(--accent-blue);
}
.dropdown-item-icon{
  font-size: 1.2rem;
  line-height: 1.3;
}
.dropdown-item-title{
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: inherit;
}
.dropdown-item-sub{
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-cta-primary{
  background: var(--accent-pink) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 700;
  border-radius: 999px !important;
}
.nav-cta-primary:hover{
  background: #e62065 !important;
  color: #fff !important;
}

@media (max-width: 991.98px){
  .navbar-collapse .dropdown-menu{
    position: static;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    padding-left: 8px;
    margin-top: 6px;
    margin-bottom: 10px;
    min-width: 0;
  }
}

/* ===================================================================
   SITE-WIDE FOOTER: product/industry/resource/company grouping
   =================================================================== */
.site-footer{
  padding-top: 20px;
}
.footer-heading{
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  margin-bottom: 16px;
}
.footer-link-list{
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list li{
  margin-bottom: 10px;
}
.footer-link-list a{
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-link-list a:hover{
  color: var(--accent-blue);
}

/* ===================================================================
   COMING-SOON PLACEHOLDER PAGES (Blog, Case Studies, Documentation, About)
   =================================================================== */
.coming-soon-card{
  padding: 60px 40px;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

/* ===================================================================
   INDUSTRY PAGE TEMPLATE (/industries/*)
   Reused as-is across every industry page. Sections 2-4 reuse existing
   glass-card / feature-tile / how-card patterns already in this file —
   only the solution-option cards below are new.
   =================================================================== */
.benefit-item{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  font-weight: 600;
  border-bottom: 1px solid var(--glass-border);
}
.benefit-item:last-child{
  border-bottom: none;
}

.solution-option-card{
  position: relative;
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--glass-border);
}
.solution-option-recommended{
  border: 2px solid var(--accent-pink);
}
.solution-option-badge{
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-pink);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.solution-option-icon{
  font-size: 2rem;
  margin-bottom: 12px;
}
.solution-option-name{
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

/* ===================================================================
   RECEPTIONIST CARD ILLUSTRATION (homepage solution card)
   Pure CSS/HTML — no images, no SVG, no canvas. Incoming-call motif:
   phone shakes gently, ringing waves pulse outward on both sides.
   =================================================================== */
.receptionist-illustration{
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.receptionist-mascot{
  position: relative;
  width: 128px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.receptionist-mascot-img{
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: block;
  object-fit: contain;
}

@media (max-width: 767.98px){
  .receptionist-illustration{
    height: 96px;
  }
  .receptionist-mascot{
    width: 108px;
    height: 96px;
  }
  .receptionist-mascot-img{
    width: 90px;
    height: 90px;
  }
}

/* ===================================================================
   ASSISTANT CARD ILLUSTRATION (homepage solution card)
   Avyra mascot, "typing" state — same mascot style as the hero and
   the Receptionist card, with the typing-dots bubble active.
   =================================================================== */
.assistant-illustration{
  height: 112px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 12px;
}

.assistant-mascot{
  position: relative;
  width: 128px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.assistant-mascot-img{
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: block;
  object-fit: contain;
}

@media (max-width: 767.98px){
  .assistant-illustration{
    height: 100px;
  }
  .assistant-mascot{
    width: 108px;
    height: 96px;
  }
  .assistant-mascot-img{
    width: 90px;
    height: 90px;
  }
}

/* ===================================================================
   COMPLETE CARD ILLUSTRATION (homepage solution card)
   Avyra mascot, "complete" state — same mascot style as the hero and
   the other cards, with the orbit ring active (phone + chat + web,
   unified into one platform).
   =================================================================== */
.complete-illustration{
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.complete-mascot{
  position: relative;
  width: 128px;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete-mascot-img{
  position: relative;
  z-index: 1;
  width: 110px;
  height: 110px;
  display: block;
  object-fit: contain;
}

@media (max-width: 767.98px){
  .complete-illustration{
    height: 100px;
  }
  .complete-mascot{
    width: 108px;
    height: 96px;
  }
  .complete-mascot-img{
    width: 90px;
    height: 90px;
  }
}

/* ===================================================================
   BLOG (article body + index cards)
   =================================================================== */
.blog-article{
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
}
.blog-article h2{
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 44px;
  margin-bottom: 16px;
}
.blog-article h3{
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 30px;
  margin-bottom: 12px;
}
.blog-article p{
  margin-bottom: 20px;
  color: var(--muted);
}
.blog-article ul{
  margin-bottom: 20px;
  padding-left: 22px;
}
.blog-article li{
  margin-bottom: 10px;
  color: var(--muted);
  line-height: 1.65;
}
.blog-article li strong{
  color: var(--text);
}

.blog-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto;
}
.blog-card{
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
  text-align: left;
  height: 100%;
}
.blog-card-icon{
  font-size: 1.6rem;
  color: var(--accent-pink);
  margin-bottom: 16px;
}
.blog-card-title{
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.35;
}
.blog-card-excerpt{
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 22px;
  flex-grow: 1;
}
.blog-card-link{
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--accent-blue);
  text-decoration: none;
}
.blog-card-link:hover{
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .blog-grid{
    grid-template-columns: 1fr;
  }
}
