/* ========================================================= */
/* Base                                                       */
/* ========================================================= */

:root {
  --bg-page: #f6f6fb;
  --bg-surface: #ffffff;

  --text-main: #2f2f45;
  --text-muted: #5b5a75;
  --text-soft: #7a7a96;

  --lavender: #A99CFF;
  --lavender-accent: #8C7BFF;
  --lavender-soft: #efecff;
  --lavender-deep: #6b5aff;
  --lavender-hover: #988BF2;

  --accent-gold: #f8c15c;

  --border-subtle: #e1def7;
  --shadow-card: 0 18px 40px rgba(23, 15, 73, 0.08);

  --radius-card: 18px;
  --radius-pill: 999px;

  --nav-height: 70px;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* So anchor targets aren't hidden behind sticky header */
[id] {
  scroll-margin-top: calc(var(--nav-height) + 16px);
}

/* ========================================================= */
/* Header / Navigation                                       */
/* ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 246, 251, 0.9);
  border-bottom: 1px solid rgba(214, 210, 246, 0.8);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.brand-logo {
  height: 28px;
  display: block;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.brand-wordmark {
  font-weight: 600;
  font-size: 1.02rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.92rem;
}

.primary-nav a {
  text-decoration: none;
  color: var(--text-soft);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s ease;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--lavender-accent), var(--accent-gold));
  transition: width 0.22s ease;
}

.primary-nav a:hover {
  color: var(--lavender-deep);
}

.primary-nav a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ========================================================= */
/* Buttons                                                   */
/* ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.18s ease, color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--lavender);
  color: #ffffff;
  box-shadow: 0 10px 25px rgba(108, 99, 255, 0.3); /* Reduced opacity from 0.35 */
}

.btn-primary:hover {
  background: var(--lavender-hover);
  transform: translateY(-2px) scale(1.02);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--lavender-deep);
  border-color: var(--lavender-accent);
}

.btn-outline:hover {
  background: var(--lavender-soft);
  transform: translateY(-2px) scale(1.02);
}

.btn-disabled {
  background: #f1f1fb;
  color: #a9a9c5;
  border-color: #d9d9f0;
  cursor: default;
  box-shadow: none;
}

.btn-card {
  width: 100%;
  margin-top: 10px;
}

.btn-hero {
  /* Matching standard .btn size as requested */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  padding: 8px 18px !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important; 
  border-width: 1px !important;
  border-style: solid !important;
  /* Ensure border-color is not overridden to none/null, but respects the class colors */
  height: auto !important;
  min-height: 0 !important;
}

/* ========================================================= */
/* Sections                                                   */
/* ========================================================= */

.section {
  padding: 80px 20px; /* Increased from 64px */
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

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

.section-tagline {
  margin: 0 0 48px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========================================================= */
/* Hero                                                       */
/* ========================================================= */

.hero {
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
  margin-bottom: 6px;
}

.hero-title {
  font-size: 2.1rem;
  margin: 0;
}

.hero-static-label {
  font-size: 1.05rem;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 8px;
  letter-spacing: 0.2px;
}

/* Hero rotator – matches web app styling */

.hero-rotator {
  text-align: center;
  margin-top: 16px;
  margin-bottom: 10px;
}

.hero-phrase {
  font-size: 0.97rem;
  font-style: italic;
  color: #5b5a75;
  opacity: 0;
  transition: opacity 0.55s ease;
  min-height: 22px;
  /* prevents jump */
}

.hero-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6px;
  gap: 10px;
}

.hero-dots {
  display: flex;
  gap: 4px;
}

.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9c5e4;
  transition: background 0.25s;
}

.hero-dot.active {
  background: #6c63ff;
}

.privacy-banner {
  margin: 16px auto 8px;
  white-space: nowrap;
  font-size: 0.86rem;
  color: var(--text-muted);
}

.hero-actions {
  display: inline-flex;
  gap: 10px;
  margin-top: 16px;
  margin-bottom: 12px;
}

