/* ================================================================
   BizBeep — Stylesheet (Redesign)
   ================================================================
   Design language: premium, minimal, generous whitespace.
   All brand colors come from CSS custom properties set at runtime
   by script.js from CONFIG.colors — do not hardcode brand colors.

   Type system:
     Display — "Bricolage Grotesque" (headlines)
     Body    — "Inter" (everything else)

   Mobile-first: base styles are mobile; min-width queries scale up.
   ================================================================ */

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

:root {
  /* Colors — overridden at runtime from CONFIG.colors */
  --primary:      #2B4593;
  --primary-dark: #1E3272;
  --secondary:    #468FEA;
  --ink:          #0C1633;
  --text:         #2A3552;
  --text-light:   #5A6784;
  --background:   #FFFFFF;
  --surface:      #F5F8FE;
  --surface-card: #FFFFFF;
  --border:       #E3E9F5;
  --success:      #16A34A;
  --error:        #DC2626;

  --font-display: 'Bricolage Grotesque', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --shadow-sm: 0 1px 3px rgba(12, 22, 51, 0.06);
  --shadow-md: 0 6px 24px rgba(12, 22, 51, 0.08);
  --shadow-lg: 0 20px 60px rgba(12, 22, 51, 0.12);

  --container: 1120px;
}

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--background);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container.narrow { max-width: 760px; }
.center { text-align: center; }
.center-text { text-align: center; }
.center-row { justify-content: center; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ================================================================
   TYPOGRAPHY
   ================================================================ */

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); line-height: 1.15; }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}

.section-title {
  font-size: clamp(1.75rem, 4.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ================================================================
   BUTTONS
   ================================================================ */

.btn-primary, .btn-secondary, .btn-ghost, .btn-white, .btn-outline-white {
  font-family: var(--font-body);
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-md); }

.btn-secondary { background: var(--surface); color: var(--primary); border: 1px solid var(--border); }
.btn-secondary:hover { border-color: var(--primary); transform: translateY(-1px); }

.btn-ghost { background: transparent; color: var(--text); padding: 0.5rem 0.9rem; }
.btn-ghost:hover { color: var(--primary); }

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

.btn-outline-white { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: #fff; transform: translateY(-1px); }

.btn-sm { padding: 0.5rem 1.1rem; font-size: 0.9rem; }
.btn-lg { padding: 0.85rem 1.7rem; font-size: 1rem; }

/* ================================================================
   SCROLL REVEAL  (class added by IntersectionObserver)
   ================================================================ */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ================================================================
   NAVBAR
   ================================================================ */

.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
}

.logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.logo-image { height: 34px; width: auto; }
.logo-text { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); }

.nav-menu { display: none; list-style: none; gap: 1.75rem; }
.nav-menu a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.925rem;
  font-weight: 500;
  transition: color 0.18s ease;
}
.nav-menu a:hover { color: var(--primary); }

.nav-actions { display: none; align-items: center; gap: 0.5rem; }

/* Mobile menu toggle — two-line burger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 64px; left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem;
  gap: 1rem;
  box-shadow: var(--shadow-md);
}

@media (min-width: 880px) {
  .nav-menu { display: flex; }
  .nav-actions { display: flex; }
  .menu-toggle { display: none; }
}

/* ================================================================
   HERO — split layout: copy left, animated chat right
   ================================================================ */

.hero {
  padding: calc(64px + 3.5rem) 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(70, 143, 234, 0.10), transparent),
    var(--background);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

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

.hero-badge {
  display: inline-block;
  background: rgba(70, 143, 234, 0.10);
  color: var(--primary);
  border: 1px solid rgba(70, 143, 234, 0.25);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.1rem;
}

.hero-title {
  font-size: clamp(2.1rem, 5.5vw, 3.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.1rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto 1.8rem;
}

.hero-cta { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

.trust-line { margin-top: 1rem; font-size: 0.875rem; color: var(--text-light); }

/* --- Animated chat preview --- */

.hero-chat { animation: floatIn 0.9s ease 0.15s both; }

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

.chat-window {
  max-width: 420px;
  margin: 0 auto;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.chat-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.chat-avatar img { width: 80%; height: 80%; object-fit: contain; }

.chat-name   { font-size: 0.92rem; font-weight: 600; color: var(--ink); }
.chat-status { font-size: 0.78rem; color: var(--success); }

.chat-messages {
  padding: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 250px;
  max-height: 320px;
  overflow-y: auto;
}

.message { display: flex; animation: msgIn 0.35s ease; }
.message.received { justify-content: flex-start; }
.message.sent     { justify-content: flex-end; }

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

.message-bubble {
  max-width: 82%;
  padding: 0.65rem 0.95rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.45;
}
.message.received .message-bubble {
  background: var(--surface);
  color: var(--text);
  border-bottom-left-radius: 5px;
}
.message.sent .message-bubble {
  background: var(--primary);
  color: #fff;
  border-bottom-right-radius: 5px;
}

.message-typing {
  display: flex;
  gap: 4px;
  padding: 0.7rem 0.95rem;
  background: var(--surface);
  border-radius: var(--radius-md);
  border-bottom-left-radius: 5px;
  width: fit-content;
}
.message-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--text-light);
  animation: typing 1.4s infinite;
}
.message-typing span:nth-child(2) { animation-delay: 0.2s; }
.message-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); }
  30%           { transform: translateY(-6px); }
}

