/* =====================================================================
   OfficeNumber — Design System
   ===================================================================== */

:root {
  /* ===========================================================
     Brand palette — Apple-style monochrome + signature blue
     =========================================================== */

  /* Surfaces */
  --white: #FFFFFF;
  --surface: #F5F5F7;          /* Apple's signature section grey */
  --surface-2: #FBFBFD;        /* Almost-white for soft contrast */
  --surface-dark: #1D1D1F;     /* Apple's near-black for impact sections */
  --surface-darker: #000000;

  /* Text */
  --ink: #1D1D1F;              /* primary text */
  --ink-soft: #6E6E73;         /* secondary text */
  --ink-fade: #86868B;         /* tertiary text */

  /* Lines */
  --line: #D2D2D7;
  --line-soft: #E5E5EA;

  /* Single accent — Apple blue */
  --accent: #0071E3;
  --accent-hover: #0077ED;
  --accent-bright: #2997FF;
  --accent-soft: #E8F1FD;

  /* Aliases kept for backward compatibility — all map to neutrals/accent */
  --navy-deep: #1D1D1F;
  --navy: #2D2D30;
  --navy-soft: #3A3A3D;
  --indigo: #0071E3;
  --indigo-bright: #2997FF;
  --indigo-light: #5EB1FF;
  --indigo-soft: #E8F1FD;
  --coral: #0071E3;            /* CTA accent — was orange, now blue */
  --coral-deep: #0066D1;
  --coral-soft: #E8F1FD;
  --blue: #0071E3;
  --blue-deep: #0066D1;
  --blue-soft: #E8F1FD;

  /* WhatsApp — preserved for brand recognition on WA product */
  --wa-green: #25D366;
  --wa-green-deep: #128C7E;
  --wa-green-darkest: #075E54;
  --wa-green-bubble: #DCF8C6;

  /* Effects */
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(29, 29, 31, 0.04);
  --shadow-sm: 0 4px 12px rgba(29, 29, 31, 0.05);
  --shadow-md: 0 12px 32px rgba(29, 29, 31, 0.07);
  --shadow-lg: 0 24px 60px rgba(29, 29, 31, 0.10);
  --shadow-glow-coral: 0 16px 40px rgba(0, 113, 227, 0.28);
  --shadow-glow-green: 0 16px 40px rgba(37, 211, 102, 0.28);
  --shadow-glow-blue: 0 16px 40px rgba(0, 113, 227, 0.28);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

::selection { background: var(--coral-soft); color: var(--coral-deep); }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img, svg { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, h6 { line-height: 1.1; letter-spacing: -0.025em; font-weight: 700; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); font-weight: 700; letter-spacing: -0.04em; line-height: 1.04; }
h2 { font-size: clamp(2.1rem, 4vw, 3.6rem); font-weight: 700; letter-spacing: -0.035em; line-height: 1.06; }
h3 { font-size: clamp(1.4rem, 2vw, 1.75rem); font-weight: 600; letter-spacing: -0.02em; }
h4 { font-size: 1.1rem; font-weight: 600; letter-spacing: -0.01em; }

p { color: var(--ink-soft); }

/* =====================================================================
   Layout primitives
   ===================================================================== */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1340px; margin: 0 auto; padding: 0 24px; }

section { padding: 130px 0; }
@media (max-width: 720px) { section { padding: 80px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 0.92rem;
  letter-spacing: -0.005em;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow-blue { color: var(--accent); background: transparent; padding: 0; }
.eyebrow-green { color: var(--wa-green-deep); background: transparent; padding: 0; }

.section-head { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.08rem; color: var(--ink-soft); }

/* =====================================================================
   Buttons
   ===================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  letter-spacing: -0.01em;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease), color 0.2s var(--ease);
  white-space: nowrap;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--ink);
  color: white;
}
.btn-primary:hover { background: var(--surface-darker); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-coral {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 113, 227, 0.22);
}
.btn-coral:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: var(--shadow-glow-blue); }

.btn-green {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.22);
}
.btn-green:hover { background: var(--wa-green-deep); transform: translateY(-1px); box-shadow: var(--shadow-glow-green); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { background: var(--surface); border-color: var(--ink); }

.btn-large { padding: 16px 28px; font-size: 1rem; }
.btn-small { padding: 8px 16px; font-size: 0.85rem; }

.btn:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

.btn-arrow svg {
  transition: transform 0.2s var(--ease);
}
.btn-arrow:hover svg { transform: translateX(3px); }

/* =====================================================================
   Header
   ===================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-size: 1.18rem;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, #1D1D1F 0%, #2D2D30 60%, #3A3A3D 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(29, 29, 31, 0.18);
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.logo-mark svg { position: relative; z-index: 1; }

.logo-text {
  display: inline-flex;
  gap: 1px;
  align-items: baseline;
}
.logo-text .word-light { color: var(--ink-soft); font-weight: 500; }
.logo-text .word-bold { color: var(--ink); font-weight: 800; }

.site-nav { display: flex; gap: 24px; align-items: center; }
.site-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s var(--ease);
}
.site-nav a:not(.btn):hover { color: var(--ink); }

@media (max-width: 720px) {
  .site-nav a:not(.btn):not(.nav-cta) { display: none; }
}

/* =====================================================================
   Hero
   ===================================================================== */

.hero {
  position: relative;
  padding: 96px 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}
.hero-blob-1 {
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.10), transparent 70%);
  animation: drift 22s ease-in-out infinite;
}
.hero-blob-2 {
  bottom: -200px;
  left: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.08), transparent 70%);
  animation: drift 26s ease-in-out infinite reverse;
}
.hero-blob-3 {
  top: 30%;
  left: 50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.06), transparent 70%);
  animation: drift 30s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(30px, -20px); }
  66% { transform: translate(-20px, 30px); }
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}
.hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--ink) 30%, var(--coral) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-lede {
  font-size: 1.16rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.hero-trust {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 0.86rem;
  color: var(--ink-fade);
  font-weight: 500;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.hero-trust svg { color: var(--wa-green); }

/* =====================================================================
   Product cards (the main hero CTA)
   ===================================================================== */

.product-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 60px auto 0;
  position: relative;
  z-index: 1;
}

@media (max-width: 880px) {
  .product-cards { grid-template-columns: 1fr; }
}

.product-card {
  position: relative;
  display: block;
  padding: 36px 32px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1.5px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s var(--ease);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, var(--accent-bg, transparent) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 0;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card:hover::before { opacity: 1; }
.product-card > * { position: relative; z-index: 1; }

.product-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
}

.product-card.product-whatsapp { --accent-bg: var(--wa-green-bubble); }
.product-card.product-whatsapp .product-card-icon {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-deep));
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.3);
}
.product-card.product-whatsapp:hover { border-color: var(--wa-green); }