.hero-footnote {
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ===================================== */
/*  Two-column layout (desktop → mobile) */
/* ===================================== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 0;
}

/* Columns — use why-col only (avoids conflict with pricing/cards) */
.two-col .why-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid #e1def7;
  box-shadow: var(--shadow-card);
  color: var(--text-soft);
}

.why-card .section-title {
  margin-bottom: 16px;
}

/* Highlight paragraph */
.why-highlight {
  font-weight: 600;
  color: var(--accent, #6c63ff);
  margin-top: 6px;
}

/* Responsive stacking (mobile/tablet) */
@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col .why-col {
    padding-right: 0;
  }
}

/* ========================================================= */
/* Steps / How it works                                       */
/* ========================================================= */

.section-steps {
  background: #f2f2ff;
}

.step-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.step-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #ecebff;
}

.step-number {
  width: 28px; /* Slightly larger for better breathing room */
  height: 28px;
  border-radius: 50%;
  background: var(--lavender-soft);
  color: var(--lavender-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1;
}

.step-card h3 {
  margin: 0 0 12px;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text-main);
}

.step-card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.step-card ul {
  margin: 0;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ========================================================= */
/* Pricing                                                     */
/* ========================================================= */

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

.pricing-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 26px;
}

.pricing-card {
  position: relative;
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 20px 18px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--lavender);
}

.plan-name {
  text-align: center;
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.plan-price {
  text-align: center;
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}

.plan-period {
  text-align: center;
  margin: 2px 0 12px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.plan-features {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
  flex-grow: 1;
}

.plan-features li+li {
  margin-top: 4px;
}

/* Yearly badge */

.pricing-card--yearly {
  background: #FFF8E6;
}

.pricing-card--yearly .plan-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  right: auto;
  background: var(--lavender);
  color: #ffffff;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.pricing-card--yearly .plan-badge:hover {
  background: var(--lavender-hover);
  box-shadow: 0 0 0 3px rgba(140, 123, 255, 0.3);
}

/* Specific button styling for Yearly */
.pricing-card--yearly .btn-outline {
  background: var(--lavender);
  color: #ffffff;
  border: 1px solid var(--lavender-accent);
  box-shadow: 0 8px 20px rgba(140, 123, 255, 0.3);
}

.pricing-card--yearly .btn-outline:hover {
  background: var(--lavender-hover);
  color: #ffffff;
  border-color: var(--lavender-hover);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 25px rgba(140, 123, 255, 0.4);
}

/* Lifetime ripple gradient */

.pricing-card--lifetime {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  z-index: 1;
  border-color: rgba(183, 124, 255, 0.3);
}

/* Ensure content sits above ripples */
.pricing-card--lifetime > *:not(.ripple-background) {
  position: relative;
  z-index: 5;
}

.ripple-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.ripple-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 28px; /* Slightly more rounded for 3D feel */
  border: 1px solid transparent;
}

/* Ring 1 (Innermost) */
.ring-1 {
  width: 65%;
  height: 60%;
  border-color: rgba(248, 193, 92, 0.5);
  box-shadow: 
    0 8px 24px rgba(248, 193, 92, 0.5),
    inset 0 2px 16px rgba(255, 255, 255, 0.8);
}

/* Ring 2 */
.ring-2 {
  width: 80%;
  height: 75%;
  border-color: rgba(183, 124, 255, 0.35);
  box-shadow: 
    0 12px 32px rgba(183, 124, 255, 0.3),
    inset 0 2px 16px rgba(255, 255, 255, 0.6);
}

/* Ring 3 */
.ring-3 {
  width: 95%;
  height: 90%;
  border-color: rgba(248, 193, 92, 0.3);
  box-shadow: 
    0 16px 40px rgba(248, 193, 92, 0.2),
    inset 0 2px 24px rgba(255, 255, 255, 0.5);
}

/* Ring 4 (Outermost) */
.ring-4 {
  width: 110%;
  height: 105%;
  border-color: rgba(183, 124, 255, 0.2);
  box-shadow: 
    0 20px 48px rgba(183, 124, 255, 0.15),
    inset 0 2px 30px rgba(255, 255, 255, 0.4);
}

