/* ============================================================
   DashDash Hub — Public Site Stylesheet
   ============================================================ */

:root {
  --teal:        #5ebeaa;
  --teal-dark:   #3d9e8a;
  --teal-light:  #e6f7f4;
  --coral:       #e87272;
  --coral-dark:  #d45e5e;
  --gold:        #f0a545;
  --orange:      #e8714a;
  --navy:        #1e2433;   /* navbar */
  --dark:        #1a1f2e;
  --text:        #1a1f2e;
  --text-muted:  #6b7280;
  --text-light:  #9ca3af;
  --border:      #e5e7eb;
  --bg-light:    #f4f7f6;
  --bg-white:    #ffffff;
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.12);
  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition:  220ms ease;
}

/* ============================================================
   Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); font-size: 16px; line-height: 1.65; color: var(--text); background: var(--bg-white); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ============================================================
   Layout helpers
   ============================================================ */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section-white { background: var(--bg-white); }
.section-light { background: var(--bg-light); }
.section-teal  { background: linear-gradient(135deg, #4aaa97 0%, #3d8e7c 100%); position: relative; overflow: hidden; }
.section-teal::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  right: -120px; top: -160px;
  pointer-events: none;
}
.section-teal::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  left: -80px; bottom: -100px;
  pointer-events: none;
}

/* ============================================================
   Section typography helpers
   ============================================================ */
.section-label {
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.section-label.teal { color: var(--teal-dark); }

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800; line-height: 1.2;
  color: var(--text); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto 3rem;
  text-align: center; line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .7rem 1.5rem; border-radius: var(--radius-md);
  font-size: .925rem; font-weight: 600;
  transition: all var(--transition); white-space: nowrap; cursor: pointer;
}
.btn-coral       { background: var(--coral); color: #fff; }
.btn-coral:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-teal        { background: var(--teal); color: #fff; }
.btn-teal:hover  { background: var(--teal-dark); transform: translateY(-1px); }
.btn-outline-white {
  background: rgba(255,255,255,.15); color: #fff;
  border: 1.5px solid rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.25); }
.btn-outline-teal {
  background: transparent; color: var(--teal-dark);
  border: 1.5px solid var(--teal);
}
.btn-outline-teal:hover { background: var(--teal-light); }

/* ============================================================
   Scroll animations
   ============================================================ */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.anim.animate-visible { opacity: 1; transform: none; }
.anim-d1 { transition-delay: .08s; }
.anim-d2 { transition-delay: .16s; }
.anim-d3 { transition-delay: .24s; }
.anim-d4 { transition-delay: .32s; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,.3); }

.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; gap: 2rem;
}

.logo {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}
.logo-icon { width: 32px; height: 32px; object-fit: contain; }
.logo-text {
  font-size: .82rem; line-height: 1.25; color: #fff;
  letter-spacing: .01em;
}
.logo-text strong { color: var(--teal); font-weight: 700; }

.nav-links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.72);
  padding: .4rem .8rem; border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: #fff; background: rgba(255,255,255,.08); }

.nav-cta { margin-left: 1rem; padding: .5rem 1.2rem; font-size: .88rem; }

.mobile-menu-btn {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; cursor: pointer;
}
.mobile-menu-btn span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,.8); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: .5rem;
  background: var(--navy); padding: 1rem 24px 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-menu a { color: rgba(255,255,255,.8); font-size: .95rem; padding: .5rem 0; font-weight: 500; }
.mobile-menu.active { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(140deg, #4eb5a0 0%, #3d9587 40%, #2d7a6a 100%);
  position: relative; overflow: hidden;
  padding: 5rem 0 4rem;
}

.hero-bg-circles { position: absolute; inset: 0; pointer-events: none; }
.hero-circle {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.hero-circle.c1 { width: 520px; height: 520px; right: -100px; top: -160px; }
.hero-circle.c2 { width: 320px; height: 320px; left: -60px; bottom: -100px; }

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
  position: relative; z-index: 1;
}

.hero-text { display: flex; flex-direction: column; gap: 1.25rem; }

.hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,.18); color: #fff;
  backdrop-filter: blur(6px);
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  padding: .4rem .9rem; border-radius: var(--radius-xl);
  border: 1px solid rgba(255,255,255,.25);
  width: fit-content;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15;
  color: #fff; letter-spacing: -.02em;
}

.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,.88);
  line-height: 1.7; max-width: 480px;
}

.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero-actions .btn { padding: .75rem 1.5rem; font-size: .95rem; }