.product-card.product-landline { --accent-bg: var(--indigo-soft); }
.product-card.product-landline .product-card-icon {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-bright));
  box-shock: 0 12px 28px rgba(79, 70, 229, 0.32);
  box-shadow: 0 12px 28px rgba(79, 70, 229, 0.32);
}
.product-card.product-landline:hover { border-color: var(--indigo); }

.product-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 6px;
}
.product-card.product-whatsapp .product-card-tag {
  color: var(--wa-green-darkest);
  background: var(--wa-green-bubble);
}
.product-card.product-landline .product-card-tag {
  color: var(--blue-deep);
  background: var(--blue-soft);
}

.product-card h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}
.product-card p {
  font-size: 1rem;
  margin-bottom: 24px;
}

.product-card-features {
  list-style: none;
  margin-bottom: 28px;
}
.product-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 500;
}
.product-card-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  flex-shrink: 0;
}
.product-card.product-whatsapp .product-card-features li::before {
  background-color: var(--wa-green);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.product-card.product-landline .product-card-features li::before {
  background-color: var(--blue);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  padding-top: 4px;
}
.product-card.product-whatsapp .product-card-cta { color: var(--wa-green-darkest); }
.product-card.product-landline .product-card-cta { color: var(--blue-deep); }
.product-card-cta svg { transition: transform 0.25s var(--ease); }
.product-card:hover .product-card-cta svg { transform: translateX(5px); }

.product-card-price {
  position: absolute;
  top: 28px;
  right: 28px;
  text-align: right;
  font-size: 0.78rem;
  color: var(--ink-fade);
  font-weight: 500;
}
.product-card-price strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

/* =====================================================================
   Trust bar
   ===================================================================== */

.trust-bar {
  background: var(--surface);
  padding: 28px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  align-items: center;
  text-align: center;
}
.trust-item strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.trust-item span {
  font-size: 0.86rem;
  color: var(--ink-soft);
}

/* =====================================================================
   Features grid
   ===================================================================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.feature {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--line);
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.feature h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
}
.feature p { font-size: 0.92rem; }

/* =====================================================================
   How it works
   ===================================================================== */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.how-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--line), var(--line) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
@media (max-width: 720px) {
  .how-grid { grid-template-columns: 1fr; }
  .how-grid::before { display: none; }
}

.how-step {
  position: relative;
  text-align: center;
  z-index: 1;
}
.how-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: white;
  border: 2px solid var(--coral);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.4rem;
  margin: 0 auto 18px;
  letter-spacing: -0.02em;
}
.how-step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.how-step p { font-size: 0.95rem; color: var(--ink-soft); }

/* =====================================================================
   Comparison table
   ===================================================================== */

