/* =============================================
   FADEFLOW — STYLES.CSS
   Theme: Premium Minimal SaaS
   Primary: #0D7A5F | Accent: #FFC22E
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ---- HERO OFFSET ---- */
.hero { padding-top: 160px; }
@media (max-width: 768px) {
  .hero { padding-top: 130px; }
}

/* ---- FEATURE ICON ---- */
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--green);
}
.feature-card:hover .feature-icon svg {
  stroke: white;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  background: #FFFFFF;
  color: #1A1A1A;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ---- TOKENS ---- */
:root {
  --green:       #0D7A5F;
  --green-dark:  #0A6350;
  --green-light: #E8F5F1;
  --green-mid:   #C0E5DA;
  --yellow:      #FFC22E;
  --yellow-dark: #E6AB1A;
  --yellow-light:#FFF8E6;
  --bg:          #FFFFFF;
  --bg-alt:      #F5F9F7;
  --text:        #1A1A1A;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --border:      #E5EDE9;
  --border-soft: #F0F5F2;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.06);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.07);
  --shadow-lg:   0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl:   0 24px 64px rgba(0,0,0,0.10);
  --transition:  all 0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ---- CONTAINER ---- */
.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 28px; }

/* ================================================
   BUTTONS
   ================================================ */
.btn-yellow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,194,46,0.40);
}
.btn-yellow.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(13,122,95,0.30);
}
.btn-green.btn-lg { padding: 17px 38px; font-size: 1.05rem; }

.btn-outline-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 29px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--green);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}
.btn-ghost-nav {
  display: inline-flex;
  align-items: center;
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.btn-ghost-nav:hover { color: var(--text); background: var(--bg-alt); }

/* ---- LABELS ---- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-light);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.label-dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  display: inline-block;
}

/* ================================================
   NAVBAR
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img {
  height: 36px;
  width: auto;
}
.logo-text {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.nav-links li a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-pill);
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--text); background: var(--bg-alt); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ================================================
   HERO
   ================================================ */
.hero {
  padding: 160px 0 100px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow-light);
  border: 1px solid #FFE09A;
  color: #92650A;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
  animation: fadeUp 0.5s ease both;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity:1; }
  50% { transform: scale(1.4); opacity:0.6; }
}

.hero-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.035em;
  color: var(--text);
  margin-bottom: 24px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeUp 0.5s 0.1s ease both;
}
.hero-headline .accent { color: var(--green); }

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 44px;
  font-weight: 400;
  animation: fadeUp 0.5s 0.2s ease both;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  animation: fadeUp 0.5s 0.3s ease both;
}
.hero-cta-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  animation: fadeUp 0.5s 0.4s ease both;
}

/* Hero dashboard card cluster */
.hero-visual {
  margin-top: 72px;
  animation: fadeUp 0.7s 0.4s ease both;
  position: relative;
}
.hero-screenshot {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border);
}

/* Float chips */
.hero-chip {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  animation: floatChip 4s ease-in-out infinite;
  white-space: nowrap;
}
.hero-chip-1 { bottom: 20px; left: -40px; animation-delay: 0s; }
.hero-chip-2 { top: 30px; right: -20px; animation-delay: 2.2s; }
.chip-green { width: 8px; height: 8px; background: var(--green); border-radius: 50%; }
.chip-yellow { width: 8px; height: 8px; background: var(--yellow); border-radius: 50%; }
@keyframes floatChip {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* BG shape */
.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.blob-1 { width: 500px; height: 500px; background: var(--green-light); opacity: 0.6; top: -100px; left: 50%; transform: translateX(-50%); }
.blob-2 { width: 300px; height: 300px; background: var(--yellow-light); opacity: 0.5; top: 200px; right: 0; }

/* ================================================
   LOGOS TICKER
   ================================================ */
.ticker-section {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-alt);
}
.ticker-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ticker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.ticker-item {
  font-size: 0.8rem;
  font-weight: 700;
  color: #B0BEBC;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================================
   PROBLEM SECTION
   ================================================ */
.problem-section {
  padding: 120px 0;
  background: var(--bg);
}
.problem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.problem-text .section-label { margin-bottom: 16px; }
.problem-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.problem-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.problem-list { display: flex; flex-direction: column; gap: 0; }
.problem-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.problem-item.visible { opacity: 1; transform: translateX(0); }
.problem-item:last-child { border-bottom: none; }
.problem-x {
  width: 28px; height: 28px;
  background: #FEF2F2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.problem-item-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
}
.problem-bottom {
  margin-top: 36px;
  padding: 24px;
  background: var(--green-light);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--green);
}
.problem-bottom p {
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.6;
}

