@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&display=swap');

/* ----------  Disable ScrollSmoother  ---------- */
#smooth-wrapper {
  overflow: visible !important;
  height: auto !important;
  position: static !important;
}
#smooth-content {
  transform: none !important;
  will-change: auto !important;
}

/* ----------  Ditther-style animations  ---------- */

/* Word-by-word blur reveal */
.word {
  display: inline-block;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(10px);
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1),
              filter 0.55s cubic-bezier(0.16,1,0.3,1),
              transform 0.55s cubic-bezier(0.16,1,0.3,1);
}
.word.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Reveal — fade up for non-title elements */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1),
              transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero fadeUp keyframe for badge/sub/actions */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-fade {
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) forwards;
}

/* Backward compat — keep fade-in classes working */
.fade-in-hidden {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.16,1,0.3,1), transform 0.75s cubic-bezier(0.16,1,0.3,1);
}
.fade-in-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* =====================================================================
   MacDetox — Redesign layer (light + dark)
   Matches the macOS app's design system (DesignSystem.swift): a near-
   neutral canvas/surface/text scale with a single violet accent, hairline
   borders, no shadows, no glow, no gradients outside the hero moment.
     display = Space Grotesk  (headlines only — the marketing punch)
     body    = system font    (SF Pro stack — matches the app's reading text)
   Loaded LAST — overrides the legacy dark template (style.css).
   All rules are scoped under .saas-website so they win on specificity.
   ===================================================================== */

/* ----------  Design tokens  ---------- */
:root {
  /* Type */
  --font-display: 'Geist', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Segoe UI", Roboto, Arial, sans-serif;

  /* Accent — the app's single solid violet, pulled from the logo */
  --accent: #6752cb;
  --accent-strong: #5642b0;
  --accent-soft: rgba(103, 82, 203, 0.10);

  /* Status hues (used sparingly, only where semantics demand — pricing badges) */
  --positive: #21995c;
  --positive-soft: rgba(33, 153, 92, 0.14);
  --warning: #c7781a;
  --warning-soft: rgba(199, 120, 26, 0.14);

  /* Radii — the app's concentric, tight scale */
  --radius-control: 10px;
  --radius-card: 14px;
  --radius-pill: 999px;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Transitions */
  --ease-sm: 0.2s cubic-bezier(0.25, 0, 0, 1);
  --ease-md: 0.3s cubic-bezier(0.25, 0, 0, 1);
  --ease-lg: 0.4s cubic-bezier(0.25, 0, 0, 1);

  /* Light theme (default) */
  --bg: #f6f6f8;
  --bg-2: #efeff2;
  --surface: #ffffff;
  --surface-2: #f1f1f3;
  --surface-hover: #e8e8eb;
  --border: rgba(0, 0, 0, 0.09);
  --border-strong: rgba(0, 0, 0, 0.16);
  --heading: #191919;
  --text: #6b6b73;
  --muted: #9999a1;

  /* The signature iridescent gradient — HERO MOMENT ONLY, sampled from the logo */
  --hero-gradient: linear-gradient(135deg, #9b9fd1 0%, #9769cc 38%, #c96ba6 68%, #cb9870 100%);
  --hero-bg: #f6f6f8;

  --brand-gradient: var(--hero-gradient);

  /* Glass effects — light */
  --glass-from: rgba(255,255,255,0.7);
  --glass-to:   rgba(255,255,255,0.3);
  --glass-blur: 10px;

  /* Shadows — light */
  --shadow-inset-top:    rgba(255,255,255,0.9);
  --shadow-inset-bottom: rgba(0,0,0,0.06);
  --shadow-drop:         rgba(0,0,0,0.12);
}

/* Dark theme — explicit override */
:root[data-theme="dark"] {
  --accent: #8b7bec;
  --accent-strong: #9d8ff0;
  --accent-soft: rgba(139, 123, 236, 0.16);

  --positive: #4ac785;
  --positive-soft: rgba(74, 199, 133, 0.18);
  --warning: #f2a84a;
  --warning-soft: rgba(242, 168, 74, 0.18);

  /* Backgrounds — matched to Ditther */
  --bg:        #0d0d0f;
  --bg-2:      #141417;
  --surface:   #1b1b23;
  --surface-2: #22222b;
  --surface-hover: #2a2a34;

  /* Borders — matched to Ditther */
  --border:        rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.174);
  --border-subtle: rgba(168, 168, 168, 0.08);

  /* Text — matched to Ditther */
  --heading: #ffffff;
  --text:    #f2f2f5;
  --muted:   #888890;

  /* Glass effects */
  --glass-from: rgba(255, 255, 255, 0.115);
  --glass-to:   rgba(255, 255, 255, 0.03);
  --glass-blur: 8px;

  /* Shadows */
  --shadow-inset-top:    rgba(255, 255, 255, 0.272);
  --shadow-inset-bottom: rgba(0, 0, 0, 0.407);
  --shadow-drop:         rgba(0, 0, 0, 0.579);

  --hero-bg: #0d0d0f;
}

/* Dark theme — follow the OS when the user hasn't chosen explicitly */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) {
    --accent: #8b7bec;
    --accent-strong: #9d8ff0;
    --accent-soft: rgba(139, 123, 236, 0.16);

    --positive: #4ac785;
    --positive-soft: rgba(74, 199, 133, 0.18);
    --warning: #f2a84a;
    --warning-soft: rgba(242, 168, 74, 0.18);

    --bg:        #0d0d0f;
    --bg-2:      #141417;
    --surface:   #1b1b23;
    --surface-2: #22222b;
    --surface-hover: #2a2a34;

    --border:        rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.174);
    --border-subtle: rgba(168, 168, 168, 0.08);

    --heading: #ffffff;
    --text:    #f2f2f5;
    --muted:   #888890;

    --glass-from: rgba(255, 255, 255, 0.115);
    --glass-to:   rgba(255, 255, 255, 0.03);
    --glass-blur: 8px;

    --shadow-inset-top:    rgba(255, 255, 255, 0.272);
    --shadow-inset-bottom: rgba(0, 0, 0, 0.407);
    --shadow-drop:         rgba(0, 0, 0, 0.579);

    --hero-bg: #0d0d0f;
  }
}