/* --- Hero stats bar --- */

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
  margin-top: 3rem;
}

.stat-card {
  text-align: center;
  padding: 1.4rem 1rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.stat-value {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}
.stat-label { font-size: 0.85rem; color: var(--text-light); }

@media (min-width: 880px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 3.5rem; }
  .hero-copy { text-align: left; }
  .hero-copy .hero-subtitle { margin-left: 0; }
  .hero-copy .hero-cta { justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero-stats { grid-template-columns: 1fr; }
  .hero-cta a { flex: 1; min-width: 200px; }
}

/* ================================================================
   SECTIONS — shared rhythm
   ================================================================ */

.section { padding: 4.5rem 0; }
.section-tint { background: var(--surface); }

@media (min-width: 880px) { .section { padding: 6rem 0; } }

/* ================================================================
   BENEFITS
   ================================================================ */

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.25rem;
}

.benefit-card {
  padding: 1.6rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.icon-chip {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 1rem;
}
.icon-chip svg { width: 21px; height: 21px; }

.benefit-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; }
.benefit-card p  { font-size: 0.925rem; color: var(--text-light); }

@media (min-width: 680px)  { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

/* ================================================================
   FEATURES
   ================================================================ */

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.feature-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.feature-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.5rem; }
.feature-card > p { font-size: 0.94rem; color: var(--text-light); margin-bottom: 1rem; }

.feature-bullets { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--text);
}
.feature-bullets .tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(70, 143, 234, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
}

@media (min-width: 680px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   TESTIMONIALS
   ================================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-card);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.testimonial-quote { font-size: 0.98rem; color: var(--text); line-height: 1.7; }

.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.author-name { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.author-role { font-size: 0.8rem;  color: var(--text-light); }

@media (min-width: 880px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   PRICING
   ================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-top: 2.5rem;
  align-items: start;
}

.pricing-card {
  padding: 1.9rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.pricing-card.highlighted { border: 2px solid var(--primary); box-shadow: var(--shadow-md); }

.pricing-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-name  { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.25rem; }
.pricing-desc  { font-size: 0.875rem; color: var(--text-light); margin-bottom: 1.1rem; }

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 1.4rem;
}
.pricing-price span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--text);
}
.pricing-features .tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(70, 143, 234, 0.12);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 3px;
}

.pricing-cta { width: 100%; }

@media (min-width: 880px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); } }

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

.faq-list { margin-top: 2rem; }

.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  user-select: none;
  transition: color 0.18s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover, .faq-item[open] summary { color: var(--primary); }