/* Problem visual card */
.problem-visual {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  position: sticky;
  top: 100px;
}
.pv-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.pv-title { font-size: 0.88rem; font-weight: 800; color: var(--text); }
.pv-badge {
  background: var(--green);
  color: white;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.pv-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.pv-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
}
.pv-stat-val { font-size: 1.4rem; font-weight: 900; color: var(--green); }
.pv-stat-lbl { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; margin-top: 2px; }
.pv-divider { height: 1px; background: var(--border); margin: 16px 0; }
.pv-workflow { display: flex; flex-direction: column; gap: 8px; }
.pv-step {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.pv-step.active { background: var(--green-light); border-color: var(--green-mid); }
.pv-step-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.pv-step.active .pv-step-icon { background: var(--green); }
.pv-step:not(.active) .pv-step-icon { background: var(--border); }
.pv-step-name { font-size: 0.78rem; font-weight: 600; color: var(--text-mid); flex: 1; }
.pv-step-status {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 99px;
}
.pv-step.active .pv-step-status { background: var(--green); color: white; }
.pv-step:not(.active) .pv-step-status { background: var(--border); color: var(--text-muted); }

/* ================================================
   FEATURES SECTION
   ================================================ */
.features-section {
  padding: 120px 0;
  background: var(--bg-alt);
}
.features-header { text-align: center; margin-bottom: 64px; }
.features-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  max-width: 640px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--green), #10B981);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--green-mid);
  transform: translateY(-4px);
}
.feature-emoji {
  font-size: 1.8rem;
  margin-bottom: 16px;
  display: block;
}
.feature-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ================================================
   SOCIAL PROOF SECTION
   ================================================ */
.social-section {
  padding: 100px 0;
  background: var(--bg);
  text-align: center;
}
.social-headline {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 16px;
}
.social-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}
.social-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: left;
}
.social-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition);
}
.social-card:hover {
  border-color: var(--green-mid);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.social-card-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.social-card-name { font-size: 0.95rem; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.social-card-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.55; }
.social-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 12px;
}

/* ================================================
   PRICING SECTION
   ================================================ */
.pricing-section {
  padding: 120px 0;
  background: var(--bg-alt);
  text-align: center;
}
.pricing-header { margin-bottom: 56px; }
.pricing-headline {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
}
.pricing-card {
  max-width: 780px;
  margin: 0 auto;
  background: white;
  border: 2px solid var(--green);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  box-shadow: 0 0 0 6px rgba(13,122,95,0.07), var(--shadow-xl);
}
.pricing-card-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: center;
}
.pricing-left, .pricing-right {
  text-align: left;
}
.pricing-badge-top {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--yellow);
  color: #1A1A1A;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-plan-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}