/* ----------  Base  ---------- */
.saas-website {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Body font on text elements (never on icon <i> glyphs) */
.saas-website p, .saas-website a, .saas-website span,
.saas-website li, .saas-website button, .saas-website input,
.saas-website textarea, .saas-website label, .saas-website .theme-btn,
.saas-website .sub-title, .saas-website .accordion-title {
  font-family: var(--font-body);
}

/* Display font on headings + numeric display (never on icon <i> glyphs) */
.saas-website h1, .saas-website h2, .saas-website h3,
.saas-website h4, .saas-website h5, .saas-website h6,
.saas-website .price, .saas-website .plan,
.saas-website .brand-logo h2 {
  font-family: var(--font-display);
}

.saas-website h1, .saas-website h2, .saas-website h3,
.saas-website h4, .saas-website h5, .saas-website h6 {
  color: var(--heading);
  letter-spacing: -0.03em;
  font-weight: 300;
}

.saas-website h2 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.saas-website p { color: var(--text); }
.saas-website a { color: var(--text); }

.saas-website ::selection { background: var(--accent-soft); }

/* Section eyebrow labels */
.saas-website .sub-title {
  color: var(--muted);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

/* ----------  Header  ---------- */
.saas-website .header-nine,
.saas-website .header-area {
  overflow: visible !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 999 !important;
}


/* Glass nav — always on (both scroll states) */
.saas-website .header-nine .header-navigation,
.saas-website .header-nine.sticky .header-navigation {
  background: rgba(13, 13, 15, 0.55) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid var(--border) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 24px rgba(0, 0, 0, 0.4) !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
}

/* Light theme glass */
:root[data-theme="light"] .saas-website .header-nine .header-navigation,
:root[data-theme="light"] .saas-website .header-nine.sticky .header-navigation {
  background: rgba(246, 246, 248, 0.85) !important;
  box-shadow: 0 1px 0 var(--border), 0 4px 16px rgba(0,0,0,0.08) !important;
}

/* Light theme — nav & hero buttons dark */
:root[data-theme="light"] .saas-website .nav-button .theme-btn.style-one {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 12px rgba(0,0,0,0.2);
}
:root[data-theme="light"] .saas-website .nav-button .theme-btn.style-one:hover {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #fff;
  opacity: 0.85;
}
:root[data-theme="light"] .saas-website .hero-ss .theme-btn.style-one {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 4px 20px rgba(0,0,0,0.25);
}
:root[data-theme="light"] .saas-website .hero-ss .theme-btn.style-one:hover {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  opacity: 0.85;
}

/* Light theme — cards */
:root[data-theme="light"] .saas-website .review-card,
:root[data-theme="light"] .saas-website .pricing-new-card {
  background: var(--surface);
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
:root[data-theme="light"] .saas-website .how-step {
  background: linear-gradient(180deg, rgba(255,255,255,0.115) 0%, rgba(255,255,255,0.03) 60%);
  background-color: #141417;
  border-color: rgba(255,255,255,0.10);
}
:root[data-theme="light"] .saas-website .how-step h3 {
  color: #ffffff;
}
:root[data-theme="light"] .saas-website .how-step p {
  color: rgba(255,255,255,0.55);
}

/* Light theme — pricing buttons */
:root[data-theme="light"] .saas-website .pricing-new-btn {
  background: linear-gradient(180deg, #e8e8ea 0%, #d8d8db 100%);
  color: #1a1a1a;
  border: 1px solid rgba(0,0,0,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
}
:root[data-theme="light"] .saas-website .pricing-new-btn:hover {
  color: #1a1a1a;
  opacity: 0.85;
}
:root[data-theme="light"] .saas-website .pricing-new-btn--pro {
  background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
  color: #fff;
  border: 1px solid rgba(0,0,0,0.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12), 0 4px 12px rgba(0,0,0,0.2);
}
:root[data-theme="light"] .saas-website .pricing-new-btn--pro:hover {
  color: #fff;
  opacity: 0.85;
}

/* Light theme — hero badge */
:root[data-theme="light"] .saas-website .hero-ss .hero-content .sub-title {
  background: rgba(0,0,0,0.05);
  border-color: rgba(0,0,0,0.1);
  color: var(--text);
}

.saas-website .brand-logo h2 {
  color: var(--heading);
}

.saas-website .primary-menu {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Nav links */
.saas-website .header-nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.saas-website .header-nav-links a {
  color: var(--text);
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--ease-sm, 0.2s);
}
.saas-website .header-nav-links a:hover {
  color: var(--heading);
}
@media (max-width: 991px) {
  .saas-website .header-nav-links { display: none; }

  /* Mobile nav: hide "Download Now" text, keep icon only */
  .saas-website .nav-button .theme-btn.style-one {
    font-size: 0 !important;
    padding: 8px 12px !important;
    min-width: unset !important;
    line-height: 1 !important;
  }
  .saas-website .nav-button .theme-btn.style-one i {
    display: inline-block !important;
    font-size: 16px !important;
    margin: 0 !important;
  }

  /* Mobile: tighten right-side cluster */
  .saas-website .nav-right-item {
    gap: 4px !important;
  }
  .saas-website .theme-toggle {
    margin-right: 0 !important;
  }
}

/* Sticky — same glass, no extra change needed */
.saas-website .header-nine.sticky,
.saas-website .header-nine.sticky .header-navigation {
  background: transparent !important;
}

/* Theme toggle button in the nav */
.saas-website .theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  margin-right: 8px;
  transition: color 0.2s ease;
  vertical-align: middle;
}
.saas-website .theme-toggle:hover {
  color: var(--heading);
}
.saas-website .nav-right-item {
  display: flex;
  align-items: center;
}
.saas-website .theme-toggle .fa-sun { display: none; }
:root[data-theme="dark"] .saas-website .theme-toggle .fa-sun { display: inline-block; }
:root[data-theme="dark"] .saas-website .theme-toggle .fa-moon { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]):not([data-theme="dark"]) .saas-website .theme-toggle .fa-sun { display: inline-block; }
  :root:not([data-theme="light"]):not([data-theme="dark"]) .saas-website .theme-toggle .fa-moon { display: none; }
}

/* ----------  Buttons  ---------- */
.saas-website .theme-btn.style-one {
  background-color: var(--accent);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 500;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: background-color 0.2s ease;
}
.saas-website .theme-btn.style-one:hover {
  background-color: var(--accent-strong);
  color: #fff;
}
.saas-website .theme-btn.style-one:active { opacity: 0.9; }
.saas-website .theme-btn.style-one i { transition: transform 0.25s ease; }
.saas-website .theme-btn.style-one:hover i { transform: translateY(2px); }

/* Nav CTA — white thick glass like Ditther btn-primary */
.saas-website .nav-button .theme-btn.style-one {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(220,220,220,0.82) 100%);
  color: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 20px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 16px rgba(0,0,0,0.45);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.saas-website .nav-button .theme-btn.style-one:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(220,220,220,0.82) 100%);
  color: #0d0d0f;
  opacity: 0.9;
  transform: translateY(-1px);
}
.saas-website .nav-button .theme-btn.style-one i { display: none; }