.faq-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease;
  line-height: 1;
}
.faq-item[open] .faq-icon { background: var(--primary); color: #fff; transform: rotate(45deg); }

.faq-answer {
  padding: 0 0 1.2rem;
  font-size: 0.94rem;
  color: var(--text-light);
  line-height: 1.75;
  animation: faqOpen 0.22s ease;
}
@keyframes faqOpen { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ================================================================
   FOOTER
   ================================================================ */

.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 3.5rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo-image {
  height: 30px;
  width: auto;
  /* Wordmark is dark-blue on transparent — lift it on dark footer */
  filter: brightness(0) invert(1);
  opacity: 0.92;
  margin-bottom: 1rem;
}

.footer-description { font-size: 0.9rem; max-width: 320px; line-height: 1.7; }

.footer-social { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  transition: background 0.2s ease;
}
.footer-social a:hover { background: var(--secondary); }

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

.footer-section h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.footer-section ul { list-style: none; }
.footer-section a {
  display: block;
  padding: 0.28rem 0;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}
.footer-section a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 880px) {
  .footer-content { grid-template-columns: 1.3fr 2fr; }
  .footer-links { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* ================================================================
   FLOATING WHATSAPP
   ================================================================ */

.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--wa-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.2s ease;
}
.floating-whatsapp.visible { opacity: 1; pointer-events: auto; }
.floating-whatsapp:hover { transform: scale(1.08); }

/* ================================================================
   COOKIE BANNER
   ================================================================ */

.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.85);
  padding: 1rem 1.25rem;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-message { font-size: 0.875rem; line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: 0.75rem; }
.cookie-link { color: var(--secondary); font-size: 0.85rem; }
.cookie-banner .btn-ghost { color: rgba(255, 255, 255, 0.7); }
.cookie-banner .btn-ghost:hover { color: #fff; }

@media (min-width: 720px) {
  .cookie-banner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ================================================================
   LEGAL PAGES  (privacy.html / terms.html)
   ================================================================ */

.legal-hero {
  padding: calc(64px + 3rem) 0 2.5rem;
  background: var(--surface);
  text-align: center;
}
.legal-hero h1 { font-size: clamp(1.9rem, 4.5vw, 2.6rem); font-weight: 700; margin-bottom: 0.4rem; }
.last-updated { color: var(--text-light); font-size: 0.9rem; }

.legal-content { max-width: 760px; margin: 0 auto; padding: 3rem 1.25rem 4.5rem; }
.legal-section { margin-bottom: 2rem; }
.legal-section h2 { font-size: 1.25rem; font-weight: 600; color: var(--primary); margin-bottom: 0.6rem; }
.legal-section p  { color: var(--text-light); line-height: 1.85; font-size: 0.96rem; }


/* ================================================================
   HOW IT WORKS
   ================================================================ */

.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.25rem;
}

.hiw-step {
  text-align: center;
  padding: 1.9rem 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.hiw-step:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.hiw-number {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.hiw-step h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.5rem; }
.hiw-step p  { font-size: 0.925rem; color: var(--text-light); }

@media (min-width: 880px) { .hiw-steps { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   ABOUT
   ================================================================ */

.about-story { max-width: 680px; margin: 0 auto 2.5rem; }
.about-story h3 { font-size: 1.3rem; font-weight: 600; color: var(--primary); margin-bottom: 0.6rem; }
.about-story p  { color: var(--text-light); line-height: 1.8; }

.about-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.about-card {
  padding: 1.75rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.about-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--primary); margin-bottom: 0.5rem; }
.about-card p  { font-size: 0.94rem; color: var(--text-light); line-height: 1.75; }

.why-choose-heading { font-size: 1.4rem; font-weight: 600; margin-bottom: 1.75rem; }

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.why-choose-item {
  text-align: center;
  padding: 1.6rem 1.25rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.why-choose-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-choose-item .icon-chip { margin: 0 auto 0.9rem; }
.why-choose-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.why-choose-item p  { font-size: 0.875rem; color: var(--text-light); }

@media (min-width: 680px)  { .about-cards, .why-choose-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .why-choose-grid { grid-template-columns: repeat(4, 1fr); } }

/* ================================================================
   CONTACT
   ================================================================ */

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-form { display: flex; flex-direction: column; gap: 0.9rem; }

.form-input, .form-textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface-card);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-input:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px rgba(70, 143, 234, 0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }

.form-message {
  padding: 0.8rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  display: none;
}
.form-message.success { background: rgba(22, 163, 74, 0.10); color: var(--success); display: block; }
.form-message.error   { background: rgba(220, 38, 38, 0.08);  color: var(--error);   display: block; }

.contact-info { display: flex; flex-direction: column; gap: 0.9rem; }

.contact-info-card {
  padding: 1.2rem 1.4rem;
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.info-value { font-size: 0.95rem; font-weight: 500; color: var(--ink); }

.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  background: var(--wa-green);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.whatsapp-button:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }

@media (min-width: 880px) { .contact-wrapper { grid-template-columns: 1.5fr 1fr; } }

/* ================================================================
   FOOTER LOGO — light version (logoFooter) or white chip fallback
   ================================================================ */

.footer-logo-wrap { display: inline-block; margin-bottom: 1rem; }
/* Fallback chip: shown when no light logo is configured */
.footer-logo-wrap.chip {
  background: #fff;
  border-radius: 10px;
  padding: 6px 12px;
}
.footer-logo-image { height: 30px; width: auto; }

/* ================================================================
   MOBILE MENU — includes Login / Get Started buttons
   ================================================================ */

.nav-menu .menu-cta { display: none; }

@media (max-width: 879px) {
  .nav-menu.open .menu-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding-top: 0.75rem;
    margin-top: 0.4rem;
    border-top: 1px solid var(--border);
  }
  .nav-menu.open .menu-cta a {
    display: flex;
    justify-content: center;
    padding: 0.7rem 1rem;
  }
}