.pricing-currency { font-size: 1rem; font-weight: 700; color: var(--text); margin-top: 8px; }
.pricing-price { font-size: 2.8rem; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -0.04em; }
.pricing-period { font-size: 1rem; color: var(--text-muted); align-self: flex-end; margin-bottom: 8px; }
.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  font-style: italic;
}
.pricing-divider { height: 1px; background: var(--border); margin: 28px 0; }
.horizontal-divider { display: none; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; text-align: left; margin-bottom: 0; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--text-mid);
}
.pf-check {
  width: 22px; height: 22px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pricing-urgency {
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.pricing-urgency strong { color: #DC2626; }

/* ================================================
   FINAL CTA
   ================================================ */
.final-cta {
  padding: 140px 0;
  background: var(--green);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,194,46,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.final-cta-headline {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 18px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 40px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}
.final-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--green);
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 2px solid white;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-white:hover {
  background: var(--yellow);
  color: #1A1A1A;
  border-color: var(--yellow);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline-white:hover { border-color: white; background: rgba(255,255,255,0.08); }
.final-cta-note { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: #0A1F1A;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 2fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-logo img { height: 32px; width: auto; }
.footer-logo-text { font-size: 1.1rem; font-weight: 800; color: white; }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-bottom: 24px; }
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-social-link:hover { border-color: rgba(255,255,255,0.3); color: white; }
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: white; }
.footer-bottom {
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .hero-visual .hero-chip { display: none; }
  .problem-inner { grid-template-columns: 1fr; gap: 60px; }
  .problem-visual { position: relative; top: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { max-width: 440px; padding: 40px 32px; }
  .pricing-card-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-amount { justify-content: center; }
  .pricing-plan-name, .pricing-left, .pricing-right { text-align: center; }
  .pricing-features { margin-bottom: 36px; text-align: left; }
  .horizontal-divider { display: block; }
  .social-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-screenshot { border-radius: var(--radius-lg); }
  .hero-dashboard { max-width: 100%; }
}

@media (max-width: 768px) {
  /* Navbar */
  .navbar { position: sticky; top: 0; }
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: white;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
  }

  /* Hero */
  .hero { padding-top: 140px; padding-bottom: 60px; }
  .hero-headline { font-size: 2.2rem; letter-spacing: -0.025em; }
  .hero-sub { font-size: 1rem; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: 10px; }
  .btn-yellow.btn-lg, .btn-outline-green.btn-lg { width: 100%; max-width: 320px; justify-content: center; }
  .hero-visual { margin-top: 48px; }

  /* Dashboard mockup — mobile */
  .hero-screenshot { border-radius: var(--radius-md); }

  /* Problem */
  .problem-headline { font-size: 2.2rem; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 24px 20px; }

  /* Who it's for */
  .social-cards { grid-template-columns: 1fr; gap: 12px; }
  .social-headline { font-size: 1.7rem; }

  /* Pricing */
  .pricing-card { padding: 36px 20px; margin: 0 4px; }
  .pricing-price { font-size: 3.5rem; }
  .pricing-badge-top { font-size: 0.7rem; padding: 5px 14px; white-space: normal; text-align: center; }

  /* Footer */
  .footer-links-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .footer-inner { padding-bottom: 40px; }

  /* Final CTA */
  .final-cta { padding: 100px 0; }
  .final-cta-headline { font-size: 2rem; }
  .final-cta-actions { flex-direction: column; align-items: center; }
  .btn-white, .btn-outline-white { width: 100%; max-width: 300px; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-headline { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }

  /* Topbar on tiny screens */
  .topbar-phone { padding: 4px 8px; font-size: 0.72rem; }
  .topbar-app-btn { padding: 4px 10px; font-size: 0.72rem; }

  /* Screenshot */
  .hero-screenshot { border-radius: var(--radius-sm); }

  /* Problem visual */
  .pv-stats { grid-template-columns: 1fr 1fr; }

  /* Pricing */
  .pricing-card { padding: 32px 16px; }
  .pricing-amount { flex-wrap: wrap; justify-content: center; }

  /* Footer */
  .footer-links-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom-inner { flex-direction: column; gap: 8px; text-align: center; }

  /* Ticker */
  .ticker-row { gap: 14px; }
  .ticker-item { font-size: 0.72rem; }

  /* Sections */
  .features-section, .social-section, .pricing-section { padding: 50px 0; }
  .problem-section { padding: 50px 0; }
  .final-cta { padding: 50px 0; }
}