/* ----------  Hero  ---------- */
.saas-website .hero-ss {
  background: var(--hero-bg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  padding-top: 80px !important;
  padding-bottom: 0 !important;
}
.saas-website .hero-ss .hero-content {
  margin-bottom: 0 !important;
}
.saas-website .hero-ss .hero-content .sub-title {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
/* MASSIVE, distinctive hero headline */
.saas-website .hero-ss .hero-content h1 {
  color: var(--heading);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  line-height: 1.0;
  letter-spacing: -0.04em;
  font-weight: 300;
  max-width: 16ch;
  margin-left: 0;
  margin-right: 0;
  text-wrap: balance;
  text-align: left;
}
.saas-website .hero-ss .hero-content > p {
  color: var(--text);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.6;
  max-width: 640px;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
}
@media (max-width: 575px) {
  .saas-website .hero-ss .hero-content h1 { letter-spacing: -0.03em; max-width: 100%; }
}


/* Hero trust bar */
.saas-website .hero-trust {
  list-style: none;
  margin: 34px auto 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 30px;
  max-width: 820px;
}
.saas-website .hero-trust .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
}
.saas-website .hero-trust .trust-item strong {
  color: var(--heading);
  font-weight: 700;
}
.saas-website .hero-trust .trust-item i {
  font-size: 16px;
  color: var(--accent);
}
.saas-website .hero-trust .trust-item .fa-star { color: #ffb700; }
.saas-website .hero-trust .trust-item .fa-apple { font-size: 17px; color: var(--heading); }
@media (max-width: 575px) {
  .saas-website .hero-trust { gap: 12px 18px; }
  .saas-website .hero-trust .trust-item { font-size: 13px; }
}

/* Hero CTA button — white glass like Ditther btn-primary */
.saas-website .hero-ss .theme-btn.style-one {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(220,220,220,0.82) 100%);
  color: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 32px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.7),
    inset 0 -1px 0 rgba(0,0,0,0.12),
    0 4px 20px rgba(0,0,0,0.5);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.saas-website .hero-ss .theme-btn.style-one:hover {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(220,220,220,0.82) 100%);
  color: #0d0d0f;
  opacity: 0.9;
  transform: translateY(-1px);
}
.saas-website .hero-ss .theme-btn.style-one i { display: none; }


