/* ─────────────────────────────────────────────────────────
   Soraq · Landing CSS (light-mode, Notion-inspired)
   Standalone — does NOT rely on main.css variables
   ───────────────────────────────────────────────────────── */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #FAFAF8;
  color: #1A1A18;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
blockquote { font-style: normal; }

/* ── Layout container ─────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #E5E4E0;
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1A1A18;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.nav-logo span { color: #1A8A75; }

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  font-size: 0.9375rem;
  color: #6B6B68;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #1A1A18; background: #F0EFEB; }

.nav-actions { display: flex; gap: 8px; align-items: center; margin-left: auto; }

.btn-ghost-nav {
  font-size: 0.9375rem;
  color: #1A1A18;
  padding: 7px 16px;
  border-radius: 7px;
  border: 1px solid transparent;
  transition: background 0.15s;
}
.btn-ghost-nav:hover { background: #F0EFEB; }

.btn-dark-nav {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #FFFFFF;
  background: #1A1A18;
  padding: 7px 18px;
  border-radius: 7px;
  border: 1px solid #1A1A18;
  transition: opacity 0.15s;
}
.btn-dark-nav:hover { opacity: 0.85; }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
  padding: 96px 0 80px;
  background: #FAFAF8;
  text-align: center;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.8125rem;
  color: #6B6B68;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}

.hero-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.75rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #1A1A18;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  font-weight: 700;
  color: #1A8A75;
}

.hero-desc {
  font-size: 1.125rem;
  color: #6B6B68;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 32px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.btn-hero-primary {
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #1A1A18;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid #1A1A18;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.btn-hero-primary:hover { opacity: 0.85; }

.btn-hero-secondary {
  font-size: 1rem;
  font-weight: 500;
  color: #1A1A18;
  background: #FFFFFF;
  padding: 12px 26px;
  border-radius: 8px;
  border: 1px solid #E5E4E0;
  transition: border-color 0.15s, background 0.15s;
}
.btn-hero-secondary:hover { background: #F5F5F2; border-color: #C8C7C3; }

.hero-note {
  font-size: 0.8125rem;
  color: #9B9B98;
  margin-bottom: 56px;
}

/* ── Preview shell ───────────────────────────────────────── */
.hero-visual { display: flex; justify-content: center; }

.preview-shell {
  width: 100%;
  max-width: 800px;
  background: #1C1C1A;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.12),
    0 32px 80px rgba(0,0,0,0.22),
    0 8px 24px rgba(0,0,0,0.14);
}

.preview-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 16px;
  background: #141412;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.dot-red    { width: 12px; height: 12px; border-radius: 50%; background: #FF5F57; flex-shrink: 0; }
.dot-yellow { width: 12px; height: 12px; border-radius: 50%; background: #FEBC2E; flex-shrink: 0; }
.dot-green  { width: 12px; height: 12px; border-radius: 50%; background: #28C840; flex-shrink: 0; }

.preview-url {
  font-family: 'DM Sans', monospace;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  margin-left: 10px;
}

.preview-body { padding: 24px; }

.preview-stage {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 16px;
  margin-bottom: 20px;
}

/* Pool */
.preview-pool { display: flex; flex-direction: column; gap: 7px; }

.pool-label {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 4px;
}

.pool-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.82);
  cursor: default;
}
.pool-card.accent {
  background: rgba(109,222,197,0.15);
  border-color: rgba(109,222,197,0.35);
  color: #6DDEC5;
}
.pool-card.muted {
  opacity: 0.4;
}

/* Groups */
.preview-groups { display: flex; flex-direction: column; gap: 10px; }

.group-col {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  padding: 10px 12px;
}
.group-col.empty { border-style: dashed; border-color: rgba(255,255,255,0.12); }

.group-name {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-bottom: 8px;
}
.group-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

.group-card {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 5px;
}
.group-card:last-child { margin-bottom: 0; }

.group-empty {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding: 6px 0;
}

/* Preview footer */
.preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.preview-progress {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}
.preview-progress span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}
.progress-track {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: #6DDEC5;
  border-radius: 100px;
}

