:root {
  --bg-main: #fafafa;
  --bg-panel: #ffffff;
  --bg-elevated: #f8f9fa;
  --bg-soft: #f5f6f7;
  --bg-alt: #e9ecef;
  --text-main: #1771c7;
  --text-dark: #1a1a1a;
  --text-muted: #6c757d;
  --text-soft-dark: #495057;
  --accent-primary: #1771c7;
  --accent-deep: #0f4f8f;
  --accent-secondary: #1a7dd4;
  --accent-olive: #7f8c8d;
  --border-soft: rgba(0, 0, 0, 0.08);
  --border-dark: rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --container: 1200px;
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background: var(--bg-main);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

body.menu-open {
  overflow: hidden;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--accent-primary);
  color: #fff8f1;
  font-weight: 700;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 60px 0;
}

@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 96px 0;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section-soft,
.section-contact,
.section-legal {
  background: var(--bg-panel);
  color: var(--text-main);
}

.section-visuals {
  background: var(--bg-soft);
}

.section-contact {
  background: var(--bg-soft);
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  transition: background var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

.header-bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

@media (min-width: 768px) {
  .header-bar {
    min-height: 72px;
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .header-bar {
    min-height: 78px;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  order: 1;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

@media (min-width: 768px) {
  .brand img {
    width: 48px;
    height: 48px;
  }
}

.header-cta {
  display: none !important;
  order: 3;
  white-space: nowrap;
  gap: 8px;
  padding: 0 20px 0 16px;
}

@media (min-width: 920px) {
  .header-cta {
    display: inline-flex !important;
  }
}

.playstore-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.nav {
  display: none;
  order: 2;
}

@media (min-width: 920px) {
  .nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--text-main);
  }
}

.nav a {
  transition: color var(--transition);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--accent-primary);
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  background: var(--bg-panel);
  padding: 0;
  order: 4;
}

@media (min-width: 920px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text-main);
  transition: transform var(--transition), opacity var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  gap: 8px;
}

@media (min-width: 768px) {
  .button {
    width: auto;
    padding: 0 24px;
  }
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent-primary);
  color: white;
  box-shadow: var(--shadow-card);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-deep);
}

.button-secondary {
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  color: var(--text-main);
}

.section-soft .button-secondary,
.section-contact .button-secondary,
.section-legal .button-secondary {
  border-color: var(--border-soft);
  background: var(--bg-main);
  color: var(--text-main);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow-dark {
  color: var(--text-muted);
}

.section-head {
  max-width: 100%;
  margin: 0 auto 32px;
  text-align: center;
}

@media (min-width: 768px) {
  .section-head {
    max-width: 760px;
    margin-bottom: 48px;
  }
}

.section-head-left {
  margin-left: 0;
  text-align: left;
}

.section-head-tight {
  max-width: 640px;
}

.section-head h2,
.hero h1,
.why-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 1.08;
}

.section-head h2 {
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .section-head h2 {
    line-height: 1.08;
  }
}

.section-head p:last-child,
.hero-text,
.why-copy > p:last-of-type,
.contact-copy > p:last-of-type {
  color: var(--text-muted);
}

.section-hero {
  position: relative;
  padding: 60px 0 60px;
  background: var(--bg-main);
  overflow: hidden;
}

.section-hero .container {
  max-width: 900px;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .section-hero {
    padding: 80px 0 80px;
  }
  
  .section-hero .container {
    padding: 0 24px;
  }
}

@media (min-width: 1024px) {
  .section-hero {
    padding: 100px 0 100px;
  }
  
  .section-hero .container {
    padding: 0 32px;
  }
}

.hero-backdrop {
  display: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 100%;
  order: 1;
  padding: 0;
}

@media (min-width: 768px) {
  .hero-copy {
    max-width: 700px;
    margin: 0 auto;
  }
}

.hero h1 {
  font-size: clamp(1.75rem, 6vw, 4rem);
  line-height: 1.15;
}

@media (min-width: 768px) {
  .hero h1 {
    line-height: 1.08;
  }
}

.hero-text {
  margin: 16px 0 0;
  font-size: 16px;
  line-height: 1.6;
  max-width: 100%;
}

@media (min-width: 768px) {
  .hero-text {
    margin: 24px 0 0;
    font-size: 18px;
    line-height: 1.7;
    max-width: 580px;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
  }
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  justify-content: center;
}

@media (min-width: 768px) {
  .hero-chips {
    gap: 12px;
    margin-top: 28px;
  }
}

