:root {
  --teal: #2a9d8f;
  --teal-dark: #228478;
  --teal-light: #34b8a8;
  --teal-100: #d4efec;
  --teal-50: #edf8f7;
  --teal-bg: #e8f5f0;
  --teal-bg-light: #f0faf6;

  --yellow: #ffd600;
  --yellow-light: #ffe033;
  --yellow-100: #fff9db;

  --navy: #1a2b3c;
  --navy-dark: #0f1c2a;
  --navy-light: #2d4356;

  --text-primary: #1a2b3c;
  --text-secondary: #4a5d72;
  --text-muted: #7b8e9e;
  --text-on-dark: #e0e8f0;
  --text-on-dark-muted: #8fa3b8;

  --bg-page: #ffffff;
  --bg-light: #f7f9fb;
  --bg-hero: linear-gradient(170deg, #e8f5f0 0%, #f0faf6 40%, #fef9ed 100%);
  --border: #dde4eb;
  --border-light: #eaeff4;

  --shadow-sm: 0 1px 3px rgba(26, 43, 60, 0.05);
  --shadow-md: 0 4px 16px rgba(26, 43, 60, 0.08);
  --shadow-lg: 0 8px 32px rgba(26, 43, 60, 0.1);
  --shadow-card: 0 2px 12px rgba(26, 43, 60, 0.06);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --max-w: 1180px;
  --section-pad: 88px;
  --maintenance-alert-height: 0px;
}

/* ═══════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
/* Offset fixed vnext nav (60px) + optional maintenance strip; extra gap so hash targets aren’t clipped */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(60px + var(--maintenance-alert-height) + 20px); }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* Remove underlines (explicit) */
a:hover, a:focus { text-decoration: none; }

/* ═══════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-up { animation: fadeUp 0.6s ease-out both; }
.anim-d1 { animation: fadeUp 0.6s ease-out 0.08s both; }
.anim-d2 { animation: fadeUp 0.6s ease-out 0.16s both; }
.anim-d3 { animation: fadeUp 0.6s ease-out 0.24s both; }
.anim-d4 { animation: fadeUp 0.6s ease-out 0.32s both; }

/* ═══════════════════════════════════════════
   VNEXT NAVIGATION (shared)
   ═══════════════════════════════════════════ */
.vnext-nav a,
.vnext-nav a:hover,
.vnext-nav a:focus,
.vnext-nav a:active { text-decoration: none !important; }

/* Shared free trial / CTA: no underline (fixes <a> styled as button; avoids conflicts from page-specific CSS) */
.vnext-nav .btn-teal,
.vnext-nav .btn-teal:hover,
.vnext-nav .btn-teal:focus,
.vnext-nav .btn-teal:active,
.vnext-nav .mobile-menu .btn-teal,
.vnext-nav .mobile-menu .btn-teal:hover,
.vnext-nav .mobile-menu .btn-teal:focus,
.vnext-nav .mobile-menu .btn-teal:active,
a.btn-teal, a.btn-teal:hover, a.btn-teal:focus, a.btn-teal:active,
a.btn-yellow, a.btn-yellow:hover, a.btn-yellow:focus, a.btn-yellow:active,
a.btn-outline, a.btn-outline:hover, a.btn-outline:focus, a.btn-outline:active,
a.btn-teal-lg, a.btn-teal-lg:hover, a.btn-teal-lg:focus, a.btn-teal-lg:active {
  text-decoration: none !important;
}

.vnext-nav {
  position: fixed; left: 0; right: 0; z-index: 1000;
  top: var(--maintenance-alert-height, 0px);
  padding: 0 32px; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}
/* Same as old style20: main has padding-top so all content (incl. subscription banner) sits below the nav */
header:has(.vnext-nav) ~ main {
  padding-top: 60px;
}
.vnext-nav .nav-logo img { height: 30px; width: auto; }
.vnext-nav .nav-center { display: flex; align-items: center; gap: 28px; }
.vnext-nav .nav-center a {
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary); transition: color 0.2s;
  font-family: var(--font-body);
}
.vnext-nav .nav-center a:hover { color: var(--teal); }
.vnext-nav .nav-center a.active { color: var(--teal); font-weight: 600; }

/* Light nav (getting-started guide + buyer getting-started): single source to avoid font/style conflicts */
.vnext-nav--light {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
}
.vnext-nav--light .nav-center--app a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  font-family: var(--font-body);
}
.vnext-nav--light .nav-center--app a:hover { color: var(--teal); }
.vnext-nav--light .nav-center--app a.active { color: var(--teal); font-weight: 600; }

.vnext-nav .nav-right { display: flex; align-items: center; gap: 12px; min-width: 0; }

.vnext-nav .btn-ghost {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  padding: 8px 16px; border-radius: var(--radius-sm);
  transition: color 0.2s; border: none; background: none;
  cursor: pointer; font-family: var(--font-body);
}
.vnext-nav .btn-ghost:hover { color: var(--text-primary); }