/* Specific button styling for Lifetime Unlock */
.pricing-card--lifetime .btn-disabled {
  background: #f8f8fc;
  color: var(--text-main);
  border: 1px solid var(--lavender);
  opacity: 0.6;
  font-weight: 600;
  box-shadow: none;
}

.lifetime-note {
  margin-top: 12px;
  margin-bottom: 2px;
  font-size: 0.8rem;
  color: var(--text-soft);
  text-align: center;
  font-style: italic;
  position: relative;
  z-index: 5;
}

/* Pricing footnote */

.pricing-footnote {
  margin-top: 22px;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
}

.section-pricing .hero-footnote {
  text-align: center;
}

/* ========================================================= */
/* Guides                                                     */
/* ========================================================= */

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

/* Fixed 3+3 grid layout */
.guide-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 22px;
}

@media (max-width: 860px) {
  .guide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .guide-grid {
    grid-template-columns: 1fr;
  }
}


.guide-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #ecebff;
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.guide-card:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
}

.guide-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  color: var(--text-main);
}

.guide-card-image {
  padding: 0;
  overflow: hidden;
  display: flex;
}

.guide-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ========================================================= */
/* AFFILIATES SECTION (FULLY FIXED)                          */
/* ========================================================= */

.section-partners {
  background: var(--bg-page);
  padding-top: 76px; /* Increased visual weight */
}

.section-partners .section-inner {
  max-width: 720px;
  margin: 0 auto;
}

.partners-strip {
  padding: 22px 24px 26px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle); /* Changed from dashed to solid */
  background: #faf9ff;
  font-size: 0.9rem;
  color: var(--text-soft);
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* Centering */
  text-align: center;
  align-items: center;
  /* Hover effects */
  box-shadow: var(--shadow-card);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.partners-strip:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
}

.partners-strip h2 {
  margin: 0 0 6px;
  font-size: 1.4rem;
  color: var(--text-main);
}

.partners-strip .btn-outline {
  /* Removed align-self: flex-start to allow align-items: center to work */
  border-width: 2px; /* Bolder outline */
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.08); /* Micro-shadow */
}

.partners-strip .btn-outline:hover {
  box-shadow: 0 6px 16px rgba(108, 99, 255, 0.15);
  transform: translateY(-2px);
}


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

.section-faq {
  background: #f1f1ff;
}

.faq-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.faq-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 16px 18px 18px;
  border: 1px solid #e1def7;
  box-shadow: var(--shadow-card);
  font-size: 0.9rem;
  color: var(--text-soft);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), border-color 0.4s ease;
}

.faq-card:hover {
  transform: translateY(-2px);
  border-color: var(--lavender);
}

.faq-card-image {
  padding: 0;
  overflow: hidden;
  display: flex;
  min-height: 200px; /* Ensure it has height even if image fails or flex weirdness */
}

.faq-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.faq-card h3 {
  margin: 0 0 6px;
  font-size: 0.98rem;
  color: var(--text-main);
}

.faq-card-full {
  grid-column: 1 / -1;
}

/* ========================================================= */
/* Privacy                                                    */
/* ========================================================= */

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

.privacy-card {
  background: var(--bg-surface);
  border-radius: var(--radius-card);
  padding: 20px 22px 22px;
  border: 1px solid #e1def7;
  box-shadow: var(--shadow-card);
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  transition: background-color 0.3s ease;
}

.privacy-card:hover {
  background-color: #faf9ff; /* Very subtle tint (lighter than lavender-soft) */
}

.privacy-card h2 {
  margin: 0 0 10px;
  font-size: 1.2rem;
}

.privacy-card p {
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ========================================================= */
/* Support                                                    */
/* ========================================================= */

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

.section-support .section-inner {
  max-width: 620px;
  text-align: center;
}

/* ========================================================= */
/* Footer                                                     */
/* ========================================================= */

.site-footer {
  border-top: 1px solid rgba(214, 210, 246, 0.8);
  padding: 14px 20px 18px;
  background: rgba(246, 246, 251, 0.98);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-soft);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a {
  color: var(--text-soft);
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--lavender-deep);
}