.hero-chips span,
.workflow-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-soft);
  background: var(--bg-panel);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
}

.hero-visual {
  position: relative;
}

.product-stage {
  position: relative;
  min-height: 640px;
}

.dashboard-frame,
.float-phone,
.float-card,
.ambient-device {
  box-shadow: var(--shadow-card);
}

.dashboard-frame {
  position: absolute;
  inset: 68px 74px 82px 0;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

.hero-generated-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.dash-top {
  display: flex;
  gap: 8px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border-soft);
}

.dash-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
}

.dash-body {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 100%;
}

.dash-sidebar {
  padding: 22px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.08);
}

.sidebar-pill {
  height: 40px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 12px;
}

.sidebar-pill.active {
  background: linear-gradient(90deg, rgba(199, 119, 60, 0.76), rgba(40, 74, 120, 0.72));
}

.dash-main {
  padding: 24px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-row article,
.preview-metrics div,
.plans-mini div,
.phone-card,
.message-stack div,
.profile-stack,
.contact-card,
.legal-grid article,
.snapshot-grid article,
.feature-card,
.step-card,
.price-card,
.preview-card {
  border-radius: 24px;
}

.metric-row article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.metric-row span,
.panel-heading span,
.preview-header span,
.price-card .cycle,
.contact-list p,
.footer-bottom p {
  font-size: 14px;
  color: rgba(245, 235, 221, 0.66);
}

.metric-row strong,
.preview-metrics strong,
.phone-card strong {
  display: block;
  margin-top: 8px;
  font-size: 28px;
  font-family: "Manrope", sans-serif;
}

.panel-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 16px;
  margin-top: 16px;
}

.panel {
  padding: 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.04);
}

.panel-heading,
.preview-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.panel-heading h2,
.preview-header h3,
.contact-card h3,
.price-card .plan-name {
  margin: 0;
  font-size: 18px;
  font-family: "Manrope", sans-serif;
}

.panel-list ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 14px;
}

.panel-list li,
.preview-table div,
.footer-links,
.footer-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.panel-list li span,
.preview-table span {
  color: rgba(245, 235, 221, 0.7);
  font-size: 14px;
}

.bars {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: end;
  min-height: 180px;
  margin-top: 24px;
}

.bars span {
  border-radius: 999px 999px 12px 12px;
  background: linear-gradient(180deg, rgba(199, 119, 60, 0.95), rgba(40, 74, 120, 0.65));
}

.bars span:nth-child(1) { height: 36%; }
.bars span:nth-child(2) { height: 52%; }
.bars span:nth-child(3) { height: 64%; }
.bars span:nth-child(4) { height: 45%; }
.bars span:nth-child(5) { height: 76%; }
.bars span:nth-child(6) { height: 92%; }

.float-card {
  position: absolute;
  z-index: 2;
  width: 220px;
  padding: 20px;
  background: rgba(31, 34, 40, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.float-card p,
.phone-card p,
.phone-list span,
.preview-card p,
.feature-card p,
.step-card p,
.price-card li,
.legal-grid p,
.snapshot-grid p,
.faq-content p,
.contact-card span,
.contact-copy p,
.why-list p,
.site-footer p {
  margin: 0;
  line-height: 1.65;
}

.stats-card {
  top: 10px;
  right: 54px;
}

.micro-card {
  left: 36px;
  bottom: 14px;
  width: 250px;
}

.stats-card strong,
.micro-card strong {
  display: block;
  margin: 8px 0;
  font-family: "Manrope", sans-serif;
  font-size: 24px;
}

.float-phone {
  position: absolute;
  right: 0;
  bottom: 54px;
  width: 230px;
  padding: 16px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f4ebde, #e9dcca);
  color: var(--text-dark);
  border: 1px solid rgba(24, 26, 31, 0.08);
}

.phone-header {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.phone-notch {
  width: 84px;
  height: 16px;
  border-radius: 999px;
  background: #1b1d22;
}

.phone-card {
  padding: 16px;
  background: rgba(40, 74, 120, 0.1);
}

.phone-card strong {
  font-size: 18px;
}

.phone-list {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.phone-list article {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(24, 26, 31, 0.06);
}

.snapshot-band {
  padding: 24px 0 0;
}

@media (min-width: 768px) {
  .snapshot-band {
    padding: 32px 0 0;
  }
}

.snapshot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .snapshot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .snapshot-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }
}

.snapshot-grid article {
  padding: 20px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .snapshot-grid article {
    padding: 24px;
  }
}

.snapshot-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  color: white;
}

.snapshot-icon svg {
  width: 24px;
  height: 24px;
}

.snapshot-grid h2,
.feature-card h3,
.step-card h3,
.why-list h3,
.legal-grid h3,
.faq-item button,
.contact-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .snapshot-grid h2,
  .feature-card h3,
  .step-card h3,
  .why-list h3,
  .legal-grid h3,
  .faq-item button,
  .contact-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.feature-grid,
.legal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .feature-grid,
  .legal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .feature-grid,
  .legal-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.feature-card,
.legal-grid article {
  padding: 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.step-card {
  padding: 30px;
  background: #1771c7 !important;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.step-card h3 {
  color: white;
}

.step-card p {
  color: rgba(255, 255, 255, 0.85);
}

.step-card span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: white;
  color: #1771c7;
  font-weight: 600;
  font-size: 16px;
}

.workflow-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .faq-layout {
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: start;
  }
}