.compare-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th, .compare-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.94rem;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table th {
  background: var(--surface);
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: -0.005em;
  color: var(--ink);
  position: relative;
}
.compare-table th.compare-wa { color: var(--wa-green-darkest); }
.compare-table th.compare-landline { color: var(--blue-deep); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table .cell-yes { color: var(--wa-green-deep); font-weight: 600; }
.compare-table .cell-no { color: var(--ink-fade); }
.compare-table .cell-soft { color: var(--ink-soft); }

/* =====================================================================
   Testimonials
   ===================================================================== */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial {
  background: white;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
}
.testimonial-quote {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.55;
  margin-bottom: 20px;
  font-weight: 500;
}
.testimonial-quote::before {
  content: '"';
  font-size: 3rem;
  color: var(--coral-soft);
  position: absolute;
  top: 8px;
  right: 18px;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), var(--coral-deep));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author-info strong {
  display: block;
  font-size: 0.94rem;
  color: var(--ink);
}
.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--ink-fade);
}
.testimonial-stars {
  color: #FBBF24;
  margin-bottom: 12px;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

/* =====================================================================
   FAQ
   ===================================================================== */

.faq { max-width: 720px; margin: 0 auto; }
.faq details {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.faq details[open] { border-color: var(--coral); }
.faq summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 24px;
  font-weight: 600;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--coral);
  font-weight: 400;
  transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > p {
  padding: 0 24px 20px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* =====================================================================
   Final CTA
   ===================================================================== */

.cta-card {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: white;
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before, .cta-card::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-card::before {
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.5), transparent 70%);
}
.cta-card::after {
  bottom: -120px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.45), transparent 70%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-card h2 { color: white; margin-bottom: 16px; }
.cta-card p { color: rgba(255, 255, 255, 0.8); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-card .btn-coral { box-shadow: 0 12px 32px rgba(255, 107, 91, 0.5); }

/* =====================================================================
   Footer
   ===================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.site-footer .logo { color: white; }
.site-footer .logo-text .word-light { color: rgba(255, 255, 255, 0.6); }
.site-footer .logo-text .word-bold { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-tag {
  margin-top: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 280px;
}
.footer-grid h6 {
  color: white;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-grid a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}
.footer-grid a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* =====================================================================
   Phone mockup illustration (hero)
   ===================================================================== */

.phone-mockup {
  position: relative;
  width: 280px;
  height: 560px;
  margin: 0 auto;
  filter: drop-shadow(0 32px 80px rgba(11, 23, 57, 0.18));
}
.phone-frame {
  position: absolute;
  inset: 0;
  background: var(--ink);
  border-radius: 44px;
  padding: 14px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.1);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: linear-gradient(180deg, #ECE5DD 0%, #DDD7CE 100%);
  overflow: hidden;
}
.phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: var(--ink);
  border-radius: 0 0 16px 16px;
  z-index: 2;
}
.phone-header-bar {
  background: var(--wa-green-darkest);
  color: white;
  padding: 38px 16px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone-header-bar .pa-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.phone-header-bar .pa-info { font-size: 0.78rem; opacity: 0.85; font-weight: 500; }

.phone-chat {
  padding: 14px 14px;
  height: calc(100% - 110px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
}
.chat-bubble {
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 12px;
  max-width: 78%;
  line-height: 1.4;
  position: relative;
  animation: bubbleIn 0.5s var(--bounce) forwards;
  opacity: 0;
}
.chat-bubble.received {
  background: white;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  color: var(--ink);
}
.chat-bubble.sent {
  background: var(--wa-green-bubble);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  color: var(--wa-green-darkest);
}
.chat-bubble:nth-child(1) { animation-delay: 0.6s; }
.chat-bubble:nth-child(2) { animation-delay: 1.0s; }
.chat-bubble:nth-child(3) { animation-delay: 1.4s; }
.chat-bubble:nth-child(4) { animation-delay: 1.8s; }
.chat-bubble:nth-child(5) { animation-delay: 2.2s; }
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hero side-by-side layout */
.hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-split .hero-content { text-align: left; max-width: none; }
.hero-split .hero-content h1 { text-align: left; }
.hero-split .hero-content .hero-lede { margin-left: 0; margin-right: 0; }
.hero-split .hero-cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .hero-split { grid-template-columns: 1fr; gap: 40px; }
  .hero-split .hero-content { text-align: center; }
  .hero-split .hero-content h1 { text-align: center; }
  .hero-split .hero-cta-row { justify-content: center; }
}

/* =====================================================================
   Onboarding
   ===================================================================== */

.onboard {
  min-height: 100vh;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.onboard-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.onboard-bg .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
}
.onboard-whatsapp .onboard-bg .blob-1 {
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37, 211, 102, 0.25), transparent 70%);
}
.onboard-whatsapp .onboard-bg .blob-2 {
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(18, 140, 126, 0.18), transparent 70%);
}
.onboard-landline .onboard-bg .blob-1 {
  top: -150px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 70%);
}
.onboard-landline .onboard-bg .blob-2 {
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.22), transparent 70%);
}

.onboard-top {
  position: relative;
  z-index: 2;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(247, 248, 250, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}

.onboard-progress-wrap {
  flex: 1;
  max-width: 420px;
  margin: 0 24px;
}
.onboard-progress {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
}
.onboard-progress-bar {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 0.5s var(--ease-out);
}
.onboard-whatsapp .onboard-progress-bar {
  background: linear-gradient(90deg, var(--wa-green), var(--wa-green-deep));
}
.onboard-landline .onboard-progress-bar {
  background: linear-gradient(90deg, var(--blue), var(--coral));
}
.onboard-progress-label {
  font-size: 0.72rem;
  text-align: center;
  margin-top: 6px;
  color: var(--ink-fade);
  font-weight: 600;
  letter-spacing: 0.05em;
}

.onboard-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}
.onboard-back:hover { background: var(--surface-2); color: var(--ink); }

.onboard-help {
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.onboard-help a {
  font-weight: 600;
  color: var(--ink);
}
@media (max-width: 720px) { .onboard-help { display: none; } }

.onboard-viewport {
  flex: 1;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px 60px;
}

.onboard-step {
  width: 100%;
  max-width: 540px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateX(40px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.onboard-step.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.onboard-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line-soft);
}
@media (max-width: 540px) {
  .onboard-card { padding: 32px 24px; }
}

.onboard-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: white;
}
.onboard-whatsapp .onboard-step-icon {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-deep));
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.32);
}
.onboard-landline .onboard-step-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 28px rgba(91, 127, 255, 0.32);
}

.onboard-card h1 {
  font-size: clamp(1.65rem, 3vw, 1.95rem);
  margin-bottom: 8px;
  letter-spacing: -0.025em;
}
.onboard-card .lede {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin-bottom: 30px;
  line-height: 1.55;
}

/* Welcome step value props */
.welcome-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}
.welcome-list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  transition: all 0.2s var(--ease);
}
.welcome-list li:hover { background: var(--surface-2); }
.welcome-list-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.onboard-whatsapp .welcome-list-icon { color: var(--wa-green-deep); }
.onboard-landline .welcome-list-icon { color: var(--blue-deep); }
.welcome-list-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
}
.welcome-list-text span {
  color: var(--ink-fade);
  font-size: 0.85rem;
}

/* Form basics */
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.005em;
}
.form-input, .form-select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  background: white;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  transition: all 0.2s var(--ease);
}
.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}
.onboard-whatsapp .form-input:focus {
  border-color: var(--wa-green);
  box-shadow: 0 0 0 4px var(--wa-green-bubble);
}
.onboard-landline .form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}
.form-hint {
  font-size: 0.78rem;
  color: var(--ink-fade);
  margin-top: 4px;
}

/* Area code grid */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.area-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 16px 10px;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  text-align: center;
  position: relative;
}
.area-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.onboard-whatsapp .area-card:hover { border-color: var(--wa-green); }
.onboard-landline .area-card:hover { border-color: var(--blue); }

.area-card.selected {
  border-color: var(--coral);
  background: var(--coral-soft);
}
.onboard-whatsapp .area-card.selected {
  border-color: var(--wa-green);
  background: var(--wa-green-bubble);
}
.onboard-landline .area-card.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}
.area-card.selected::after {
  content: '';
  position: absolute;
  top: 8px; right: 8px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  animation: bubbleIn 0.3s var(--bounce);
}
.onboard-whatsapp .area-card.selected::after { background-color: var(--wa-green); }
.onboard-landline .area-card.selected::after { background-color: var(--blue); }