.hero-integrations {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .25rem;
}
.integration-chip {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .8rem; font-weight: 500;
  color: rgba(255,255,255,.85);
}
.integration-chip svg { color: rgba(255,255,255,.7); }

/* Hero mockup */
.hero-visual { display: flex; justify-content: center; }
.hero-mockup-frame {
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.25);
  overflow: hidden; width: 100%; max-width: 520px;
}
.mockup-bar {
  background: #f0f0f0; padding: .55rem .9rem;
  display: flex; gap: .4rem; align-items: center;
}
.mockup-bar span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #e0e0e0;
}
.mockup-bar span:nth-child(1) { background: #ff6059; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28c840; }
.hero-mockup-img { width: 100%; display: block; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section { padding: 5rem 0; text-align: center; }
.problem-section .section-label,
.problem-section .section-heading,
.problem-section .section-sub { text-align: center; }
.problem-section .section-sub { margin-bottom: 3rem; }

.problem-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
  max-width: 860px; margin: 0 auto;
}

.problem-card {
  border-radius: var(--radius-lg); padding: 2rem 1.5rem 1.5rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.bg-coral  { background: #e87a7a; }
.bg-gold   { background: #f0bb60; }
.bg-orange { background: #e8714a; }

.problem-stat {
  font-size: 3.5rem; font-weight: 800; color: #fff;
  line-height: 1; margin-bottom: .75rem;
}
.problem-icon {
  position: absolute; right: 1.25rem; top: 1.25rem;
  color: rgba(255,255,255,.4);
}
.problem-label {
  font-size: .9rem; font-weight: 500; color: rgba(0,0,0,.45);
  margin-top: auto; padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.25);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { padding: 5rem 0; text-align: center; }
.how-section .section-label,
.how-section .section-heading,
.how-section .section-sub { text-align: center; }
.how-section .section-sub { margin-bottom: 3rem; }

.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; margin-bottom: 2.5rem;
  max-width: 900px; margin: 0 auto 2.5rem;
}

.step-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 .75rem;
  position: relative;
}

.step-circle {
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--teal);
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal); margin-bottom: 1.25rem;
  position: relative; z-index: 1;
  transition: background var(--transition), box-shadow var(--transition);
}
.step-item:hover .step-circle {
  background: var(--teal); color: #fff;
  box-shadow: 0 0 0 6px rgba(94,190,170,.15);
}

/* horizontal connector line between steps */
.step-connector {
  position: absolute;
  top: 32px; left: calc(50% + 32px);
  width: calc(100% - 64px);
  height: 2px;
  background: linear-gradient(90deg, var(--teal) 0%, rgba(94,190,170,.3) 100%);
  z-index: 0;
}
.step-item.last .step-connector { display: none; }

.step-num { font-size: .7rem; font-weight: 700; color: var(--teal); letter-spacing: .1em; margin-bottom: .25rem; }
.step-title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.step-desc { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }

.setup-banner {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--teal); color: #fff;
  font-size: .875rem; font-weight: 600;
  padding: .7rem 1.5rem; border-radius: var(--radius-xl);
  margin-top: 2.5rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features-section { padding: 5rem 0; text-align: center; }
.features-section .section-label,
.features-section .section-heading { text-align: center; }
.features-section .section-heading { margin-bottom: 2.5rem; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25px;
  border: 1.25px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  background: var(--bg-white);
  padding: 2rem 1.75rem;
  text-align: left;
  border: 1.25px solid var(--border);
  transition: background var(--transition);
}
.feature-card:hover { background: #fafffe; }

.feature-icon-wrap {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.teal-bg { background: rgba(94,190,170,.12); color: var(--teal-dark); }
.gold-bg { background: rgba(240,165,69,.12); color: #c47f10; }
.coral-bg { background: rgba(232,114,114,.12); color: var(--coral-dark); }

.feature-card h3 { font-size: .975rem; font-weight: 700; color: var(--text); margin-bottom: .35rem; }
.feature-card p  { font-size: .85rem; color: var(--text-muted); }

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.who-section { padding: 5rem 0 0; text-align: center; }
.who-section .section-label,
.who-section .section-heading,
.who-section .section-sub { text-align: center; }

.who-visual {
  position: relative;
  margin-top: 2rem;
  min-height: 420px;
  overflow: hidden;
}

.who-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(26,31,46,0) 0%,
      rgba(26,31,46,.55) 40%,
      rgba(26,31,46,.92) 100%),
    linear-gradient(135deg, #1e4035 0%, #0f2820 50%, #1a2b3c 100%);
  /* Decorative circuit/grid overlay */
}
.who-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(94,190,170,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94,190,170,.08) 1px, transparent 1px);
  background-size: 48px 48px;
}
/* Glow blobs */
.who-bg::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,190,170,.18) 0%, transparent 70%);
  top: 20%; left: 20%;
}