/* ----------  Social proof strip  ---------- */
.saas-website .social-proof {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.saas-website .social-proof .sp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.saas-website .social-proof .sp-item { text-align: center; }
.saas-website .social-proof .sp-emoji { font-size: 34px; margin-bottom: 12px; }
.saas-website .social-proof .sp-title {
  font-size: 15px; font-weight: 700; color: var(--heading);
  margin-bottom: 6px; line-height: 1.4;
}
.saas-website .social-proof .sp-sub {
  font-size: 14px; font-weight: 600; color: var(--accent); line-height: 1.4;
}
@media (max-width: 768px) {
  .saas-website .social-proof .sp-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* ----------  Cards / surfaces — flat fill + hairline, no shadow  ---------- */
.saas-website .ss-iconic-box,
.saas-website .ss-key-features-box,
.saas-website .ss-testimonial-item,
.saas-website .ss-pricing-item,
.saas-website .ss-faq-wrapper,
.saas-website .accordion-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: none;
}
.saas-website .ss-iconic-box,
.saas-website .ss-key-features-box {
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.saas-website .ss-iconic-box:hover,
.saas-website .ss-key-features-box:hover {
  background-color: var(--surface-hover);
  border-color: var(--border-strong);
}

/* Icon chips — soft accent tint with an accent glyph */
.saas-website .ss-iconic-box .icon,
.saas-website .ss-key-features-box .icon {
  background: var(--accent-soft);
  color: var(--accent);
}
.saas-website .ss-iconic-box .content h5,
.saas-website .ss-key-features-box .content h4 { color: var(--heading); }
.saas-website .ss-iconic-box .content p { color: var(--text); }

/* Features-two check list */
.saas-website .ss-icon-content-box .content h4 { color: var(--heading); }
.saas-website .ss-icon-content-box .content h4 i { color: var(--accent); }
.saas-website .ss-icon-content-box .content p { color: var(--text); }
.saas-website .ss-features-two { padding-top: 16px !important; }
.saas-website .ss-features-two .sasly-image-box img {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  box-shadow: none;
}

/* Key-features wrapper */
.saas-website .ss-key-features .key-features-wrapper {
  background-color: var(--bg-2);
  border: 1px solid var(--border);
}
.saas-website .ss-key-features .key-features-wrapper img {
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
}

/* ----------  Reviews  ---------- */

.saas-website .reviews-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 400;
}
.saas-website .reviews-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.saas-website .reviews-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 64px;
}
.saas-website .reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.saas-website .review-card {
  background: linear-gradient(180deg, var(--glass-from, rgba(255,255,255,0.115)) 0%, var(--glass-to, rgba(255,255,255,0.03)) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color var(--ease-sm, 0.2s);
}
.saas-website .review-card:hover { border-color: var(--border-strong); }
.saas-website .review-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.7;
  flex: 1;
}
.saas-website .review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.saas-website .review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
}
.saas-website .review-role {
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 768px) {
  .saas-website .reviews-grid { grid-template-columns: 1fr; }
}