.preview-finish {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 7px 16px;
  cursor: not-allowed;
  white-space: nowrap;
}

/* ─────────────────────────────────────────────────────────
   PROOF BAR
   ───────────────────────────────────────────────────────── */
.proof-bar {
  padding: 20px 0;
  background: #FFFFFF;
  border-top: 1px solid #E5E4E0;
  border-bottom: 1px solid #E5E4E0;
}

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

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6B6B68;
  padding: 6px 20px;
}

.proof-icon {
  color: #1A8A75;
  font-size: 1rem;
}

.proof-sep {
  color: #D0CFC9;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.testimonials {
  padding: 100px 0;
  background: #FAFAF8;
}

.testimonials-headline {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1A1A18;
  text-align: center;
  margin-bottom: 56px;
}

/* Featured testimonial card */
.tf-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.tf-left {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.tf-company {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #9B9B98;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tf-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1A1A18;
  flex: 1;
}

.tf-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A8A75;
  transition: opacity 0.15s;
}
.tf-link:hover { opacity: 0.75; }

.tf-right {
  background: #F5F5F2;
  border-left: 1px solid #E5E4E0;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* tf-visual: results mockup */
.tf-visual {
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.tfv-header { margin-bottom: 8px; }
.tfv-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9B9B98;
  font-weight: 500;
}

.tfv-score {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 20px;
}
.tfv-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: #1A1A18;
  letter-spacing: -0.04em;
  line-height: 1;
}
.tfv-pct {
  font-family: 'DM Sans', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1A8A75;
}

.tfv-bars { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }

.tfv-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: #6B6B68;
}
.tfv-bar-row span:first-child { min-width: 90px; font-size: 0.8125rem; }
.tfv-bar-row span:last-child  { min-width: 34px; text-align: right; color: #9B9B98; font-size: 0.75rem; }

.tfv-track {
  flex: 1;
  height: 5px;
  background: #F0EFEB;
  border-radius: 100px;
  overflow: hidden;
}
.tfv-fill {
  height: 100%;
  background: #1A8A75;
  border-radius: 100px;
}

.tfv-clusters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid #F0EFEB;
}
.tfv-cluster {
  background: rgba(26,138,117,0.08);
  color: #1A8A75;
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Grid of smaller testimonials */
.tm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tm-card {
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s;
}
.tm-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.06); }

.tm-company {
  font-size: 0.75rem;
  font-weight: 600;
  color: #9B9B98;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tm-quote {
  font-size: 0.9375rem;
  color: #1A1A18;
  line-height: 1.65;
  flex: 1;
}

.tm-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A8A75;
  transition: opacity 0.15s;
}
.tm-link:hover { opacity: 0.75; }

/* ─────────────────────────────────────────────────────────
   SECTION HEADER (light variant)
   ───────────────────────────────────────────────────────── */
.section-header-light {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #1A8A75;
  margin-bottom: 14px;
}

.section-title-light {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1.875rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: #1A1A18;
  margin-bottom: 16px;
}