.area-card-code {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  font-feature-settings: 'tnum';
}
.area-card-city {
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 500;
  margin-top: 2px;
}

/* Big choice cards (used for IVR / no-IVR fork) */
.choice-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
@media (max-width: 540px) {
  .choice-cards { grid-template-columns: 1fr; }
}
.choice-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  position: relative;
}
.choice-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.onboard-landline .choice-card:hover { border-color: var(--blue); }
.choice-card.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
}
.choice-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--surface);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.choice-card.selected .choice-card-icon {
  background: var(--blue);
  color: white;
}
.choice-card h4 {
  margin-bottom: 4px;
  font-size: 1.05rem;
  color: var(--ink);
}
.choice-card p {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.choice-card-tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

/* Category grid */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.cat-card {
  background: white;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
}
.cat-card:hover { transform: translateY(-1px); }
.onboard-whatsapp .cat-card:hover { border-color: var(--wa-green); }
.onboard-landline .cat-card:hover { border-color: var(--blue); }
.cat-card.selected {
  font-weight: 600;
}
.onboard-whatsapp .cat-card.selected {
  border-color: var(--wa-green);
  background: var(--wa-green-bubble);
  color: var(--wa-green-darkest);
}
.onboard-landline .cat-card.selected {
  border-color: var(--blue);
  background: var(--blue-soft);
  color: var(--blue-deep);
}
.cat-card svg { color: var(--ink-fade); flex-shrink: 0; }
.onboard-whatsapp .cat-card.selected svg { color: var(--wa-green-deep); }
.onboard-landline .cat-card.selected svg { color: var(--blue-deep); }

/* Forwarding numbers list */
.fwd-list { display: grid; gap: 10px; margin-bottom: 18px; }
.fwd-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
}
.fwd-remove {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink-fade);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s var(--ease);
}
.fwd-remove:hover { background: var(--coral-soft); color: var(--coral-deep); }

/* IVR options builder */
.ivr-options-list { display: grid; gap: 10px; margin-bottom: 18px; }
.ivr-option {
  display: grid;
  grid-template-columns: 56px 1fr 130px 1fr 36px;
  gap: 8px;
  align-items: center;
}
.ivr-option-digit {
  text-align: center;
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--blue-soft);
  color: var(--blue-deep);
  border-radius: 8px;
  padding: 12px 0;
  font-feature-settings: 'tnum';
}

/* Step actions */
.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.step-actions .btn { flex: 1; }
.step-actions .btn-large { padding: 14px 24px; }

/* Generating step (slot machine) */
.gen-stage { text-align: center; }
.gen-stage .onboard-step-icon { margin-left: auto; margin-right: auto; }

.gen-loader {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--surface);
  padding: 22px 28px;
  border-radius: 18px;
  margin: 14px 0 24px;
  font-feature-settings: 'tnum';
  font-weight: 800;
  font-size: 2rem;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.gen-prefix {
  margin-right: 8px;
  font-weight: 800;
}
.onboard-whatsapp .gen-prefix { color: var(--wa-green-deep); }
.onboard-landline .gen-prefix { color: var(--blue-deep); }

.gen-digit {
  display: inline-block;
  width: 22px;
  height: 50px;
  overflow: hidden;
  position: relative;
  background: white;
  border-radius: 6px;
  margin: 0 1px;
  border: 1px solid var(--line-soft);
}
.gen-digit-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 50px;
}
.gen-digit-strip span {
  height: 50px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gen-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 14px;
  min-height: 24px;
}
.gen-spinner {
  width: 18px; height: 18px;
  border: 2.5px solid var(--surface-2);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
.onboard-whatsapp .gen-spinner { border-top-color: var(--wa-green); }
.onboard-landline .gen-spinner { border-top-color: var(--blue); }
@keyframes spin { to { transform: rotate(360deg); } }

.gen-checks {
  list-style: none;
  text-align: left;
  max-width: 320px;
  margin: 16px auto 0;
}
.gen-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.88rem;
  color: var(--ink-fade);
  font-weight: 500;
  transition: color 0.3s var(--ease);
}
.gen-checks li.done { color: var(--ink); }
.gen-checks li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--surface-2);
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
}
.gen-checks li.done::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  animation: bubbleIn 0.3s var(--bounce);
}
.onboard-whatsapp .gen-checks li.done::before { background-color: var(--wa-green); }
.onboard-landline .gen-checks li.done::before { background-color: var(--blue); }

/* Success step */
.success-burst {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: success-pop 0.6s var(--bounce);
  color: white;
}
.onboard-whatsapp .success-burst {
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-deep));
  box-shadow: var(--shadow-glow-green);
}
.onboard-landline .success-burst {
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: var(--shadow-glow-blue);
}
.success-burst::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2.5px solid currentColor;
  opacity: 0.3;
  animation: success-ring 1.6s ease-out infinite;
}
@keyframes success-pop {
  0% { transform: scale(0); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes success-ring {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.5); opacity: 0; }
}

.number-reveal {
  color: white;
  padding: 28px 24px;
  border-radius: 16px;
  text-align: center;
  margin: 24px 0 28px;
  position: relative;
  overflow: hidden;
}
.onboard-whatsapp .number-reveal {
  background: linear-gradient(135deg, var(--wa-green-darkest), var(--wa-green-deep));
}
.onboard-landline .number-reveal {
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.number-reveal::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 200px; height: 200px;
  filter: blur(40px);
  pointer-events: none;
}
.onboard-whatsapp .number-reveal::before { background: radial-gradient(circle, rgba(37, 211, 102, 0.4), transparent 70%); }
.onboard-landline .number-reveal::before { background: radial-gradient(circle, rgba(91, 127, 255, 0.4), transparent 70%); }
.number-reveal-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  margin-bottom: 10px;
}
.number-reveal-num {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-feature-settings: 'tnum';
  position: relative;
  z-index: 1;
}