/* ----------  Testimonials  ---------- */
.saas-website .ss-testimonial-item .testimonial-content p { color: var(--text); }
.saas-website .ss-testimonial-item .author-info h5 { color: var(--heading); }
.saas-website .ss-testimonial-item .author-info .position { color: var(--muted); }
.saas-website .ss-testimonial-sec .ss-content-box .ss-image-box {
  background: var(--surface-2);
}

/* ----------  Pricing new  ---------- */
.saas-website .ss-pricing-new { background: var(--bg); padding-top: 32px !important; padding-bottom: 0 !important; }
.saas-website .ss-reviews { background: var(--bg); padding-top: 0 !important; }
.saas-website .pricing-new-label {
  font-size: 11px; letter-spacing: 0.1em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 16px; font-weight: 400;
}
.saas-website .pricing-new-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 300;
  letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 16px;
}
.saas-website .pricing-new-sub {
  font-size: 16px; color: var(--text); max-width: 520px;
  line-height: 1.7; font-weight: 300; margin-bottom: 64px;
}
.saas-website .pricing-new-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.saas-website .pricing-new-card {
  padding: 14px 16px;
  background: linear-gradient(180deg, var(--glass-from, rgba(255,255,255,0.115)) 0%, var(--glass-to, rgba(255,255,255,0.03)) 100%);
  border: 1px solid var(--border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color var(--ease-sm, 0.2s), box-shadow var(--ease-sm, 0.2s);
}
.saas-website .pricing-new-card:hover {
  border-color: var(--border-strong);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.saas-website .pricing-new-card--pro {
  border-color: var(--border-strong);
  background: linear-gradient(180deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 100%);
}
.saas-website .pricing-new-tier {
  font-size: 12px; letter-spacing: 0.1em; color: var(--text);
  text-transform: uppercase; margin-bottom: 4px;
}
.saas-website .pricing-new-price {
  font-size: 24px; font-weight: 300; letter-spacing: -0.03em;
  color: var(--heading); margin-bottom: 4px; line-height: 1.2;
}
.saas-website .pricing-new-period { font-size: 16px; color: var(--text); font-weight: 400; }
.saas-website .pricing-new-desc {
  font-size: 13px; color: var(--text); margin-bottom: 10px; line-height: 1.5;
}
.saas-website .pricing-new-features {
  list-style: none; display: flex; flex-direction: column;
  gap: 5px; margin-bottom: 14px; flex: 1;
}
.saas-website .pricing-new-features li {
  font-size: 14px; color: var(--text);
  display: flex; align-items: center; gap: 10px;
}
.saas-website .pricing-new-features li::before {
  content: ''; width: 5px; height: 5px;
  border-radius: 50%; background: var(--muted); flex-shrink: 0;
}
.saas-website .pricing-new-features li.pro { color: var(--text); }
.saas-website .pricing-new-features li.pro::before { background: var(--muted); }
.saas-website .pricing-new-badge {
  display: inline-block; padding: 2px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 500; background: var(--positive-soft);
  color: var(--positive); margin-left: 8px; letter-spacing: 0;
  text-transform: none;
}
.saas-website .pricing-new-badge--warn {
  background: var(--warning-soft); color: var(--warning);
}
.saas-website .pricing-new-btn {
  display: block; text-align: center; padding: 13px 24px;
  border-radius: 999px; font-size: 14px; font-weight: 500;
  text-decoration: none; transition: all var(--ease-sm, 0.2s);
  background: linear-gradient(180deg, var(--glass-from, rgba(255,255,255,0.115)) 0%, var(--glass-to, rgba(255,255,255,0.03)) 80%);
  border: 1px solid var(--border-strong); color: var(--text);
}
.saas-website .pricing-new-btn:hover { color: var(--heading); border-color: var(--border-strong); }
.saas-website .pricing-new-btn--pro {
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(195,195,195,0.7) 100%);
  color: #0d0d0f; border-color: rgba(255,255,255,0.5);
}
.saas-website .pricing-new-btn--pro:hover { opacity: 0.9; color: #0d0d0f; }
@media (max-width: 768px) {
  .saas-website .pricing-new-grid { grid-template-columns: 1fr; }
}

/* ----------  Pricing  ---------- */
.saas-website .ss-pricing-item .pricing-head .plan { color: var(--heading); }
.saas-website .ss-pricing-item .pricing-head p { color: var(--muted); }
.saas-website .ss-pricing-item .pricing-head .price { color: var(--heading); }
.saas-website .ss-pricing-item .pricing-head .price .duration { color: var(--muted); }
.saas-website .ss-pricing-item .pricing-body ul li { color: var(--text); }
.saas-website .ss-pricing-item .pricing-body ul li i { color: var(--accent); }

.saas-website .ss-pricing-item .pricing-button .theme-btn.style-one {
  background-color: var(--surface-2);
  color: var(--heading);
  box-shadow: none;
}
.saas-website .ss-pricing-item .pricing-button .theme-btn.style-one:hover {
  background-color: var(--accent);
  color: #fff;
}

/* Highlighted plan — border only, no glow */
.saas-website .ss-pricing-item.pricing-active {
  border: 1px solid var(--border-strong);
  box-shadow: none;
}
.saas-website .ss-pricing-item.pricing-active .pricing-head .price { color: var(--heading); }
.saas-website .ss-pricing-item.pricing-active .pricing-head .price .duration { color: var(--muted); }
.saas-website .ss-pricing-item.pricing-active .pricing-body ul li i { color: var(--heading); }
.saas-website .ss-pricing-item.pricing-active .pricing-button .theme-btn.style-one {
  background: linear-gradient(180deg, rgba(255,255,255,0.92) 0%, rgba(220,220,220,0.82) 100%);
  color: #0d0d0f;
  border: 1px solid rgba(255,255,255,0.5);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.7), 0 4px 16px rgba(0,0,0,0.45);
}
.saas-website .ss-pricing-item.pricing-active .pricing-button .theme-btn.style-one:hover {
  opacity: 0.9;
}

/* Pricing plan badges ("Most Popular", "Save 17%") — status-tinted pills */
.saas-website .plan-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
  vertical-align: middle;
}
.saas-website .plan-badge.badge-positive { background: var(--positive-soft); color: var(--positive); }
.saas-website .plan-badge.badge-warning { background: var(--warning-soft); color: var(--warning); }