/* ========================================================= */
/* Guide Tables                                               */
/* ========================================================= */

.guide-table-container {
  overflow-x: auto;
  margin: 32px 0 48px;
  border-radius: 12px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.guide-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: #fff;
  min-width: 800px; /* Force scroll on mobile */
}

.guide-table th,
.guide-table td {
  padding: 20px 24px; /* Increased padding +4px */
  text-align: left;
  border-bottom: 1px solid #f0f0f5;
  vertical-align: top;
}

.guide-table th {
  background: #f9f9fc;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 2px solid #e1def7;
}

.guide-table td {
  color: var(--text-muted);
}

.guide-table tr:last-child td {
  border-bottom: none;
}

.guide-table tr:hover td {
  background: #faf9ff;
}

.status-icon {
  display: inline-block;
  margin-right: 6px;
  font-weight: bold;
}

.status-icon.check {
  color: #2e7d32;
}

.status-icon.cross {
  color: #c62828;
}

/* Guide Content Styling */
.guide-content h2 {
  font-size: 1.8rem;
  margin: 58px 0 30px; /* Increased margins: +10px top, +6px bottom */
  color: var(--text-main);
}

.guide-content h3 {
  font-size: 1.4rem;
  margin: 42px 0 22px; /* Increased margins: +10px top, +6px bottom */
  color: var(--text-main);
}

.guide-content p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.guide-content ul {
  margin-bottom: 24px;
  padding-left: 24px;
}

.guide-content li {
  margin-bottom: 10px;
  color: var(--text-muted);
  line-height: 1.6;
}

.guide-section {
  background: #fff;
  padding: 40px;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}

.guide-affiliate-box {
  background: #f8f8fc;
  border: 1px solid #e1def7;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
  font-style: italic;
}

.guide-pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.pain-point-item {
  background: #fff;
  border: 1px solid #f0f0f5;
  padding: 16px;
  border-radius: 8px;
  text-align: center;
  color: var(--text-main);
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

/* Guide specific additions */
.guide-divider {
  border: 0;
  border-top: 1px solid rgba(140, 123, 255, 0.12);
  width: 70%;
  margin: 40px auto;
}

.guide-btn-grid {
  margin-top: 24px; /* Reduced from default */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.guide-cloud-btn {
  background: #fff;
  padding: 12px 16px;
  border: 1px solid #e1def7;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.03);
  transition: all 0.2s ease;
}

.guide-cloud-btn:hover {
  border-color: var(--lavender);
  color: var(--lavender-deep);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(108, 99, 255, 0.08);
}

.guide-cloud-btn svg {
  color: var(--lavender-soft); /* Default icon color: lavender-soft (which is usually #efecff, but might be too light on white bg. Let's use a slightly darker shade if needed, or keep lavender-accent #8C7BFF) */
  /* Re-reading user request: "lavender-soft default". If lavender-soft is #efecff, it's very light. 
     Wait, user said "lavender-soft default". I'll use var(--lavender) or var(--lavender-accent) which is more visible, 
     or maybe they meant the variable name. Let's stick to var(--lavender) as a soft purple, 
     or maybe create a new specific color if needed. 
     Actually, looking at variables: --lavender: #A99CFF; --lavender-soft: #efecff. 
     #efecff is nearly white. I suspect they might mean the color OF lavender soft, or maybe standard lavender.
     I'll use var(--lavender) for better visibility as "soft" implies not the strong deep one.
  */
  color: var(--lavender); 
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  transition: color 0.2s ease;
}

.guide-cloud-btn:hover svg {
  color: var(--lavender-deep);
}


@media (max-width: 900px) {
  .nav-inner {
    gap: 12px;
  }

  .primary-nav {
    display: none;
    /* keep it simple for now on mobile */
  }

  .nav-cta {
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .hero-inner {
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
  }

  .nav-cta {
    gap: 6px;
  }

  .section {
    padding-bottom: 46px;
  }
}