.section-desc-light {
  font-size: 1rem;
  color: #6B6B68;
  line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────────────────────── */
.features-section {
  padding: 100px 0;
  background: #F5F5F2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid #E5E4E0;
  border-radius: 14px;
  overflow: hidden;
}

.feature-card {
  padding: 36px;
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  transition: background 0.15s;
}
.feature-card:hover { background: #FAFAF8; }

.fc-icon {
  display: block;
  color: #1A8A75;
  margin-bottom: 16px;
  width: 24px;
  height: 24px;
}
.fc-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1A1A18;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.feature-card p {
  font-size: 0.9375rem;
  color: #6B6B68;
  line-height: 1.65;
}

/* ─────────────────────────────────────────────────────────
   STEPS
   ───────────────────────────────────────────────────────── */
.steps-section {
  padding: 100px 0;
  background: #FAFAF8;
}

.steps-list { display: flex; flex-direction: column; gap: 80px; }

.step-item {
  display: grid;
  grid-template-columns: 72px 1fr 1fr;
  grid-template-areas: "num content visual";
  gap: 56px;
  align-items: center;
}
.step-item.reverse {
  grid-template-areas: "num visual content";
}

.step-num {
  grid-area: num;
  font-family: 'DM Sans', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #E5E4E0;
  line-height: 1;
  user-select: none;
}

.step-content { grid-area: content; }
.step-content h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1A1A18;
  margin-bottom: 12px;
  line-height: 1.2;
}
.step-content p {
  font-size: 1rem;
  color: #6B6B68;
  line-height: 1.7;
}

.step-visual { grid-area: visual; }

.step-card {
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

/* Step card inner elements */
.sc-field { margin-bottom: 12px; }
.sc-field:last-child { margin-bottom: 0; }

.sc-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #9B9B98;
  font-weight: 600;
  margin-bottom: 5px;
}

.sc-val {
  font-size: 0.9375rem;
  color: #1A1A18;
  background: #F5F5F2;
  border: 1px solid #E5E4E0;
  border-radius: 6px;
  padding: 8px 12px;
}
.sc-val.sc-accent {
  color: #1A8A75;
  background: rgba(26,138,117,0.07);
  border-color: rgba(26,138,117,0.2);
  font-weight: 500;
}
.sc-val.sc-ready {
  color: #1A8A75;
  font-weight: 500;
}

/* Step 2: link block */
.sc-link-block { margin-bottom: 18px; }

.sc-link {
  display: block;
  font-family: 'DM Mono', 'Fira Code', monospace;
  font-size: 0.875rem;
  color: #1A8A75;
  background: #F5F5F2;
  border: 1px solid #E5E4E0;
  border-radius: 6px;
  padding: 9px 12px;
  margin-bottom: 8px;
  word-break: break-all;
}

.sc-link-actions { display: flex; gap: 8px; }

.sc-copy-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6B6B68;
  background: #F5F5F2;
  border: 1px solid #E5E4E0;
  border-radius: 6px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.sc-copy-btn:hover { background: #ECEAE5; color: #1A1A18; }

.sc-stats {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid #F0EFEB;
}

.sc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-stat strong {
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A18;
  letter-spacing: -0.02em;
}
.sc-stat span {
  font-size: 0.75rem;
  color: #9B9B98;
}

/* Step 3: clusters */
.sc-clusters { display: flex; flex-direction: column; gap: 10px; }

.sc-cluster {
  background: #F5F5F2;
  border: 1px solid #E5E4E0;
  border-left-width: 3px;
  border-radius: 6px;
  padding: 10px 14px;
}

.sc-cluster-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A18;
  margin-bottom: 3px;
}

.sc-cluster-items {
  font-size: 0.8125rem;
  color: #9B9B98;
}

/* ── Dark step-card variant (for "3 pasos" section) ───── */
.step-card--dark {
  background: #1A1A18;
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}

.step-card--dark .sc-label { color: rgba(255,255,255,0.35); }

.step-card--dark .sc-val {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.step-card--dark .sc-val.sc-accent {
  color: #6DDEC5;
  background: rgba(109,222,197,0.12);
  border-color: rgba(109,222,197,0.25);
}

.step-card--dark .sc-val.sc-ready { color: #6DDEC5; }

.step-card--dark .sc-link {
  color: #6DDEC5;
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.step-card--dark .sc-copy-btn {
  color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}
.step-card--dark .sc-copy-btn:hover {
  background: rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.9);
}

.step-card--dark .sc-stats { border-top-color: rgba(255,255,255,0.08); }

.step-card--dark .sc-stat strong { color: #F5F0E8; }
.step-card--dark .sc-stat span   { color: rgba(255,255,255,0.35); }

.step-card--dark .sc-cluster {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.09);
}
.step-card--dark .sc-cluster-name { color: rgba(255,255,255,0.85); }
.step-card--dark .sc-cluster-items { color: rgba(255,255,255,0.4); }

/* ─────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────── */
.pricing-section {
  padding: 100px 0;
  background: #F5F5F2;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: #FFFFFF;
  border: 1px solid #E5E4E0;
  border-radius: 14px;
  padding: 36px;
  position: relative;
}

.pricing-card.featured {
  border-color: #1A8A75;
  box-shadow: 0 0 0 1px rgba(26,138,117,0.3), 0 16px 48px rgba(0,0,0,0.08);
}

.pc-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: #1A8A75;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.pc-plan {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #9B9B98;
  margin-bottom: 14px;
}

.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}

.pc-num {
  font-family: 'DM Sans', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #1A1A18;
  line-height: 1;
}

.pc-period {
  font-size: 0.9375rem;
  color: #9B9B98;
}

.pc-desc {
  font-size: 0.9375rem;
  color: #6B6B68;
  margin-bottom: 24px;
  line-height: 1.5;
}

.pc-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-features li {
  font-size: 0.9375rem;
  color: #1A1A18;
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}
.pc-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A8A75;
  font-size: 0.875rem;
  font-weight: 600;
}