.who-cards-row {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; padding: 8rem 24px 2.5rem;
}

.who-card {
  background: rgba(255,255,255,.07);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem;
  text-align: left;
  transition: background var(--transition), transform var(--transition);
}
.who-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}

.who-card-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.teal-icon  { background: rgba(94,190,170,.2);  color: var(--teal); }
.coral-icon { background: rgba(232,114,114,.2); color: #e89090; }
.gold-icon  { background: rgba(240,165,69,.2);  color: var(--gold); }

.who-card h3 { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: .35rem; }
.who-card p  { font-size: .83rem; color: rgba(255,255,255,.6); line-height: 1.5; }

/* ============================================================
   SEE IT IN ACTION
   ============================================================ */
.action-section { padding: 5rem 0; }

.action-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}

.action-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; margin-bottom: .75rem;
}
.action-sub {
  font-size: 1rem; color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.action-list {
  display: flex; flex-direction: column; gap: .85rem;
  margin-bottom: 2rem;
}
.action-list li {
  display: flex; align-items: flex-start; gap: .85rem;
  font-size: .925rem; color: var(--text);
}
.action-list-icon {
  width: 32px; height: 32px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.action-preview {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.action-preview-inner { position: relative; }
.action-preview-img {
  width: 100%; display: block;
  filter: blur(2px) brightness(.96);
  transform: scale(1.02);
  transition: filter var(--transition), transform .4s ease;
}
.action-preview:hover .action-preview-img {
  filter: none; transform: scale(1);
}

/* ============================================================
   PRICING PREVIEW
   ============================================================ */
.pricing-preview-section {
  padding: 5rem 0; text-align: center;
}
.pricing-preview-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff; margin-bottom: .75rem;
}

.pricing-cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; max-width: 740px; margin: 0 auto 2rem;
}

.pricing-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  color: #fff; text-align: center;
  transition: background var(--transition), transform var(--transition);
}
.pricing-card:hover { background: rgba(255,255,255,.18); transform: translateY(-3px); }
.pricing-card.featured {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.4);
  transform: scale(1.04);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-3px); }

.pricing-badge {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  color: var(--gold); margin-bottom: .75rem;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.pricing-price {
  font-size: 2rem; font-weight: 800; margin-bottom: .5rem; line-height: 1;
}
.pricing-price span { font-size: 1rem; font-weight: 500; opacity: .75; }
.pricing-card p { font-size: .85rem; opacity: .75; }

.pricing-cta { margin-top: 1rem; }
.pricing-cta .btn { font-size: .95rem; padding: .75rem 2rem; }

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.cta-section { padding: 5rem 0; }

.cta-card {
  background: var(--teal-light);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(94,190,170,.2);
}

.cta-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(94,190,170,.15); color: var(--teal-dark);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .9rem; border-radius: var(--radius-xl);
  border: 1px solid rgba(94,190,170,.3);
  margin-bottom: 1.25rem;
}

.cta-card h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: .75rem; color: var(--text);
}
.cta-card p {
  font-size: 1rem; color: var(--text-muted);
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.7;
}
.cta-actions { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #f9fafb; border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-top {
  display: grid; grid-template-columns: 1fr auto auto;
  gap: 2.5rem; align-items: start; margin-bottom: 2rem;
}

.footer-brand { display: flex; flex-direction: column; gap: .75rem; }

.footer-logo {
  display: flex; align-items: center; gap: .55rem;
}
.footer-logo .logo-text { color: var(--text); font-size: .8rem; }
.footer-logo .logo-text strong { color: var(--teal-dark); }
.footer-logo .logo-icon { width: 28px; height: 28px; }

.footer-tagline { font-size: .88rem; color: var(--text-muted); }

.footer-nav {
  display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center;
}
.footer-nav a {
  font-size: .875rem; color: var(--text-muted); font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--teal-dark); }

.footer-social { display: flex; gap: .75rem; align-items: center; }
.social-icon {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: var(--border); color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--teal); color: #fff; }