.vnext-nav .btn-teal {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 600; color: var(--text-primary);
  background: var(--yellow); padding: 9px 20px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  font-family: var(--font-body); transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.3px;
  text-decoration: none !important;
}
.vnext-nav .btn-teal:hover,
.vnext-nav .btn-teal:focus,
.vnext-nav .btn-teal:active {
  background: var(--yellow-light);
  color: var(--text-primary) !important;
  text-decoration: none !important;
}

.vnext-nav .nav-user { position: relative; }
.vnext-nav .nav-user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 6px 16px;
  text-align: left;
  max-width: 360px;
}
.vnext-nav .nav-user-text { min-width: 0; }
.vnext-nav .nav-user-top { display: block; font-size: 13px; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.vnext-nav .nav-user-sub { display: block; font-size: 11px; opacity: 0.75; line-height: 1.2; margin-top: 2px; }
.vnext-nav .nav-user-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  flex-shrink: 0;
}
.vnext-nav .nav-user-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
}
.vnext-nav .nav-user-menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 1001;
}
.vnext-nav .nav-user.open .nav-user-menu { display: block !important; }
.vnext-nav .nav-user-menu a {
  display: block;
  padding: 10px 10px;
  border-radius: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}
.vnext-nav .nav-user-menu a:hover { background: var(--teal-50); color: var(--text-primary); }

.vnext-nav .hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 4px; flex-direction: column; gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.vnext-nav .hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px;
  transition: all 0.3s;
}
.vnext-nav .mobile-menu {
  display: none; position: fixed; top: 60px; left: 0; right: 0;
  background: var(--bg-page); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg); padding: 12px 24px 20px;
  flex-direction: column; gap: 0; z-index: 999;
  max-height: calc(100vh - 60px); overflow-y: auto;
}
.vnext-nav .mobile-menu a {
  display: block; padding: 14px 0;
  font-size: 15px; font-weight: 500; color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
  font-family: var(--font-body);
}
.vnext-nav .mobile-menu a:last-child { border-bottom: none; }
.vnext-nav .mobile-menu a:hover { color: var(--teal); }
.vnext-nav .mobile-user { padding: 12px 0 10px; }
.vnext-nav .mobile-user-top { font-size: 14px; color: var(--text-primary); }
.vnext-nav .mobile-user-sub { font-size: 12px; color: var(--text-secondary); margin-top: 3px; }
.vnext-nav form { margin: 0; }

/* ═══════════════════════════════════════════
   SECTION UTILITIES + BUTTONS
   ═══════════════════════════════════════════ */