/* ----------  FAQ new  ---------- */
.saas-website .ss-faq-new { background: var(--bg-2, #141417); }
.saas-website .faq-new-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.saas-website .faq-new-label {
  font-size: 11px; letter-spacing: 0.1em; color: var(--muted);
  text-transform: uppercase; margin-bottom: 16px; font-weight: 400;
}
.saas-website .faq-new-side h2 {
  font-size: clamp(24px, 3vw, 36px); font-weight: 300;
  letter-spacing: -0.03em; margin-bottom: 16px;
}
.saas-website .faq-new-side p { font-size: 15px; color: var(--text); margin-bottom: 32px; line-height: 1.6; }
.saas-website .faq-new-btn {
  display: inline-block; padding: 11px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, rgba(195,195,195,0.7) 100%);
  color: #0d0d0f; border: 1px solid rgba(255,255,255,0.5);
  transition: opacity var(--ease-sm, 0.2s);
}
.saas-website .faq-new-btn:hover { opacity: 0.9; color: #0d0d0f; }
.saas-website .faq-new-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
}
.saas-website .faq-new-accordion .accordion-item:first-child { border-top: 1px solid var(--border); }
.saas-website .faq-new-accordion .accordion-title {
  padding: 20px 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.saas-website .faq-new-accordion .accordion-title .sn { display: none; }
.saas-website .faq-new-accordion .accordion-header .accordion-title:after {
  background-color: var(--surface) !important;
  border: 1px solid var(--border) !important;
  color: var(--heading) !important;
}
.saas-website .faq-new-accordion .accordion-header .accordion-title[aria-expanded="true"]:after {
  background-color: var(--surface-2) !important;
  border-color: var(--border-strong) !important;
}
.saas-website .faq-new-accordion .accordion-content p {
  padding-bottom: 20px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .saas-website .faq-new-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ----------  FAQ  ---------- */
.saas-website .ss-faq .ss-content-box p { color: var(--text); }
.saas-website .accordion-item .accordion-title { color: var(--heading); }
.saas-website .accordion-item .accordion-title .sn { color: var(--muted); }
.saas-website .accordion-item .accordion-header .accordion-title:after {
  background-color: var(--surface-2);
  color: var(--heading);
}
.saas-website .accordion-item .accordion-content p { color: var(--text); }

/* ----------  Footer  ---------- */
.saas-website .footer-cta {
  background-color: var(--bg-2);
  background-image: none !important;
  border-top: 1px solid var(--border);
}
.saas-website .footer-cta .cta-content-box h2 { color: var(--heading); }
.saas-website .footer-cta .cta-content-box p { color: var(--text); }
.saas-website .footer-cta .cta-content-box p a { color: var(--accent); }

.saas-website .ss-footer .footer-wrapper {
  background-color: var(--surface-2);
  border: 1px solid var(--border);
}
.saas-website .footer-widget .widget-title { color: var(--heading); }
.saas-website .footer-widget p { color: var(--text); }
.saas-website .footer-widget a { color: var(--accent); text-decoration: none; }
.saas-website .footer-widget a:hover { text-decoration: underline; }
.saas-website .footer-newsletter-widget .footer-content > div {
  border-top-color: var(--border) !important;
}
.saas-website .ss-footer .footer-copyright {
  background-color: transparent;
}
.saas-website .footer-copyright .copyright-text p { color: var(--muted); }
.saas-website .footer-copyright .copyright-text p span { color: var(--heading); }

/* ----------  Scrollbar  ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: var(--muted);
  border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text); }

/* ----------  Back-to-top  ---------- */
.saas-website .back-to-top {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%) !important;
  border: 1px solid var(--border-strong) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: inset 0 1px 0 var(--shadow-inset-top), 0 4px 16px rgba(0,0,0,0.4) !important;
  color: var(--heading) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: opacity 0.2s ease, transform 0.2s ease !important;
}
.saas-website .back-to-top:hover {
  background: linear-gradient(180deg, var(--glass-from) 0%, var(--glass-to) 80%) !important;
  opacity: 0.8 !important;
}

/* ----------  Legal / utility pages  ---------- */
.saas-website.legal-page,
.saas-website.success-page,
.saas-website.cancel-page,
.saas-website.feedback-page {
  background-color: var(--bg);
}
.saas-website .page-hero-ss { background: var(--hero-bg) !important; }
.saas-website .contact-form-ss .contact-wrapper,
.saas-website .contact-ss .sasly-iconic-box {
  background-color: var(--surface);
  border: 1px solid var(--border);
}
.saas-website .contact-form-ss .contact-wrapper .contact-form .form_control {
  color: var(--heading);
  border-color: var(--border);
  background-color: var(--surface-2);
}
.saas-website .contact-form-ss .contact-wrapper .contact-form .form_control::placeholder {
  color: var(--muted);
}
.saas-website .contact-ss .sasly-iconic-box .content h5 { color: var(--heading); }
.saas-website .contact-ss .sasly-iconic-box .content p { color: var(--text); }

/* Generic prose safety net for legal/success/cancel/feedback bodies */
.saas-website.legal-page li,
.saas-website.legal-page td,
.saas-website.legal-page th,
.saas-website.success-page li,
.saas-website.cancel-page li,
.saas-website.feedback-page li { color: var(--text); }

/* ----------  Legal / success / cancel / feedback content blocks  ---------- */
.saas-website .legal-container,
.saas-website .success-box,
.saas-website .cancel-box,
.saas-website .feedback-box {
  background: var(--surface);
  border-color: var(--border);
  box-shadow: none;
}
.saas-website .legal-header h1,
.saas-website .legal-body h2,
.saas-website .legal-body h3,
.saas-website .legal-body strong,
.saas-website .success-box h1,
.saas-website .cancel-box h1,
.saas-website .feedback-box h1 { color: var(--heading); }

.saas-website .legal-body,
.saas-website .legal-body p,
.saas-website .legal-body li,
.saas-website .success-box p,
.saas-website .cancel-box p,
.saas-website .feedback-box p { color: var(--text); }

.saas-website .legal-header .last-updated,
.saas-website .secondary-link { color: var(--muted); }
.saas-website .secondary-link:hover { color: var(--accent); }

.saas-website .highlight-box p,
.saas-website .warning-box p { color: var(--text); }

/* contact-info card */
.saas-website .contact-info {
  background: var(--accent-soft);
  border-color: var(--border);
}
.saas-website .contact-info a { color: var(--accent); }
.saas-website .contact-info a:hover { color: var(--accent-strong); }

/* cancel page ghost button */
.saas-website .secondary-btn {
  background: var(--surface-2);
  border-color: var(--border);
  color: var(--heading);
}
.saas-website .secondary-btn:hover {
  background: var(--surface-hover);
  border-color: var(--border-strong);
  color: var(--heading);
}

/* feedback embed frame */
.saas-website .tally-container { background: var(--surface-2); }

/* ----------  Anchor offset for fixed nav  ---------- */
.saas-website section[id] {
  scroll-margin-top: 100px;
}

/* ----------  How it works  ---------- */
.saas-website .ss-how-it-works {
  background: var(--bg-2, #141417);
}
.saas-website .section-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 600;
}
/* Features section title sits directly on a wrapper that inherits the legacy
   48px margin-bottom from style.css's .section-title h2 — tighten it here. */
.saas-website .ss-features-two .section-title h2 {
  margin-bottom: 10px;
}
.saas-website .how-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.saas-website .how-sub {
  font-size: 16px;
  color: var(--text);
  max-width: 520px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 64px;
}
.saas-website .how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: center;
}
.saas-website .how-step {
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 12px;
  background: linear-gradient(180deg, var(--glass-from, rgba(255,255,255,0.115)) 0%, var(--glass-to, rgba(255,255,255,0.03)) 60%);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: border-color var(--ease-sm, 0.2s), transform var(--ease-md, 0.3s);
}
.saas-website .how-step:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}
.saas-website .how-step img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
  margin-bottom: 8px;
}
.saas-website .how-step-contents {
  padding: 4px 12px 12px;
}
.saas-website .how-step h3 {
  margin-bottom: 0;
}
.saas-website .how-step-num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.saas-website .how-step h3 {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--heading);
}
.saas-website .how-step p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .saas-website .how-steps { grid-template-columns: 1fr; }
}