.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.copyright { font-size: .82rem; color: var(--text-light); }
.footer-legal { display: flex; gap: 1.25rem; }
.footer-legal a { font-size: .82rem; color: var(--text-light); transition: color var(--transition); }
.footer-legal a:hover { color: var(--teal-dark); }

/* ============================================================
   FLASH MESSAGES
   ============================================================ */
.flash-msg {
  padding: .9rem 1.25rem; border-radius: var(--radius-md);
  font-size: .9rem; margin-bottom: 1rem;
}
.flash-error   { background: #fee2e2; border: 1px solid #fca5a5; color: #991b1b; }
.flash-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .who-cards-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-menu-btn { display: flex; margin-left: auto; }

  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-mockup-frame { max-width: 100%; }
  .hero-text h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .problem-cards { grid-template-columns: 1fr; max-width: 360px; }

  .steps-row { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .step-connector { display: none; }

  .features-grid { grid-template-columns: 1fr; border: none; gap: 1rem; }
  .feature-card { border-radius: var(--radius-md); border: 1px solid var(--border); }

  .who-cards-row { grid-template-columns: 1fr 1fr; padding-top: 4rem; }

  .action-inner { grid-template-columns: 1fr; gap: 2.5rem; }

  .pricing-cards-row { grid-template-columns: 1fr; max-width: 360px; }
  .pricing-card.featured { transform: none; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { gap: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .section-heading { font-size: 1.6rem; }
}

@media (max-width: 480px) {
  .who-cards-row { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}

/* ============================================================
   SHARED PAGE STYLES (contact / pricing / how-it-works)
   ============================================================ */

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

/* Page hero (light grey header used on inner pages) */
.page-hero { padding: 4rem 0 3rem; }
.page-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(94,190,170,.12); color: var(--teal-dark);
  font-size: .8rem; font-weight: 600; letter-spacing: .04em;
  padding: .35rem .9rem; border-radius: var(--radius-xl);
  border: 1px solid rgba(94,190,170,.25);
  margin-bottom: 1.25rem;
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; color: var(--text); margin-bottom: .75rem;
}
.page-hero-sub {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}
.hero-actions-center { justify-content: center; margin-top: 1.75rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 4rem 0 5rem; }

.contact-inner {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 4rem; align-items: start;
}

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }
.required { color: var(--coral); }

.form-group input,
.form-group .form-select,
.form-group textarea {
  padding: .7rem 1rem; border-radius: var(--radius-md);
  border: 1.5px solid var(--border); background: var(--bg-white);
  font-size: .925rem; font-family: var(--font); color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group .form-select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(94,190,170,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group .form-select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.char-count { font-size: .78rem; color: var(--text-light); text-align: right; }

.btn-full { width: 100%; justify-content: center; }
.btn-lg   { padding: .85rem 1.5rem; font-size: 1rem; }

/* Info panel */
.contact-info-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
}
.contact-info-card h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: .6rem; }
.contact-info-card > p { font-size: .9rem; color: var(--text-muted); margin-bottom: 1.75rem; line-height: 1.65; }

.contact-perks { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-perks li { display: flex; gap: 1rem; align-items: flex-start; }
.perk-icon {
  width: 40px; height: 40px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-perks strong { font-size: .9rem; color: var(--text); display: block; margin-bottom: .2rem; }
.contact-perks p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* Success state */
.success-state {
  text-align: center; padding: 3rem 2rem;
  background: var(--teal-light); border-radius: var(--radius-xl);
  border: 1px solid rgba(94,190,170,.2);
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.success-state h2 { font-size: 1.5rem; margin-bottom: .75rem; }
.success-state p  { color: var(--text-muted); margin-bottom: 1.75rem; }

/* ============================================================
   PRICING PAGE
   ============================================================ */
.pricing-full-section { padding: 3rem 0 4rem; }

.pricing-full-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; align-items: start;
}

.pricing-full-card {
  border: 1.5px solid var(--border); border-radius: var(--radius-xl);
  padding: 2rem 1.75rem; background: var(--bg-white);
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-full-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pricing-full-card.featured {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-md);
}

.pfc-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--coral); color: #fff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: .3rem .9rem; border-radius: var(--radius-xl);
  white-space: nowrap;
}

.pfc-header h3  { font-size: 1.2rem; font-weight: 800; }
.pfc-desc       { font-size: .875rem; color: var(--text-muted); margin: .25rem 0 .75rem; }
.pfc-price      { font-size: 2.4rem; font-weight: 800; line-height: 1; color: var(--text); }
.pfc-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); }