.faq-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .faq-sidebar {
    position: sticky;
    top: 100px;
  }
}

.faq-header {
  text-align: left;
}

.faq-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2rem);
  line-height: 1.2;
}

.faq-contact {
  padding: 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.faq-contact h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  color: var(--text-main);
}

.faq-contact > p {
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.faq-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.faq-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: var(--bg-main);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-main);
  transition: transform var(--transition), box-shadow var(--transition);
}

.faq-contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.faq-contact-item svg {
  flex-shrink: 0;
  color: var(--accent-primary);
}

.faq-contact-item div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-contact-item strong {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.faq-contact-item span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-main);
}

.faq-support-info {
  padding-top: 20px;
  border-top: 1px solid var(--border-soft);
}

.faq-support-info p {
  margin: 6px 0;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.faq-support-info strong {
  color: var(--text-main);
  font-weight: 600;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.preview-card {
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
}

.preview-wide {
  grid-column: span 2;
}

.preview-window,
.preview-table,
.profile-stack ul,
.message-stack,
.plans-mini {
  display: grid;
  gap: 14px;
}

.preview-image {
  width: 100%;
  min-height: 280px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preview-image-tall {
  min-height: 360px;
  object-fit: cover;
}

.preview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.preview-metrics div,
.profile-stack,
.message-stack div,
.plans-mini div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.preview-table div {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.profile-stack ul {
  padding-left: 18px;
  margin: 6px 0 0;
}

.pricing-head,
.contact-grid,
.why-grid,
.footer-grid,
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media (min-width: 1024px) {
  .pricing-head,
  .contact-grid,
  .why-grid,
  .footer-grid,
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
}

.pricing-head {
  align-items: flex-start;
  margin-bottom: 32px;
}

@media (min-width: 1024px) {
  .pricing-head {
    align-items: flex-end;
    margin-bottom: 40px;
  }
}

.pricing-toggle {
  display: inline-flex;
  gap: 6px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(24, 26, 31, 0.08);
}

.toggle-option {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: var(--text-main);
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}

.toggle-option.active {
  background: white;
  color: var(--text-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: stretch;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.price-card {
  position: relative;
  padding: 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
}

.price-card.featured {
  background: var(--accent-primary);
  color: white;
  border-color: var(--accent-deep);
  transform: none;
}

@media (min-width: 1024px) {
  .price-card.featured {
    transform: translateY(-4px);
  }
}

.badge {
  position: absolute;
  top: 16px;
  right: 16px;
  margin: 0;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.price {
  margin: 18px 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 1.1;
}

.price-card ul {
  margin: 24px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
}

.price-button {
  width: 100%;
  margin-top: 24px;
  min-height: 48px;
}

.price-card:not(.featured) .price-button {
  color: var(--text-dark);
}

.section-dark {
  background: #0d3d6b;
  color: white;
}

.section-dark .eyebrow {
  color: rgba(255, 255, 255, 0.7);
}

.section-dark .section-head p {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 640px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }
}

.why-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  transition: transform var(--transition), background var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.why-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: white;
}

.why-card p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
}

.ambient-panel {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 22% 18%, rgba(199, 119, 60, 0.2), transparent 20%),
    radial-gradient(circle at 72% 28%, rgba(40, 74, 120, 0.34), transparent 24%),
    linear-gradient(180deg, #1c1f26, #14161a);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.why-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.58;
}

.ambient-orb {
  position: absolute;
  width: 240px;
  height: 240px;
  inset: auto -40px -40px auto;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 119, 60, 0.4), transparent 68%);
}

.ambient-device {
  position: absolute;
  inset: 48px;
  display: grid;
  align-content: end;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-list {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.why-list article {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.why-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  padding: 24px;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--text-main);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.faq-item button span {
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--accent-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-icon-plus {
  display: block;
}

.faq-icon-minus {
  display: none;
}

.faq-item.open .faq-icon-plus {
  display: none;
}

.faq-item.open .faq-icon-minus {
  display: block;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding var(--transition);
  padding: 0 24px;
}

.faq-item.open .faq-content {
  max-height: 220px;
  padding: 0 24px 24px;
}

.contact-center {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-center h2 {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.2;
}

.contact-center > p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 32px 0;
}

@media (min-width: 640px) {
  .contact-details {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-main);
  transition: transform var(--transition), box-shadow var(--transition);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.contact-item strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-item span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-main);
}

.contact-info {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-soft);
}

.contact-info p {
  margin: 8px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.contact-info strong {
  color: var(--text-main);
  font-weight: 600;
}

.legal-grid {
  margin-top: 20px;
}

.site-footer {
  padding: 60px 0 20px;
  background: var(--bg-soft);
  color: var(--text-main);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
  }
}

.footer-brand {
  max-width: 300px;
}

.brand-footer {
  margin-bottom: 16px;
}

.footer-brand p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 15px;
}

.footer-links h4,
.footer-contact h4 {
  margin: 0 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a,
.footer-contact a {
  color: var(--text-muted);
  font-size: 15px;
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--accent-primary);
}

.footer-contact p {
  margin: 8px 0 0;
  color: var(--text-muted);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition);
}

.footer-legal a:hover {
  color: var(--accent-primary);
}

.footer-copyright {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.mobile-download-btn {
  position: fixed;
  bottom: 20px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: block;
}

@media (min-width: 920px) {
  .mobile-download-btn {
    display: none;
  }
}

.mobile-download-btn .button {
  width: 100%;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(23, 113, 199, 0.3);
  backdrop-filter: blur(10px);
}

.toast {
  position: fixed;
  top: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 70;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: rgba(23, 113, 199, 0.95);
  color: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toast-content svg {
  flex-shrink: 0;
  color: #ffd700;
}

.toast-content span {
  font-size: 15px;
  font-weight: 500;
}

.menu-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.dashboard-frame {
  position: relative;
  inset: auto;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  overflow: hidden;
}

@media (min-width: 1024px) {
  .dashboard-frame {
    position: absolute;
    inset: 68px 74px 82px 0;
  }
}

.product-stage {
  min-height: auto;
  padding: 20px 0;
}

@media (min-width: 768px) {
  .product-stage {
    padding: 30px 0;
  }
}

@media (min-width: 1024px) {
  .product-stage {
    min-height: 640px;
    padding: 0;
  }
}

.stats-card,
.micro-card,
.float-phone {
  position: relative;
  inset: auto;
  margin-top: 18px;
  width: 100%;
}

@media (min-width: 1024px) {
  .stats-card {
    position: absolute;
    top: 10px;
    right: 54px;
    width: 220px;
    margin-top: 0;
  }

  .micro-card {
    position: absolute;
    left: 36px;
    bottom: 14px;
    width: 250px;
    margin-top: 0;
  }

  .float-phone {
    position: absolute;
    right: 0;
    bottom: 54px;
    width: 230px;
    margin-top: 0;
  }
}

@media (max-width: 919px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 10px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity var(--transition), transform var(--transition);
    box-shadow: var(--shadow-soft);
    z-index: 40;
  }

  .nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Customer Benefits Section */
.customer-benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

@media (min-width: 640px) {
  .customer-benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (min-width: 1024px) {
  .customer-benefits-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }
}

.benefit-card {
  padding: 28px;
  background: var(--bg-panel);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.benefit-card h3 {
  margin: 0 0 8px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .benefit-card h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }
}

.benefit-card p {
  margin: 0;
  line-height: 1.65;
  color: var(--text-muted);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.benefit-icon svg {
  width: 24px;
  height: 24px;
}


/* Marquee Banner */
.marquee-banner {
  background: var(--accent-primary);
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
  position: relative;
  z-index: 51;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
  padding-left: 100%;
}

.marquee-content span {
  display: inline-block;
  padding: 0 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (min-width: 768px) {
  .marquee-content span {
    font-size: 15px;
    padding: 0 60px;
  }
}