.next-steps-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 16px 0 28px;
}
.next-steps-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  text-align: left;
}
.next-steps-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.onboard-whatsapp .next-steps-num { background: var(--wa-green); }
.onboard-landline .next-steps-num { background: var(--blue); }
.next-steps-text strong {
  display: block;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 2px;
}
.next-steps-text span {
  color: var(--ink-fade);
  font-size: 0.86rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Marquee */
.marquee {
  background: var(--ink);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  font-weight: 600;
  font-size: 0.92rem;
  animation: marquee 30s linear infinite;
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.marquee-track svg { color: var(--coral); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Alert */
.alert {
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.88rem;
  margin-bottom: 14px;
  border: 1px solid;
}
.alert-error { background: #FEE2E2; color: #991B1B; border-color: #FCA5A5; }
.alert-info { background: var(--blue-soft); color: var(--blue-deep); border-color: var(--blue); }

/* =====================================================================
   Homepage SEO additions
   ===================================================================== */

/* ----- Hero phone mockup ----- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 540px;
}
@media (max-width: 880px) {
  .hero-visual { min-height: 460px; margin-top: 32px; }
}

.hero-phone {
  position: relative;
  width: 280px;
  height: 540px;
  filter: drop-shadow(0 32px 80px rgba(15, 23, 42, 0.22));
  animation: heroFloat 6s ease-in-out infinite;
}
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-phone-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1F2937 0%, #0F172A 100%);
  border-radius: 44px;
  padding: 12px;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.08);
}
.hero-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  background: linear-gradient(180deg, #1E1B4B 0%, #312E81 60%, #4F46E5 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 22px 28px;
}
.hero-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 22px;
  background: #0F172A;
  border-radius: 0 0 16px 16px;
}

.ringing-pulse {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.45) 0%, transparent 70%);
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { opacity: 1; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 0; transform: translateX(-50%) scale(1.8); }
}

.ringing-status {
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ringing-num {
  margin-top: 14px;
  color: white;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  font-feature-settings: 'tnum';
}
.ringing-label {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  text-align: center;
  line-height: 1.4;
}

.ringing-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 16px;
}
.ring-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.ring-btn:hover { transform: scale(1.06); }
.ring-btn.decline { background: #EF4444; }
.ring-btn.decline svg { transform: rotate(135deg); }
.ring-btn.accept {
  background: var(--wa-green);
  animation: acceptPulse 1.6s ease-in-out infinite;
}
@keyframes acceptPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
}

/* Floating overlays around the phone */
.hero-chat-bubble, .hero-sms-bubble {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 240px;
  animation: floatBubble 5s ease-in-out infinite;
}
.hero-chat-bubble {
  top: 60px;
  left: -50px;
  animation-delay: 0.5s;
}
.hero-sms-bubble {
  bottom: 80px;
  right: -60px;
  animation-delay: 1.5s;
}
@keyframes floatBubble {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@media (max-width: 880px) {
  .hero-chat-bubble { left: -10px; top: 30px; }
  .hero-sms-bubble  { right: -10px; bottom: 60px; }
}

.hcb-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-deep));
  color: white;
  font-weight: 700;
  font-size: 0.84rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hcb-content, .hsb-content { display: flex; flex-direction: column; min-width: 0; }
.hcb-content strong, .hsb-content strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hcb-content span, .hsb-content span {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.hsb-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--coral-soft);
  color: var(--coral-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ----- Trusted-by logos strip ----- */
.trusted-by {
  text-align: center;
  padding: 56px 0 32px;
  background: var(--white);
}
.trusted-by-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink-fade);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.trusted-by-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.7;
}
.trusted-by-logos span {
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
  font-family: 'Inter', sans-serif;
}
.trusted-by-logos span.brand-italic { font-style: italic; }
.trusted-by-logos span.brand-mono { font-family: 'Courier New', monospace; font-size: 1rem; }
.trusted-by-logos span.brand-uppercase { text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.95rem; }

/* ----- Industries grid ----- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.industry-card {
  background: white;
  padding: 22px 20px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.2s var(--ease);
  display: flex;
  align-items: center;
  gap: 14px;
}
.industry-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: var(--indigo);
}
.industry-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--indigo-soft);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.industry-text strong {
  display: block;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.industry-text span {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* ----- Area codes grid ----- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.area-pill {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s var(--ease);
}
.area-pill:hover {
  border-color: var(--indigo);
  transform: translateY(-1px);
  box-shadow: var(--shadow-xs);
}
.area-pill-code {
  font-feature-settings: 'tnum';
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.area-pill-city {
  font-size: 0.84rem;
  color: var(--ink-soft);
}

/* ----- Dashboard preview section ----- */
.dashboard-preview-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 100%);
}
.dashboard-mockup {
  margin-top: 48px;
  background: white;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.dashboard-mockup-bar {
  height: 38px;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.dashboard-mockup-bar span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line);
}
.dashboard-mockup-bar span:first-child { background: #EF4444; }
.dashboard-mockup-bar span:nth-child(2) { background: #FBBF24; }
.dashboard-mockup-bar span:nth-child(3) { background: var(--wa-green); }

.dashboard-mockup-body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 500px;
}
@media (max-width: 720px) {
  .dashboard-mockup-body { grid-template-columns: 1fr; }
}
.dm-side {
  background: var(--white);
  border-right: 1px solid var(--line-soft);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 720px) { .dm-side { display: none; } }
.dm-side-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.dm-side-item.active { background: var(--ink); color: white; }
.dm-side-item.active svg { color: var(--coral); }
.dm-side-item svg { color: var(--ink-fade); flex-shrink: 0; }

.dm-main { padding: 24px 28px; background: var(--surface); }
.dm-main h4 {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
}
.dm-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}
.dm-kpi {
  background: white;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
}
.dm-kpi-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-fade);
  font-weight: 600;
}
.dm-kpi-val {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 4px;
  font-feature-settings: 'tnum';
}
.dm-kpi.accent { background: linear-gradient(135deg, var(--ink), var(--navy-soft)); border-color: transparent; }
.dm-kpi.accent .dm-kpi-label { color: rgba(255,255,255,0.6); }
.dm-kpi.accent .dm-kpi-val { color: white; }

