/* ===== Reset & Base ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #fafafa;
  --bg-dark: #f0f0f0;
  --text: #1a1a1a;
  --text-muted: #666;
  --accent: #0a0a0a;
  --accent-light: #333;
  --green: #00c853;
  --green-soft: #e8f8ef;
  --border: #e0e0e0;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* ===== Nav ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}

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

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--green);
}

/* ===== Association Pricing ===== */
.association-pricing {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.assoc-heading {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.assoc-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.6;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--text);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* ===== Hero ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.highlight {
  background: linear-gradient(135deg, var(--green), #00e676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  flex-direction: column;
}

.proof-item strong {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.proof-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== Sections ===== */
.section {
  padding: 80px 0;
}

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

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 12px;
}

.section h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.2;
  max-width: 700px;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== Problem ===== */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.icon-box {
  width: 48px;
  height: 48px;
  background: var(--green-soft);
  color: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.problem-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.problem-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Steps ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 48px;
}

.step-num {
  font-size: 3rem;
  font-weight: 800;
  color: var(--green);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== Features ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.feature-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}

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

.feature-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Testimonial ===== */
.testimonial-block {
  max-width: 680px;
  margin: 0 auto;
  text-align: left;
  padding: 40px 0;
}

.quote-mark {
  font-size: 4rem;
  line-height: 0.5;
  color: var(--green);
  opacity: 0.4;
  font-family: Georgia, serif;
  margin-bottom: 16px;
}

blockquote {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  blockquote {
    font-size: 0.97rem;
    line-height: 1.65;
  }
}

.testimonial-author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ===== Billing Toggle ===== */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 8px;
}

.billing-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.billing-label.billing-active {
  color: var(--text);
  font-weight: 700;
}

.toggle-switch {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 50px;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.3s;
  padding: 0;
}

.toggle-switch.active {
  background: var(--green);
}

.toggle-knob {
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.toggle-switch.active .toggle-knob {
  transform: translateX(24px);
}

.save-badge {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-left: 4px;
}

.price-period {
  font-size: 1rem;
  color: var(--text-muted);
}

.price-yearly-note {
  font-size: 0.8rem;
  color: var(--green);
  font-weight: 600;
  margin-top: 4px;
}

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 48px;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  text-align: center;
}

.pricing-featured {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-badge-green {
  background: var(--green);
  color: #000;
}

.pricing-card-custom {
  border-style: dashed;
}

.pricing-tier {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-setup {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -1px;
}

.price-monthly {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}

.pricing-for {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 24px;
}

.pricing-features li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
  padding-left: 24px;
  position: relative;
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-saves {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 20px;
}

.pricing-card .btn {
  width: 100%;
}

/* ===== Comparison ===== */
.comparison-table {
  margin-top: 40px;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.comparison-table thead th {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.compare-highlight {
  background: var(--green-soft);
  font-weight: 600;
}

/* ===== Trust ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.trust-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.trust-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 700px;
  margin-top: 40px;
}

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

.faq-item summary {
  padding: 20px 0;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== CTA ===== */
.section-cta {
  text-align: center;
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
}

.section-cta h2 {
  color: #fff;
  max-width: none;
}

.section-cta .section-sub {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.section-cta .btn-primary {
  background: var(--green);
  color: #000;
  font-weight: 700;
}

.section-cta .btn-primary:hover {
  background: #00e676;
}

.contact-alt {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

.contact-alt a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* ===== Contact Form ===== */
.contact-form {
  width: 100%;
  max-width: 500px;
  margin: 32px auto 0;
  text-align: left;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}

.contact-form-row input {
  margin-bottom: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  background: rgba(255,255,255,0.1);
}

.contact-form textarea {
  resize: none;
  height: 96px;
}

.contact-form .btn-primary {
  display: block;
  width: 100%;
  margin-top: 4px;
}

.cf-feedback {
  font-size: 0.9rem;
  min-height: 22px;
  text-align: center;
  margin-top: 10px;
}

.cf-feedback.success { color: var(--green); }
.cf-feedback.error   { color: #f87171; }

@media (max-width: 520px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.footer-location {
  font-size: 0.8rem !important;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--text);
}

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

/* ===== Mobile ===== */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform 0.3s;
  }

  .nav-links.open {
    transform: translateY(0);
  }

  .mobile-toggle {
    display: flex;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .proof-divider {
    display: none;
  }

  .hero-proof {
    gap: 24px;
  }

  .section {
    padding: 60px 0;
  }

  .pricing-featured {
    transform: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

/* ===== Hero Mockup ===== */
.hero-mockup {
  max-width: 580px;
  margin: 48px auto 40px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  text-align: left;
}

.mockup-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #f5f5f5;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 5px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
}

.mockup-dots span:nth-child(1) { background: #ff5f57; }
.mockup-dots span:nth-child(2) { background: #febc2e; }
.mockup-dots span:nth-child(3) { background: #28c840; }

.mockup-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

.mockup-body {
  padding: 8px 0;
}

.mockup-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 20px;
  border-bottom: 1px solid #f5f5f5;
}

.mockup-row-last {
  border-bottom: none;
}

.mockup-icon-wrap {
  font-size: 1.1rem;
  width: 28px;
  flex-shrink: 0;
  padding-top: 1px;
}

.mockup-content {
  flex: 1;
}

.mockup-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.mockup-text {
  font-size: 0.85rem;
  color: var(--text);
  line-height: 1.4;
}

.mockup-chip {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50px;
  vertical-align: middle;
}

.mockup-chip-warn {
  background: #fff4e0;
  color: #b25e00;
}

.mockup-footer {
  padding: 10px 20px;
  font-size: 0.72rem;
  color: #bbb;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
  text-align: center;
}

/* ===== Early Adopter Banner ===== */
.early-adopter-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #e8f8ef, #d4f5e3);
  border: 1px solid #b2e8c8;
  border-radius: var(--radius);
  padding: 16px 24px;
  margin-bottom: 32px;
}

.early-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.early-adopter-banner strong {
  display: block;
  font-size: 0.95rem;
  color: #0d5c2a;
  margin-bottom: 2px;
}

.early-adopter-banner span {
  font-size: 0.85rem;
  color: #1a7a3a;
}

/* ===== Pricing — Setup Strike ===== */
.setup-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.price-setup-strike {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.free-until {
  display: inline-block;
  background: var(--green-soft);
  color: #0d7a36;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #b2e8c8;
}

/* ===== Testimonial Live Badge ===== */
.testimonial-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-soft);
  border: 1px solid #b2e8c8;
  color: #0d7a36;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Add-on Note ===== */
.addon-note {
  margin-top: 32px;
  text-align: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.addon-note strong {
  color: var(--text);
}

.addon-note a {
  color: var(--green);
  font-weight: 600;
}

/* ===== Onboarding Steps (CTA) ===== */
.onboarding-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 36px 0 40px;
  flex-wrap: wrap;
}

.onboarding-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 16px 20px;
  text-align: left;
  min-width: 200px;
}

.onboarding-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.onboarding-step div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.onboarding-step strong {
  font-size: 0.95rem;
  color: #fff;
}

.onboarding-step span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

.onboarding-arrow {
  font-size: 1.4rem;
  color: var(--green);
  font-weight: 700;
}

@media (max-width: 768px) {
  .onboarding-steps {
    flex-direction: column;
    align-items: stretch;
  }
  .onboarding-arrow {
    transform: rotate(90deg);
    text-align: center;
  }
}

/* ===== Floating CTA ===== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 14px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  z-index: 99;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  text-decoration: none;
}

.float-cta-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-cta:hover {
  background: var(--green);
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0,200,83,0.25);
}

@media (max-width: 768px) {
  .float-cta {
    bottom: 16px;
    right: 16px;
    left: 16px;
    text-align: center;
  }
  .mockup-chrome { display: none; }
  .hero-mockup { border-radius: 12px; }
}

/* ===== Small phones (Android 360px and below) ===== */
@media (max-width: 480px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    padding: 100px 0 48px;
  }

  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
  }

  .hero-sub {
    font-size: 1rem;
    padding: 0 4px;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }

  .mockup-row {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

  .mockup-text {
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .mockup-chip {
    margin-top: 4px;
    display: inline-block;
  }

  .section-sub {
    font-size: 0.95rem;
  }

  .early-adopter-banner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}