/* ----------  Feature items  ---------- */
.saas-website .ss-features-two .row {
  counter-reset: feature-num;
}
.saas-website .feature-item h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
}
.saas-website .feature-item h4::before {
  counter-increment: feature-num;
  content: counter(feature-num, decimal-leading-zero) ". ";
  color: var(--accent);
}
.saas-website .feature-item p {
  color: var(--text);
  line-height: 1.6;
}

/* ----------  Footer  ---------- */
.saas-website .ss-footer-new {
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.saas-website .footer-new-top {
  padding: 64px 0 48px;
}
.saas-website .footer-new-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.saas-website .review-cta-btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  background: var(--heading);
  border: 1px solid var(--heading);
  color: var(--bg);
}
.saas-website .review-cta-btn:hover {
  opacity: 0.85;
  color: var(--bg);
}
.saas-website .footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.saas-website .footer-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.saas-website .footer-social-instagram {
  color: #e1306c !important;
  border-color: rgba(225, 48, 108, 0.3) !important;
}
.saas-website .footer-social-instagram svg {
  stroke: url(#ig-gradient);
}
.saas-website .footer-social-instagram:hover {
  background: rgba(225, 48, 108, 0.08) !important;
  border-color: rgba(225, 48, 108, 0.5) !important;
}
.saas-website .footer-tagline {
  font-size: 18px;
  color: var(--text);
  margin-top: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}
.saas-website .footer-contact-link a {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.saas-website .footer-contact-link a:hover {
  color: var(--heading);
}
.saas-website .footer-col-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--heading);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.saas-website .footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.saas-website .footer-links-col ul li a {
  font-size: 18px;
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.saas-website .footer-links-col ul li a:hover {
  color: var(--heading);
}
.saas-website .footer-new-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}
.saas-website .footer-new-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.saas-website .footer-new-bottom-inner p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.saas-website .footer-bottom-links {
  display: flex;
  gap: 24px;
}
.saas-website .footer-bottom-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.saas-website .footer-bottom-links a:hover {
  color: var(--text);
}
@media (max-width: 768px) {
  .saas-website .footer-new-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .saas-website .footer-brand-col { grid-column: 1 / -1; }
  .saas-website .footer-new-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
}

/* ----------  Section spacing overrides  ---------- */
.saas-website .pt-120 { padding-top: 64px !important; }
.saas-website .pt-100 { padding-top: 64px !important; }
.saas-website .pt-80  { padding-top: 48px !important; }
.saas-website .pb-120 { padding-bottom: 64px !important; }
.saas-website .pb-100 { padding-bottom: 64px !important; }
.saas-website .pb-80  { padding-bottom: 48px !important; }
.saas-website .mb-60  { margin-bottom: 40px !important; }
.saas-website .pt-60  { padding-top: 40px !important; }
.saas-website .pb-60  { padding-bottom: 40px !important; }

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .saas-website * { transition: none !important; }
}