.dm-table {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.dm-table-head, .dm-table-row {
  display: grid;
  grid-template-columns: 1fr 100px 80px 90px;
  padding: 10px 14px;
  font-size: 0.82rem;
  align-items: center;
}
.dm-table-head {
  background: var(--surface);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-fade);
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.dm-table-row { border-bottom: 1px solid var(--line-soft); }
.dm-table-row:last-child { border-bottom: none; }
.dm-table-row .num { font-feature-settings: 'tnum'; font-weight: 600; color: var(--ink); }
.dm-table-row .muted { color: var(--ink-fade); }
.dm-pill { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 0.7rem; font-weight: 600; }
.dm-pill.green { background: var(--wa-green-bubble); color: var(--wa-green-darkest); }
.dm-pill.amber { background: #FEF3C7; color: #92400E; }
.dm-pill.red   { background: #FEE2E2; color: #991B1B; }

.testimonial-avatar.photo {
  background: var(--surface-2);
  object-fit: cover;
  display: block;
}

/* =====================================================================
   APPLE-STYLE HOMEPAGE
   ===================================================================== */

/* ----- Reveal-on-scroll (smoother) ----- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.fade-up.d1 { animation-delay: 0.08s; }
.fade-up.d2 { animation-delay: 0.16s; }
.fade-up.d3 { animation-delay: 0.24s; }
.fade-up.d4 { animation-delay: 0.34s; }
.fade-up.d5 { animation-delay: 0.42s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .fade-up, .reveal { animation: none; opacity: 1; transform: none; }
}

/* ----- 1. HERO ----- */
.ap-hero {
  position: relative;
  padding: 110px 0 80px;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 720px) { .ap-hero { padding: 64px 0 40px; } }

.ap-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.ap-hero-content {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 70px;
}

.ap-hero h1 {
  margin-bottom: 26px;
}
.ap-h1-grad {
  background: linear-gradient(135deg, var(--ink) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.ap-lede {
  font-size: clamp(1.1rem, 1.5vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 38px;
  line-height: 1.5;
  font-weight: 400;
}

.ap-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.ap-link-cta {
  font-size: 1rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.01em;
  transition: opacity 0.2s var(--ease);
}
.ap-link-cta:hover { opacity: 0.7; }

/* Hero phone mockup — bigger, central */
.ap-hero-stage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
  margin-top: 20px;
}
@media (max-width: 720px) { .ap-hero-stage { min-height: 480px; } }

.ap-phone {
  position: relative;
  width: 300px;
  height: 580px;
  filter: drop-shadow(0 40px 80px rgba(29, 29, 31, 0.18));
  animation: phoneFloat 6s ease-in-out infinite;
  will-change: transform;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@media (max-width: 720px) {
  .ap-phone { width: 250px; height: 480px; }
}

.ap-phone-frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2D2D30 0%, #1D1D1F 100%);
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06),
    0 0 0 2px #0A0A0B;
}
.ap-phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 36px;
  background: linear-gradient(180deg, #0F1A2E 0%, #1A2A4A 60%, #2D4674 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 22px 30px;
}
.ap-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 26px;
  background: #000;
  border-radius: 0 0 18px 18px;
}
.ap-phone-time {
  position: absolute;
  top: 14px;
  left: 24px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  font-feature-settings: 'tnum';
}

.ap-ring-pulse {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.5) 0%, transparent 70%);
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  animation: ringPulse 2.4s ease-out infinite;
}
@keyframes ringPulse {
  0% { opacity: 0.9; transform: translateX(-50%) scale(0.5); }
  100% { opacity: 0; transform: translateX(-50%) scale(2); }
}

.ap-ring-status {
  margin-top: 80px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.ap-ring-num {
  margin-top: 14px;
  color: white;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: 'tnum';
}
.ap-ring-label {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  text-align: center;
}
.ap-ring-actions {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0 14px;
}
.ap-ring-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.ap-ring-btn:hover { transform: scale(1.05); }
.ap-ring-btn.decline { background: #FF453A; }
.ap-ring-btn.decline svg { transform: rotate(135deg); }
.ap-ring-btn.accept {
  background: var(--wa-green);
  animation: ringAccept 1.6s ease-in-out infinite;
}
@keyframes ringAccept {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  50%      { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* Floating overlays */
.ap-overlay {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 16px 40px rgba(29, 29, 31, 0.16);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  opacity: 0;
  animation: overlayIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards, overlayFloat 5s ease-in-out 1.5s infinite;
  animation-delay: var(--delay, 0s), calc(var(--delay, 0s) + 0.7s);
}
.ap-overlay-chat {
  top: 80px;
  left: -90px;
}
.ap-overlay-sms {
  bottom: 110px;
  right: -100px;
}
@media (max-width: 720px) {
  .ap-overlay-chat { left: -20px; top: 40px; }
  .ap-overlay-sms { right: -20px; bottom: 80px; }
}
@keyframes overlayIn {
  from { opacity: 0; transform: scale(0.9) translateY(8px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes overlayFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.ap-overlay-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ap-overlay-icon-wa { background: linear-gradient(135deg, var(--wa-green), var(--wa-green-deep)); color: white; }
.ap-overlay-icon-sms { background: var(--accent-soft); color: var(--accent); }

.ap-overlay-text { display: flex; flex-direction: column; min-width: 0; }
.ap-overlay-text strong {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ap-overlay-text span {
  font-size: 0.83rem;
  color: var(--ink-soft);
  margin-top: 1px;
}

/* ----- 2. STATS (quiet) ----- */
.ap-stats {
  background: var(--white);
  padding: 60px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.ap-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.ap-stat strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  line-height: 1;
  margin-bottom: 6px;
}
.ap-stat span {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* ----- Section heads ----- */
.ap-section-head {
  text-align: center;
  margin-bottom: 70px;
}
.ap-section-head h2 { margin-bottom: 16px; }
.ap-section-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.55;
}

/* ----- 3. PRODUCTS ----- */
.ap-products { background: var(--white); }
.ap-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 880px) {
  .ap-product-grid { grid-template-columns: 1fr; }
}

.ap-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 28px;
  padding: 44px 40px 36px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
  cursor: pointer;
  min-height: 540px;
}
.ap-product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.ap-product-card.ap-product-wa {
  background: linear-gradient(155deg, #DCF8C6 0%, #F1FBE6 60%, #FFFFFF 100%);
}
.ap-product-card.ap-product-ll {
  background: linear-gradient(155deg, #E8F1FD 0%, #F4F8FE 60%, #FFFFFF 100%);
}

.ap-product-tag {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 14px;
}
.ap-product-wa .ap-product-tag { color: var(--wa-green-deep); }
.ap-product-ll .ap-product-tag { color: var(--accent); }

.ap-product-card h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.06;
  margin-bottom: 14px;
}
.ap-product-lede {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 380px;
  margin-bottom: 28px;
}

.ap-product-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 12px 0;
  margin-bottom: 16px;
}

/* Mini phone mockup inside product cards */
.ap-mini-phone {
  width: 180px;
  height: 270px;
  border-radius: 26px;
  background: linear-gradient(160deg, #2D2D30, #1D1D1F);
  padding: 7px;
  box-shadow: 0 24px 50px rgba(29, 29, 31, 0.22);
  position: relative;
}
.ap-mp-screen {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.ap-mini-phone.wa .ap-mp-screen {
  background: linear-gradient(180deg, #ECE5DD 0%, #DDD7CE 100%);
}
.ap-mini-phone.ll .ap-mp-screen {
  background: linear-gradient(180deg, #0F1A2E 0%, #1A2A4A 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
}

.ap-mp-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 12px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: white;
}
.ap-mp-bar.wa-bar {
  background: var(--wa-green-darkest);
}
.ap-mp-bar-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--wa-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
}

.ap-mp-msg {
  font-size: 0.74rem;
  padding: 7px 10px;
  border-radius: 10px;
  max-width: 78%;
  line-height: 1.35;
  margin: 6px 10px;
  animation: bubbleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.ap-mp-msg-in {
  background: white;
  color: var(--ink);
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  margin-right: auto;
  animation-delay: 0.4s;
}
.ap-mp-msg-out {
  background: var(--wa-green-bubble);
  color: var(--wa-green-darkest);
  align-self: flex-end;
  border-bottom-right-radius: 3px;
  margin-left: auto;
  animation-delay: 0.9s;
}
.ap-product-card .ap-mp-screen { display: flex; flex-direction: column; }
.ap-product-card .ap-mp-screen .ap-mp-msg:nth-of-type(2) { animation-delay: 0.9s; }
.ap-product-card .ap-mp-screen .ap-mp-msg:nth-of-type(3) { animation-delay: 1.4s; }

.ap-mp-call {
  align-items: center;
  justify-content: center;
}
.ap-mp-pulse {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--accent);
  margin-bottom: 14px;
  position: relative;
  animation: mpPulse 1.6s ease-in-out infinite;
}
.ap-mp-pulse::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  opacity: 0.4;
  animation: mpRing 1.6s ease-out infinite;
}
@keyframes mpPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes mpRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.6); opacity: 0; }
}
.ap-mp-call-num {
  color: white;
  font-size: 0.86rem;
  font-weight: 700;
  font-feature-settings: 'tnum';
  margin-bottom: 4px;
}
.ap-mp-call-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
}

.ap-product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid rgba(29, 29, 31, 0.08);
}
.ap-product-price {
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.ap-product-price strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.025em;
  margin-right: 1px;
}

.ap-product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
}
.ap-product-wa .ap-product-cta { color: var(--wa-green-darkest); }
.ap-product-ll .ap-product-cta { color: var(--accent); }
.ap-product-cta svg { transition: transform 0.25s var(--ease); }
.ap-product-card:hover .ap-product-cta svg { transform: translateX(4px); }

/* ----- 4. HOW IT WORKS ----- */
.ap-how { background: var(--surface); }

.ap-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) { .ap-how-grid { grid-template-columns: 1fr; } }

.ap-how-step {
  background: white;
  padding: 36px 32px 32px;
  border-radius: 22px;
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.ap-how-num {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  font-feature-settings: 'tnum';
}
.ap-how-art {
  height: 130px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--surface) 0%, var(--white) 100%);
  border-radius: 16px;
  padding: 12px;
  border: 1px solid var(--line-soft);
}
.ap-how-art svg { width: 100%; height: 100%; }