.section-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--teal); margin-bottom: 10px;
  display: inline-block;
  background: linear-gradient(135deg, rgba(42, 157, 143, 0.08), rgba(42, 157, 143, 0.04));
  padding: 5px 16px; border-radius: 20px;
  border: 1px solid rgba(42, 157, 143, 0.12);
}
.section-title {
  font-family: var(--font-heading);
  font-size: 36px; letter-spacing: -0.8px;
  line-height: 1.2; margin-bottom: 14px;
  color: var(--text-primary); font-weight: 800;
}
.section-subtitle {
  font-size: 16px; color: var(--text-secondary);
  max-width: 600px; line-height: 1.7; margin-bottom: 48px;
}
.section-center { text-align: center; }
.section-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn-yellow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  background: linear-gradient(135deg, var(--yellow), #ffe033);
  padding: 14px 32px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.25s;
  text-transform: uppercase; letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(255, 214, 0, 0.3);
}
/* Default: dark label; hover/focus/active: white (beats global link hover blue on <a class="btn-yellow">) */
.btn-yellow:hover,
.btn-yellow:focus,
.btn-yellow:active,
a.btn-yellow:hover,
a.btn-yellow:focus,
a.btn-yellow:active {
  color: var(--text-primary) !important;
}
.btn-yellow:hover { background: linear-gradient(135deg, #ffe033, var(--yellow)); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4); }

.btn-outline {
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 600; color: var(--text-primary);
  border: 2px solid var(--border); background: var(--bg-page);
  padding: 12px 28px; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }

/* CTA buttons used as links (e.g. shared free trial): no underline anywhere */
a.btn-teal, a.btn-yellow, a.btn-outline, a.btn-teal-lg, a.guide-btn-primary,
a.btn-teal:hover, a.btn-teal:focus, a.btn-teal:active,
a.btn-yellow:hover, a.btn-yellow:focus, a.btn-yellow:active,
a.btn-outline:hover, a.btn-outline:focus, a.btn-outline:active,
a.btn-teal-lg:hover, a.btn-teal-lg:focus, a.btn-teal-lg:active,
a.guide-btn-primary:hover, a.guide-btn-primary:focus, a.guide-btn-primary:active {
  text-decoration: none !important;
}

/* Global button-label rule: never underline button text (buttons and link-buttons). */
button,
button:hover,
button:focus,
button:active,
a.btn,
a.btn:hover,
a.btn:focus,
a.btn:active,
[class^="btn-"],
[class^="btn-"]:hover,
[class^="btn-"]:focus,
[class^="btn-"]:active,
[class*=" btn-"],
[class*=" btn-"]:hover,
[class*=" btn-"]:focus,
[class*=" btn-"]:active {
  text-decoration: none !important;
}

.btn-teal-lg {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-heading);
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  background: var(--yellow); padding: 14px 32px;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: all 0.2s; text-transform: uppercase; letter-spacing: 0.3px;
}
.btn-teal-lg:hover,
.btn-teal-lg:focus,
.btn-teal-lg:active,
a.btn-teal-lg:hover,
a.btn-teal-lg:focus,
a.btn-teal-lg:active {
  color: var(--text-primary) !important;
}
.btn-teal-lg:hover { background: var(--yellow-light); transform: translateY(-1px); }

/* ═══════════════════════════════════════════
   FAQ (shared)
   ═══════════════════════════════════════════ */
.faq-section { padding: var(--section-pad) 0; background: linear-gradient(175deg, #f6faf8 0%, #f7f9fb 50%, #faf8f3 100%); border-top: 1px solid var(--border-light); }
.faq-grid { max-width: 760px; }
.faq-item { border-bottom: 1px solid var(--border); transition: all 0.3s; border-left: 3px solid transparent; padding-left: 0; }
.faq-item.open { border-left-color: var(--teal); padding-left: 16px; background: rgba(42, 157, 143, 0.02); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 22px 0; font-size: 16px; font-weight: 600;
  font-family: var(--font-heading); color: var(--text-primary);
  text-align: left; cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 20px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; color: var(--text-muted); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 22px; font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-more { margin-top: 28px; }
.faq-more a { font-size: 14px; font-weight: 600; color: var(--teal); display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.faq-more a:hover { gap: 9px; }

/* ═══════════════════════════════════════════
   FINAL CTA (shared)
   ═══════════════════════════════════════════ */
.final-cta {
  padding: 76px 0;
  background: linear-gradient(135deg, #e4f2ed 0%, #edf8f5 40%, #fef9ed 80%, #fff7db 100%);
  text-align: center;
  border-top: 1px solid var(--teal-100);
  position: relative; overflow: hidden;
}
section.final-cta#testimonials {
  scroll-margin-top: calc(60px + var(--maintenance-alert-height) + 20px);
}
.final-cta::before { content: ''; position: absolute; top: -60px; right: -40px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(42, 157, 143, 0.08) 0%, transparent 70%); pointer-events: none; }
.final-cta::after { content: ''; position: absolute; bottom: -80px; left: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 214, 0, 0.1) 0%, transparent 70%); pointer-events: none; }
.final-cta h2 { font-family: var(--font-heading); font-size: 34px; color: var(--text-primary); font-weight: 800; letter-spacing: -0.8px; margin-bottom: 10px; }
.final-cta p { font-size: 16px; color: var(--text-secondary); margin-bottom: 28px; max-width: 520px; margin-left: auto; margin-right: auto; }
.final-cta-buttons { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* Testimonial strip (used on SEO agency final CTA) */
.testimonial-strip {
  max-width: 640px;
  margin: 0 auto 32px;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  text-align: left;
}
.testimonial-strip[id] {
  scroll-margin-top: calc(60px + var(--maintenance-alert-height) + 20px);
}
.testimonial-strip-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--teal-dark);
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.testimonial-strip-text { font-size: 14px; font-style: italic; color: var(--text-secondary); line-height: 1.6; }
.testimonial-strip-text strong { font-style: normal; color: var(--text-primary); display: block; margin-top: 6px; font-size: 13px; }

/* ═══════════════════════════════════════════
   RESPONSIVE (shared)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  :root { --section-pad: 68px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 52px; }
  .container { padding: 0 20px; }
  .vnext-nav { padding: 0 20px; }
  .vnext-nav .hamburger { display: flex; }
  .vnext-nav .mobile-menu.open { display: flex; }
  .vnext-nav .nav-hide-mobile { display: none; }
  .vnext-nav .nav-center { display: none; }
  .vnext-nav .btn-teal { padding: 8px 12px; font-size: 12px; }

  .section-title { font-size: 26px; }
  .section-subtitle { font-size: 14px; }
  .final-cta h2 { font-size: 24px; }
  .final-cta-buttons { flex-direction: column; }
  .btn-teal-lg, .btn-outline, .btn-yellow { width: 100%; text-align: center; justify-content: center; }
  .testimonial-strip { flex-direction: column; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .vnext-nav { padding: 0 16px; }
}