.pfc-features { display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.pfc-features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .875rem; color: var(--text);
}
.pfc-features svg { color: var(--teal); flex-shrink: 0; }

.enterprise-note { text-align: center; color: var(--text-muted); font-size: .9rem; margin-top: 2rem; }
.teal-link { color: var(--teal-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* FAQ accordion */
.faq-section { padding: 4rem 0; }
.faq-container { max-width: 720px; }
.faq-container h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 2rem; }

.faq-list { display: flex; flex-direction: column; gap: .5rem; }

.faq-item-acc {
  border: 1.5px solid var(--border); border-radius: var(--radius-md);
  overflow: hidden; background: var(--bg-white);
  transition: border-color var(--transition);
}
.faq-item-acc.open { border-color: var(--teal); }

.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; padding: 1.1rem 1.25rem;
  font-size: .95rem; font-weight: 600; color: var(--text);
  cursor: pointer; background: none; border: none;
  text-align: left;
}
.faq-icon { flex-shrink: 0; color: var(--teal); transition: transform var(--transition); }
.faq-item-acc.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 1.25rem;
}
.faq-item-acc.open .faq-answer { max-height: 200px; padding: 0 1.25rem 1.1rem; }
.faq-answer p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */
.hiw-headline { line-height: 1.2; }
.teal-text { color: var(--teal-dark); }

/* Timeline bar */
.timeline-section { padding: 2.5rem 0; }
.timeline-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative; max-width: 860px; margin: 0 auto;
  text-align: center;
}
.timeline-item { display: flex; flex-direction: column; align-items: center; position: relative; padding: 0 1rem; }
.timeline-item.has-connector::after {
  content: '';
  position: absolute; top: 20px; left: calc(50% + 20px);
  width: calc(100% - 40px); height: 2px;
  background: rgba(255,255,255,.3);
}
.timeline-circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.7);
  background: rgba(255,255,255,.15);
  color: #fff; font-size: .875rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .75rem; position: relative; z-index: 1;
}
.timeline-label { font-size: .8rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: .25rem; }
.timeline-desc  { font-size: .78rem; color: rgba(255,255,255,.65); line-height: 1.4; }

/* Step sections */
.step-section { padding: 5rem 0; }
.step-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.step-grid-reverse .step-text { order: 2; }
.step-grid-reverse .step-image { order: 1; }

.step-num-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--teal-dark); text-transform: uppercase; margin-bottom: .5rem; }
.step-text h2   { font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 800; margin-bottom: .5rem; }
.step-sources   { font-size: .9rem; font-weight: 600; margin-bottom: 1rem; }
.step-body      { font-size: .95rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }

.step-list { display: flex; flex-direction: column; gap: .6rem; }
.step-list li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .875rem; color: var(--text);
}
.step-list svg { color: var(--teal); flex-shrink: 0; margin-top: 2px; }

/* Visual card placeholder */
.step-visual-card {
  background: var(--bg-light); border: 1.5px solid var(--border);
  border-radius: var(--radius-xl); padding: 2.5rem 2rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 1.25rem;
  min-height: 240px; justify-content: center;
}
.step-visual-icon {
  width: 88px; height: 88px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.step-visual-label { font-size: .9rem; font-weight: 600; color: var(--text-muted); }
.step-platform-chips { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; }
.platform-chip {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: .3rem .75rem;
  font-size: .78rem; font-weight: 600; color: var(--text-muted);
}

/* Integrations */
.integrations-section { padding: 5rem 0; }
.integrations-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1rem; max-width: 680px; margin: 0 auto;
}
.integration-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem 1rem;
  display: flex; flex-direction: column; align-items: center;
  gap: .6rem; transition: box-shadow var(--transition), transform var(--transition);
}
.integration-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.integration-card span { font-size: .78rem; font-weight: 600; color: var(--text-muted); text-align: center; }

/* ============================================================
   RESPONSIVE — inner pages
   ============================================================ */
@media (max-width: 900px) {
  .contact-inner      { grid-template-columns: 1fr; }
  .pricing-full-grid  { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .step-grid          { grid-template-columns: 1fr; gap: 2.5rem; }
  .step-grid-reverse .step-text,
  .step-grid-reverse .step-image { order: unset; }
  .step-image { order: -1; }
  .timeline-grid      { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .integrations-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; }
  .timeline-grid { grid-template-columns: 1fr; }
  .timeline-item.has-connector::after { display: none; }
  .integrations-grid { grid-template-columns: repeat(2, 1fr); }
}
}