.ap-how-card-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}
.ap-how-card-tile {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
  font-feature-settings: 'tnum';
  letter-spacing: -0.01em;
  animation: tileIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}
.ap-how-card-tile.alt {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  animation-delay: 0.15s;
}
.ap-how-card-tile:nth-child(3) { animation-delay: 0.3s; }
@keyframes tileIn {
  from { opacity: 0; transform: translateX(-12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.ap-how-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--ink);
}
.ap-how-step p {
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ----- 5. DASHBOARD ----- */
.ap-dashboard-section {
  background: linear-gradient(180deg, var(--surface) 0%, var(--white) 50%);
}
.ap-dashboard-mockup {
  margin-top: 40px;
  background: white;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.ap-dm-bar {
  height: 38px;
  background: var(--surface);
  border-bottom: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
  position: relative;
}
.ap-dm-bar > span:not(.ap-dm-url) {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--line);
}
.ap-dm-bar > span:nth-child(1) { background: #FF5F57; }
.ap-dm-bar > span:nth-child(2) { background: #FEBC2E; }
.ap-dm-bar > span:nth-child(3) { background: #28C840; }
.ap-dm-url {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.78rem;
  color: var(--ink-fade);
  font-weight: 500;
  background: white;
  padding: 4px 14px;
  border-radius: 6px;
  font-feature-settings: 'tnum';
}
.ap-dm-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 480px;
}
@media (max-width: 720px) { .ap-dm-body { grid-template-columns: 1fr; } }

.ap-dm-side {
  background: white;
  border-right: 1px solid var(--line-soft);
  padding: 22px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 720px) { .ap-dm-side { display: none; } }
.ap-dm-side-item {
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.ap-dm-side-item.active { background: var(--ink); color: white; }
.ap-dm-side-item.active svg { color: var(--accent-bright); }
.ap-dm-side-item svg { color: var(--ink-fade); flex-shrink: 0; }

.ap-dm-main {
  padding: 28px 32px;
  background: var(--surface);
}
.ap-dm-main h4 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.ap-dm-kpis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}
.ap-dm-kpi {
  background: white;
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
}
.ap-dm-kpi-l {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-fade);
  font-weight: 600;
}
.ap-dm-kpi-v {
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 6px;
  font-feature-settings: 'tnum';
  color: var(--ink);
}
.ap-dm-kpi.accent {
  background: linear-gradient(135deg, var(--ink), #2D2D30);
  border-color: transparent;
}
.ap-dm-kpi.accent .ap-dm-kpi-l { color: rgba(255,255,255,0.55); }
.ap-dm-kpi.accent .ap-dm-kpi-v { color: white; }

.ap-dm-list {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  overflow: hidden;
}
.ap-dm-row {
  display: grid;
  grid-template-columns: 1fr auto 2fr;
  gap: 16px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.88rem;
}
.ap-dm-row:last-child { border-bottom: none; }
.ap-dm-row-num { font-feature-settings: 'tnum'; font-weight: 600; color: var(--ink); }
.ap-dm-row-meta { color: var(--ink-fade); font-size: 0.84rem; text-align: right; }
.ap-dm-pill {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 600;
}
.ap-dm-pill.green { background: var(--wa-green-bubble); color: var(--wa-green-darkest); }
.ap-dm-pill.amber { background: #FEF3C7; color: #92400E; }
.ap-dm-pill.red   { background: #FEE2E2; color: #991B1B; }

/* ----- 6. TESTIMONIALS ----- */
.ap-testimonials { background: var(--white); }
.ap-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
.ap-testimonial {
  margin: 0;
  background: var(--surface);
  border-radius: 22px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
}
.ap-testimonial-stars {
  color: #FFB800;
  font-size: 0.92rem;
  letter-spacing: 2px;
  margin-bottom: 18px;
}
.ap-testimonial-quote {
  font-size: 1.04rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  flex: 1;
}
.ap-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.ap-testimonial-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  object-fit: cover;
}
.ap-testimonial-author strong {
  display: block;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ap-testimonial-author span {
  font-size: 0.82rem;
  color: var(--ink-fade);
}

/* ----- 7. PRICING ----- */
.ap-pricing { background: var(--surface); }
.ap-pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
@media (max-width: 720px) { .ap-pricing-grid { grid-template-columns: 1fr; } }

.ap-price-card {
  background: white;
  border-radius: 22px;
  padding: 36px 32px;
  border: 1px solid var(--line-soft);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.ap-price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.ap-price-card-feature {
  background: linear-gradient(160deg, var(--ink) 0%, #2D2D30 100%);
  color: white;
  border-color: transparent;
}
.ap-price-card-feature h3, .ap-price-card-feature .ap-price-amount { color: white; }
.ap-price-card-feature .ap-price-per { color: rgba(255,255,255,0.65); }
.ap-price-card-feature .ap-price-features li { color: rgba(255,255,255,0.85); }
.ap-price-card-feature .ap-price-features li::before { background: rgba(255,255,255,0.18); }
.ap-price-card-feature .btn-coral { background: white; color: var(--ink); }
.ap-price-card-feature .btn-coral:hover { background: var(--surface-2); color: var(--ink); }

.ap-price-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.ap-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin: 16px 0 26px;
}
.ap-price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink);
  font-feature-settings: 'tnum';
  line-height: 1;
}
.ap-price-per {
  font-size: 1rem;
  color: var(--ink-soft);
}

.ap-price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
}
.ap-price-features li {
  position: relative;
  padding-left: 28px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-size: 0.94rem;
  color: var(--ink);
}
.ap-price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--accent);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 11px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
}
.ap-price-card .btn { width: 100%; justify-content: center; }

/* ----- 8. FAQ ----- */
.ap-faq { background: var(--white); }
.ap-faq .faq details {
  border: none;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  margin-bottom: 0;
}
.ap-faq .faq details:first-child { border-top: 1px solid var(--line-soft); }
.ap-faq .faq details[open] { border-color: var(--line); }
.ap-faq .faq summary {
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.ap-faq .faq summary::after { color: var(--accent); font-size: 1.6rem; }
.ap-faq .faq details > p { padding: 0 0 22px; font-size: 0.98rem; max-width: 720px; }

/* ----- 9. FINAL CTA ----- */
.ap-final {
  background: var(--white);
  padding: 60px 0 110px;
}
.ap-final-card {
  background: linear-gradient(160deg, var(--ink) 0%, #2D2D30 70%, var(--ink) 100%);
  border-radius: 28px;
  padding: 90px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ap-final-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.18), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.ap-final-card > * { position: relative; z-index: 1; }
.ap-final-card h2 {
  color: white;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.035em;
}
.ap-final-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  margin: 0 auto 32px;
  max-width: 520px;
  line-height: 1.5;
}
.ap-final-card .btn-coral {
  background: white;
  color: var(--ink);
  padding: 16px 30px;
  font-size: 1rem;
  box-shadow: 0 12px 32px rgba(0, 113, 227, 0.25);
}
.ap-final-card .btn-coral:hover { background: var(--surface-2); color: var(--ink); }

@media (max-width: 720px) {
  .ap-final-card { padding: 60px 28px; }
}