.btn-pc-outline {
  display: block;
  width: 100%;
  padding: 11px 20px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1A1A18;
  background: transparent;
  border: 1.5px solid #E5E4E0;
  border-radius: 8px;
  transition: border-color 0.15s, background 0.15s;
}
.btn-pc-outline:hover { border-color: #1A1A18; background: #F5F5F2; }

.btn-pc-dark {
  display: block;
  width: 100%;
  padding: 11px 20px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #FFFFFF;
  background: #1A1A18;
  border: 1.5px solid #1A1A18;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.btn-pc-dark:hover { opacity: 0.85; }

/* ─────────────────────────────────────────────────────────
   CTA
   ───────────────────────────────────────────────────────── */
.cta-section {
  padding: 0;
  background: #FAFAF8;
}

.cta-inner {
  background: #1A1A18;
  margin: 0 32px;
  border-radius: 20px;
  padding: 80px 48px;
  text-align: center;
  margin-bottom: 0;
}

.cta-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.cta-desc {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
  line-height: 1.6;
}

.btn-cta {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A18;
  background: #FFFFFF;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  transition: opacity 0.15s;
  letter-spacing: -0.01em;
}
.btn-cta:hover { opacity: 0.9; }

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
  padding: 72px 0 32px;
  background: #FAFAF8;
  border-top: 1px solid #E5E4E0;
  margin-top: 80px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand p {
  margin-top: 14px;
  font-size: 0.9375rem;
  color: #9B9B98;
  line-height: 1.6;
}

.footer-logo {
  font-family: 'DM Sans', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #1A1A18;
  letter-spacing: -0.03em;
}
.footer-logo span { color: #1A8A75; }

.footer-links-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links-col strong {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #1A1A18;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 4px;
}
.footer-links-col a {
  font-size: 0.9375rem;
  color: #6B6B68;
  transition: color 0.15s;
}
.footer-links-col a:hover { color: #1A1A18; }

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #E5E4E0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom span {
  font-size: 0.8125rem;
  color: #9B9B98;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tf-card { grid-template-columns: 1fr; }
  .tf-right { border-left: none; border-top: 1px solid #E5E4E0; padding: 32px; }
  .tf-visual { max-width: 100%; }
  .tm-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

/* ─────────────────────────────────────────────────────────
   MOBILE NAV — hamburger + dropdown
   ───────────────────────────────────────────────────────── */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px 4px;
  margin-left: 12px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background 0.15s;
  flex-shrink: 0;
}
.nav-hamburger:hover { background: #F0EFEB; }

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1A1A18;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.15s ease;
  transform-origin: center;
}

/* Animated X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  padding: 8px 24px 20px;
  border-top: 1px solid #E5E4E0;
  background: rgba(250,250,248,0.98);
  backdrop-filter: blur(12px);
}

.nav-mobile-menu.open { display: flex; }

.nav-mobile-menu > a {
  font-size: 1rem;
  color: #3D3D38;
  padding: 13px 0;
  border-bottom: 1px solid #F0EFEB;
  transition: color 0.15s;
}
.nav-mobile-menu > a:last-of-type { border-bottom: none; }
.nav-mobile-menu > a:hover { color: #1A1A18; }

.nav-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  margin-top: 4px;
}

.nav-mobile-actions .btn-ghost-nav,
.nav-mobile-actions .btn-dark-nav {
  display: block;
  text-align: center;
  width: 100%;
  padding: 11px 20px;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  /* Hide desktop actions on pages with hamburger (index.php) */
  .nav-actions { display: none; }
  /* Simple nav (terms/privacy) — keep actions visible, no hamburger */
  .nav--simple .nav-actions { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .step-item,
  .step-item.reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "num" "content" "visual";
    gap: 24px;
  }
  .step-num { font-size: 2.5rem; }
  .cta-inner { margin: 0 16px; padding: 56px 32px; }
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
  .hero { padding: 64px 0 48px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-hero-primary,
  .btn-hero-secondary { text-align: center; }
  .proof-items { flex-direction: column; align-items: flex-start; gap: 4px; }
  .proof-sep { display: none; }
  .tf-left { padding: 28px; }
  .tf-card { border-radius: 12px; }
  .tm-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; border-radius: 10px; }
  .testimonials { padding: 64px 0; }
  .features-section { padding: 64px 0; }
  .steps-section { padding: 64px 0; }
  .pricing-section { padding: 64px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-inner { padding: 48px 24px; border-radius: 14px; }
}

/* ─────────────────────────────────────────────────────────
   DYNAMIC PRICING — currency toggle + extras (index.php)
   ───────────────────────────────────────────────────────── */
.lp-currency-row {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 36px;
}

.lp-cur-btn {
  padding: 6px 18px;
  border-radius: 100px;
  border: 1.5px solid #D0CFC9;
  background: transparent;
  color: #6B6B68;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.15s;
}

.lp-cur-btn.active {
  background: #1A1A18;
  border-color: #1A1A18;
  color: #FFFFFF;
}

.lp-cur-sym { font-size: 1.5rem; color: #9B9B98; align-self: flex-start; margin-top: 8px; }

/* ─────────────────────────────────────────────────────────
   TESTIMONIAL AUTHOR (index.php simpler cards)
   ───────────────────────────────────────────────────────── */
.lp-tm-author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid #F0EFEB;
  margin-top: auto;
}

.lp-tm-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1A8A75;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
  flex-shrink: 0;
}

.lp-tm-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1A1A18;
}

.lp-tm-role {
  font-size: 0.8125rem;
  color: #9B9B98;
}

/* ─────────────────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
   ───────────────────────────────────────────────────────── */

/* Elements with data-sr start hidden and slide up on scroll */
[data-sr] {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  0.65s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-sr].sr-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delay variants */
[data-sr-delay="1"] { transition-delay: 0.08s; }
[data-sr-delay="2"] { transition-delay: 0.16s; }
[data-sr-delay="3"] { transition-delay: 0.24s; }
[data-sr-delay="4"] { transition-delay: 0.32s; }
[data-sr-delay="5"] { transition-delay: 0.40s; }

/* Slight scale-in variant for cards */
[data-sr-scale] {
  opacity: 0;
  transform: translateY(24px) scale(0.97);
  transition:
    opacity  0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-sr-scale].sr-visible {
  opacity: 1;
  transform: none;
}
[data-sr-scale][data-sr-delay="1"] { transition-delay: 0.07s; }
[data-sr-scale][data-sr-delay="2"] { transition-delay: 0.14s; }
[data-sr-scale][data-sr-delay="3"] { transition-delay: 0.21s; }

/* ── Hero load animations (CSS-only, no JS needed) ── */
.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-anim-1 { animation-delay: 0.05s; }
.hero-anim-2 { animation-delay: 0.15s; }
.hero-anim-3 { animation-delay: 0.25s; }
.hero-anim-4 { animation-delay: 0.35s; }
.hero-anim-5 { animation-delay: 0.45s; }
.hero-anim-6 { animation-delay: 0.62s; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  [data-sr], [data-sr-scale] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-anim {
    opacity: 1;
    animation: none;
  }
}

