/* ══════════════════════════════════════════
   OXALIS — Landing Page Styles
   Cloned from Easy!Appointments layout
   with Oxalis brand colors & fonts
   ════════════════��═════════════════════════ */

/* ── VARIABLES ── */
:root {
  /* Dark palette (hero, dark sections, footer) */
  --soil:    #142414;
  --bark:    #1a2e1a;
  --moss:    #2d5a2d;
  --sage:    #4a9e4a;
  --sage-l:  #6bc46b;
  --accent:  #7dd87d;
  --sand:    #a8d4a8;
  --cream:   #f0f7f0;

  /* Light palette (body, cards) */
  --dark-green: #1e5a2f;
  --bg-light:   #f8f9f7;
  --bg-white:   #ffffff;
  --text-dark:  #1a1a1a;
  --text-body:  #333333;
  --text-muted: #555a64;
  --text-light: #7a7a7a;
  --border:     rgba(74, 158, 74, 0.12);

  /* Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;
  --font-body:    'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container: 1140px;
  --nav-height: 78px;
  --radius: 6px;
  --radius-lg: 12px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--bg-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--sage-l);
}

/* ── UTILITIES ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  line-height: 1.4;
}

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

.btn-primary:hover {
  color: #fff;
  background-color: var(--sage-l);
  border-color: var(--sage-l);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(74, 158, 74, 0.3);
}

.btn-ghost {
  color: var(--cream);
  background: transparent;
  border-color: rgba(240, 247, 240, 0.3);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(240, 247, 240, 0.1);
  border-color: rgba(240, 247, 240, 0.5);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── NAVBAR ── */
.navbar-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  min-height: var(--nav-height);
  transition: background 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}

.navbar {
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.navbar-wrap.scrolled {
  background: #b8d4b8;
  box-shadow: 0 2px 16px rgba(30, 90, 47, 0.12);
}

.navbar-wrap.scrolled .nav-brand-text {
  color: var(--dark-green);
}

.navbar-wrap.scrolled .nav-links a {
  color: var(--text-muted);
}

.navbar-wrap.scrolled .nav-links a:hover {
  color: var(--dark-green);
  background: rgba(74, 158, 74, 0.08);
}

.navbar-wrap.scrolled .nav-logo {
  filter: none;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.navbar-wrap.scrolled .nav-toggle span {
  background: var(--dark-green);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav-brand-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

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

.nav-links {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  padding: 10px 20px !important;
  font-size: 13px !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ── HERO ── */
.hero {
  position: relative;
  background: var(--soil);
  padding: calc(var(--nav-height) + 60px) 0 80px;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--sage);
  bottom: -200px;
  right: -100px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: -100px;
  right: 20%;
  opacity: 0.08;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--sage-l);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--sand);
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

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

.hero-note {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--sand);
  opacity: 0.7;
}

.hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
}

.hero-screenshot {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  max-width: 100%;
  width: 560px;
}

/* ���─ SECTIONS ── */
.section {
  padding: 80px 0;
}

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

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

.section-dark {
  background: var(--bark);
  color: var(--cream);
}

.section-dark .section-title {
  color: var(--cream);
}

.section-dark .section-subtitle {
  color: var(--sand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.text-center .section-subtitle,
.section-subtitle.text-center {
  margin-left: auto;
  margin-right: auto;
}

/* ── FEATURE SECTIONS (zig-zag like EA Features page) ── */
.feature-section {
  padding: 48px 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-grid-reverse {
  grid-template-columns: 1fr 1fr;
}

.feature-image {
  display: flex;
  justify-content: center;
}

.feature-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
  width: 100%;
  max-width: 100%;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--sage);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Pricing - 3 column grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
  align-items: start;
}

.pricing-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(106,196,106,0.12);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
  transition: transform 0.3s;
}
.pricing-card:hover { transform: translateY(-4px); }

.pricing-card-pro {
  background: linear-gradient(170deg, rgba(45,90,45,0.4) 0%, rgba(26,46,26,0.9) 100%);
  border-color: var(--sage);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.pricing-card-anual {
  background: linear-gradient(170deg, rgba(200,170,80,0.1) 0%, rgba(26,46,26,0.7) 100%);
  border: 2px solid rgba(200,170,80,0.5);
}

.pricing-top-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 10px;
  white-space: nowrap;
  background: linear-gradient(135deg, #c8a850, #d4b85c);
  color: #1a1a0a;
  font-weight: 600;
}

.pricing-label {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pricing-price { margin-bottom: 6px; }

.pricing-currency {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  vertical-align: top;
}

.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}
.pricing-amount-green { color: var(--accent); }
.pricing-amount-gold { color: #d4b85c; }

.pricing-period {
  font-size: 14px;
  color: rgba(168,212,168,0.5);
}

.pricing-billing-note {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  color: rgba(240,247,240,0.45);
  margin-top: 4px;
  margin-bottom: 8px;
}

.pricing-old-price {
  font-family: 'DM Mono', monospace;
  font-size: 14px;
  color: rgba(240,247,240,0.3);
  text-decoration: line-through;
  margin-top: 6px;
  display: block;
}

.pricing-save-pill {
  display: inline-block;
  background: rgba(200,170,80,0.15);
  border: 1px solid rgba(200,170,80,0.35);
  color: #d4b85c;
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-top: 8px;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.pricing-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(240,247,240,0.55);
  margin-bottom: 24px;
  margin-top: 12px;
  min-height: 40px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
}

.pricing-features li {
  font-size: 13px;
  color: rgba(240,247,240,0.75);
  padding: 8px 0;
  border-bottom: 1px solid rgba(106,196,106,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li i {
  color: var(--accent);
  font-size: 11px;
  width: 14px;
  flex-shrink: 0;
}

.pricing-features-gold li i { color: #d4b85c; }

.pricing-storage {
  font-size: 12px;
  color: var(--accent);
  font-family: 'DM Mono', monospace;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.pricing-storage-gold { color: #d4b85c; }

.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px;
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}

.pricing-btn-outline {
  border: 1.5px solid rgba(168,212,168,0.3);
  color: var(--cream);
  background: transparent;
}
.pricing-btn-outline:hover { border-color: var(--accent); background: rgba(74,158,74,0.06); }

.pricing-btn-green {
  border: none;
  background: var(--sage);
  color: #fff;
}
.pricing-btn-green:hover { background: var(--sage-l); }

.pricing-btn-gold {
  border: none;
  background: linear-gradient(135deg, #c8a850, #d4b85c);
  color: #1a1a0a;
  font-weight: 600;
}
.pricing-btn-gold:hover {
  background: linear-gradient(135deg, #d4b85c, #e0c86a);
  transform: translateY(-1px);
}

.pricing-footer-note {
  font-size: 13px;
  color: rgba(240,247,240,0.4);
  margin-top: 24px;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* ── FAQ (like EA accordion) ── */
.faq-list {
  max-width: 700px;
  margin: 48px auto 0;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-green);
  text-align: left;
  transition: background 0.2s;
}

.faq-question:hover {
  background: rgba(74, 158, 74, 0.03);
}

.faq-icon {
  font-size: 12px;
  color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon {
  transform: rotate(90deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-cta {
  margin-top: 32px;
}

.faq-cta p {
  font-size: 15px;
  color: var(--text-muted);
}

.faq-cta a {
  font-weight: 600;
}

/* ── CTA SECTION ── */
.section-cta {
  background: var(--moss);
  padding: 80px 0;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 16px;
  line-height: 1.3;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--sand);
  margin-bottom: 32px;
}

/* ── FOOTER (like EA bg-primary-3 footer) ── */
.footer {
  background: var(--soil);
  color: var(--sand);
  padding: 64px 0 32px;
}

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

.footer-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 8px;
}

.footer-brand-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--sand);
  line-height: 1.6;
  opacity: 0.7;
}

.footer-links h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--sand);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(168, 212, 168, 0.15);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--sand);
  opacity: 0.6;
}

/* ── ANIMATIONS ── */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-up"] {
  transform: translateY(30px);
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].animated {
  opacity: 1;
  transform: translate(0, 0);
}

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .hero-image {
    max-width: 560px;
    margin: 0 auto;
  }

  .app-window {
    max-width: 100%;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas {
    justify-content: center;
  }

  .feature-grid,
  .feature-grid-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-image {
    max-width: 380px;
    margin: 0 auto;
  }

  .feature-image img {
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--soil);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 12px 16px;
  }

  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  .hero {
    padding: calc(var(--nav-height) + 40px) 0 60px;
  }

  .hero-title {
    font-size: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

}

@media (max-width: 480px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    justify-content: center;
  }

  .btn-lg {
    padding: 14px 24px;
  }
}

/* ══════════════════════════════════════════
   HERO TITLE EM (italic accent)
   ══════════════════════════════════════════ */

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

/* ══════════════════════════════════════════
   APP WINDOW MOCKUP
   ══════════════════════════════════════════ */

.app-window {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06);
  background: #0e1e0e;
}

.app-window-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #0e1e0e;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.app-window-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

.app-window-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  letter-spacing: 0.02em;
}

.app-window-tabs {
  display: flex;
  background: #111e11;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow-x: auto;
  scrollbar-width: none;
}

.app-window-tabs::-webkit-scrollbar {
  display: none;
}

.app-tab {
  flex-shrink: 0;
  padding: 9px 16px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: rgba(168, 212, 168, 0.5);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.app-tab:hover {
  color: var(--sand);
}

.app-tab.active {
  color: var(--accent);
  border-bottom-color: var(--sage);
  background: rgba(74, 158, 74, 0.12);
  border-radius: 4px 4px 0 0;
  font-weight: 700;
}

.app-tab-hint {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(168, 212, 168, 0.4);
  padding: 9px 12px 9px 0;
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

.app-window-screen {
  position: relative;
  line-height: 0;
  background: #1a2e1a;
  overflow: hidden;
}

.app-window-img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity 0.25s ease;
}

.app-window-img.fading {
  opacity: 0;
}

/* ── HOW IT WORKS — 3 steps ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0 24px;
  align-items: center;
  margin-top: 56px;
}

.step {
  text-align: center;
  padding: 40px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(74, 158, 74, 0.1);
}

.step-img {
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-lg) - 4px);
  margin-bottom: 24px;
  display: block;
}

.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

.step-arrow {
  color: var(--sage);
  font-size: 20px;
  opacity: 0.4;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .steps-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
    gap: 0;
  }

  .step-arrow {
    text-align: center;
    padding: 8px 0;
    transform: rotate(90deg);
  }
}

/* ── FEATURE BULLETS ── */
.feature-bullets {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
}

.feature-bullets li i {
  color: var(--sage);
  font-size: 13px;
  flex-shrink: 0;
}

/* ── SUPPORT BADGES ── */
.support-badges {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 28px;
}

.support-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(74, 158, 74, 0.06);
  border: 1px solid rgba(74, 158, 74, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
}

.support-badge > i {
  font-size: 18px;
  color: var(--sage);
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.support-badge div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-badge strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-green);
  line-height: 1.3;
}

.support-badge span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   PAIN SECTION — ¿Te suena esto?
   ══════════════════════════════════════════ */

/* ── Two-column layout ── */
.tesuena-layout {
  display: flex;
  align-items: center;
  gap: 72px;
}

.tesuena-content {
  flex: 1;
  min-width: 0;
}

.tesuena-image {
  flex: 0 0 380px;
  max-width: 400px;
}

.terror-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.pain-card {
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  transition: box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}

.pain-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
}

/* ── Parte mala (dolor) — muted, pequeña ── */
.pain-bad {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.pain-icon {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.25);
  margin-bottom: 10px;
}

.pain-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 6px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pain-desc {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.35);
  line-height: 1.6;
}

/* ── Parte buena (solución) — dominante, verde ── */
.pain-solution {
  padding: 20px 24px 24px;
  background: rgba(74, 158, 74, 0.06);
  flex: 1;
}

.pain-solution-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 8px;
}

.pain-solution-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
}

.pain-cta {
  margin-top: 48px;
}

.pain-cta-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-style: italic;
  color: var(--dark-green);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .tesuena-layout {
    flex-direction: column-reverse;
    gap: 40px;
  }
  .tesuena-image {
    flex: none;
    max-width: 300px;
    margin: 0 auto;
  }
}

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

/* ══════════════════════════════════════════
   MULTI-PAGE ADDITIONS
   ══════════════════════════════════════════ */

/* ── ACTIVE NAV LINK ── */
.nav-links a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.navbar-wrap.scrolled .nav-links a.active,
.navbar-wrap.scrolled-always .nav-links a.active {
  color: var(--dark-green);
  background: rgba(74, 158, 74, 0.12);
}

/* ── SCROLLED-ALWAYS (for non-hero pages) ── */
.navbar-wrap.scrolled-always {
  background: #b8d4b8;
  box-shadow: 0 2px 16px rgba(30, 90, 47, 0.12);
}

.navbar-wrap.scrolled-always .nav-brand-text {
  color: var(--dark-green);
}

.navbar-wrap.scrolled-always .nav-links a {
  color: var(--text-muted);
}

.navbar-wrap.scrolled-always .nav-links a:hover {
  color: var(--dark-green);
  background: rgba(74, 158, 74, 0.08);
}

.navbar-wrap.scrolled-always .nav-logo {
  filter: none;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
}

.navbar-wrap.scrolled-always .nav-toggle span {
  background: var(--dark-green);
}

/* ── SOCIAL PROOF BAR ── */
.social-proof {
  padding: 60px 0;
}

.social-proof-bar {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.social-proof-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 26px);
  font-style: italic;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
  margin-bottom: 28px;
  quotes: none;
}

.social-proof-author {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  border-radius: 999px;
  background: rgba(74, 158, 74, 0.08);
}

.social-proof-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.social-proof-person {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}

.social-proof-person strong {
  font-size: 14px;
  color: var(--dark-green);
  font-weight: 700;
}

.social-proof-person span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PAGE HERO (for Funcionalidades & Blog) ── */
.page-hero {
  background: var(--bg-light);
  padding: calc(var(--nav-height) + 60px) 0 60px;
}

.page-hero-dark {
  background: var(--soil);
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.page-hero-content {
  position: relative;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--dark-green);
  line-height: 1.2;
  margin-bottom: 20px;
}

.page-hero-dark .page-hero-title {
  color: var(--accent);
}

.page-hero-subtitle {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.page-hero-dark .page-hero-subtitle {
  color: var(--sand);
}

.page-hero-image {
  display: flex;
  justify-content: center;
}

.page-hero-image img {
  max-width: 100%;
  border-radius: var(--radius-lg);
}

.page-hero-compact {
  padding: calc(var(--nav-height) + 48px) 0 48px;
}

.page-hero-compact .page-hero-title {
  margin-bottom: 12px;
}

.page-hero-compact .page-hero-subtitle {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FEATURE ICON IMAGES (webp icons in zig-zag) ── */
.feature-icon-img {
  max-width: 200px;
  border-radius: var(--radius-lg);
  box-shadow: none;
}

/* ── FEATURE SCREENSHOTS (full-width app screenshots) ── */
.feature-screenshot-wrap {
  max-width: 800px;
  margin: 40px auto 0;
}

.feature-screenshot {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.feature-screenshot-inline {
  max-width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ── FEATURE EYEBROW / PILL / INSET / EM (funcionalidades page) ── */
.feature-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 12px;
}

.feature-title em {
  font-style: italic;
  color: var(--dark-green);
}

.feature-pill {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(74, 158, 74, 0.10);
  color: var(--dark-green);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
}

.feature-screenshot-wrap {
  position: relative;
}

.feature-inset {
  position: absolute;
  right: -12px;
  bottom: -24px;
  width: 32%;
  min-width: 180px;
  max-width: 280px;
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.05);
  transform: rotate(-1deg);
  background: var(--bg-white);
  z-index: 2;
}

@media (max-width: 720px) {
  .feature-inset {
    position: static;
    display: block;
    width: 70%;
    margin: 20px auto 0;
    transform: none;
    right: auto;
    bottom: auto;
  }
}

/* ── BLOG GRID ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.blog-card.blog-card--linked:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.blog-card-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--bg-light);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card.blog-card--linked:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-body {
  padding: 24px;
}

.blog-card-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(74, 158, 74, 0.08);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 13px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-card-meta i {
  font-size: 12px;
}

/* ── BLOG COMING SOON ── */
.blog-coming-soon {
  padding: 48px 24px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin: 0 auto;
}

.blog-coming-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(74, 158, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--sage);
  font-size: 22px;
}

.blog-coming-soon h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-green);
  margin-bottom: 12px;
}

.blog-coming-soon p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FEATURE JOURNEY (funcionalidades page) ── */

.feature-journey .journey-header {
  text-align: center;
  margin-bottom: 64px;
}
.feature-journey .journey-header .feature-eyebrow {
  font-size: 14px;
  margin-bottom: 18px;
}

.journey-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text-dark);
}
.journey-heading em {
  font-style: italic;
  color: var(--dark-green);
}

.journey-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

/* Camino */
.journey-path {
  width: 320px;
  flex-shrink: 0;
  position: relative;
  height: 820px;
}
.journey-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.journey-line {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.feature-journey.journey-visible .journey-line {
  animation: journeyDraw 1.6s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
@keyframes journeyDraw { to { stroke-dashoffset: 0; } }

/* Decoraciones botánicas */
.journey-plant {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  mix-blend-mode: multiply;
}
.journey-plant-pot {
  top: 118px;
  left: -48px;
  width: 105px;
  height: auto;
  transform: rotate(-6deg);
}
.journey-plant-sprout {
  bottom: -14px;
  right: 32px;
  width: 96px;
  height: auto;
  transform: rotate(4deg);
}

/* Paradas */
.journey-stop {
  position: absolute;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 2.5px solid #b2dfb2;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 14px; font-weight: 700; color: #7cb97c;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s, color 0.25s, background 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  z-index: 3;
}
.journey-stop:hover {
  border-color: var(--sage);
  color: var(--dark-green);
  transform: scale(1.12);
}
.journey-stop.active {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: white;
  box-shadow: 0 0 0 6px rgba(30,90,47,0.15), 0 4px 14px rgba(30,90,47,0.35);
  transform: scale(1.18);
  animation: none;
}

/* Pulso para invitar al clic */
@keyframes journeyStopPulse {
  0%   { box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 0 0 0 rgba(30,90,47,0.35); }
  70%  { box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 0 0 14px rgba(30,90,47,0); }
  100% { box-shadow: 0 2px 10px rgba(0,0,0,0.08), 0 0 0 0 rgba(30,90,47,0); }
}
.feature-journey.journey-visible .journey-stop:not(.active) {
  animation: journeyStopPulse 2.4s ease-out infinite;
}
.feature-journey.journey-visible .journey-stop:nth-of-type(2) { animation-delay: 0.30s; }
.feature-journey.journey-visible .journey-stop:nth-of-type(3) { animation-delay: 0.60s; }
.feature-journey.journey-visible .journey-stop:nth-of-type(4) { animation-delay: 0.90s; }
.feature-journey.journey-visible .journey-stop:nth-of-type(5) { animation-delay: 1.20s; }
.feature-journey.journey-visible .journey-stop:nth-of-type(6) { animation-delay: 1.50s; }
.feature-journey.journey-visible .journey-stop:nth-of-type(7) { animation-delay: 1.80s; }

/* Etiquetas de parada */
.journey-stop-label {
  position: absolute;
  font-size: 14px; font-weight: 500; color: #888;
  white-space: nowrap;
  transition: color .2s, font-weight .2s;
  pointer-events: none;
}
.journey-stop-label.label-right {
  left: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
}
.journey-stop-label.label-left {
  right: calc(100% + 10px);
  top: 50%; transform: translateY(-50%);
  text-align: right;
}
.journey-stop.active .journey-stop-label {
  color: var(--text-dark);
  font-weight: 700;
}

/* Panel de contenido */
.journey-panel {
  flex: 1;
  position: relative;
  min-height: 820px;
}
.journey-card {
  position: absolute; inset: 0;
  background: var(--bg-white);
  border-radius: 22px;
  padding: 48px;
  box-shadow: 0 10px 48px rgba(0,0,0,0.09), 0 0 0 1px rgba(0,0,0,0.04);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .26s ease, transform .26s ease;
  pointer-events: none;
  display: flex; flex-direction: column; gap: 18px;
  overflow: hidden;
}
.journey-card.visible {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.journey-card .feature-eyebrow {
  font-size: 14px;
  margin-bottom: 4px;
}
.journey-card .feature-title {
  font-size: clamp(24px, 2.8vw, 32px);
  color: var(--text-dark);
}
.journey-card .feature-desc {
  font-size: 17px;
}
.journey-card .feature-screenshot {
  margin-top: auto;
  border-radius: var(--radius-lg);
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: top center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.journey-card .feature-screenshot:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.15);
}

/* Lightbox para ampliar screenshots */
.journey-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 25, 20, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity .22s ease;
  cursor: zoom-out;
  padding: 40px;
}
.journey-lightbox.open { opacity: 1; }
.journey-lightbox img {
  width: 60vw;
  max-width: 1400px;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.55);
  transform: scale(.96);
  transition: transform .22s ease;
  cursor: default;
}
.journey-lightbox.open img { transform: scale(1); }
.journey-lightbox-close {
  position: absolute;
  top: 18px;
  right: 22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.journey-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.08);
}
@media (max-width: 720px) {
  .journey-lightbox img { width: 92vw; }
  .journey-lightbox { padding: 20px; }
}

/* Lista móvil */
.journey-mobile { display: none; }

.jm-item { border-bottom: 1px solid var(--border); }
.jm-item:last-child { border-bottom: none; }

.jm-trigger {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 16px 0;
  background: none; border: none; cursor: pointer;
  gap: 12px; text-align: left;
}
.jm-trigger-left { display: flex; align-items: center; gap: 12px; }

.jm-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-light);
  border: 1.5px solid #b2dfb2;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px; font-weight: 700; color: var(--sage);
  flex-shrink: 0; transition: all .2s;
}
.jm-trigger.open .jm-num {
  background: var(--dark-green);
  border-color: var(--dark-green);
  color: white;
}

.jm-name { font-size: 15px; font-weight: 600; color: var(--text-dark); }

.jm-arrow { font-size: 10px; color: #aaa; transition: transform .25s; flex-shrink: 0; }
.jm-trigger.open .jm-arrow { transform: rotate(180deg); }

.jm-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s cubic-bezier(.4,0,.2,1);
}
.jm-body.open { max-height: 500px; }
.jm-body-inner { padding-bottom: 20px; }
.jm-body-inner .feature-title { font-size: 17px; }

/* Responsive: mostrar móvil, ocultar desktop */
@media (max-width: 720px) {
  .journey-layout { display: none; }
  .journey-mobile { display: block; }
  .feature-journey .journey-header { margin-bottom: 24px; }
}

/* ── RESPONSIVE: NEW SECTIONS ── */
@media (max-width: 992px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .page-hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .page-hero-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

}

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--nav-height) + 32px) 0 40px;
  }

  .feature-icon-img {
    max-width: 150px;
  }

}


/* ══════════════════════════════════════════
   HIGHLIGHTS SECTION
   ══════════════════════════════════════════ */

.highlights {
  background: var(--dark-green);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.highlights::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.highlights::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74,158,74,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.highlights-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.highlights-header {
  margin-bottom: 64px;
}

.highlights-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
  display: block;
}

.highlights-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  max-width: 520px;
}

.highlights-title em {
  color: var(--accent);
  font-style: italic;
}

/* ── Grid ── */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  grid-template-rows: auto auto;
  gap: 20px;
}

/* ── Base card ── */
.h-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.h-card:hover {
  border-color: rgba(110,207,110,0.25);
  transform: translateY(-3px);
}

/* ── Card grande ── */
.h-card-main {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  padding: 40px 40px 0;
  background: linear-gradient(160deg, rgba(74,158,74,0.1) 0%, rgba(255,255,255,0.03) 60%);
}

.h-card-main .card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.h-card-main .card-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--sage);
  display: inline-block;
  flex-shrink: 0;
}

.h-card-main h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 20px;
}

.h-card-main h3 em {
  color: var(--accent);
  font-style: italic;
}

.h-card-main > p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--sage-l);
  max-width: 420px;
  margin-bottom: 28px;
}

.h-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(110,207,110,0.12);
  border: 1px solid rgba(110,207,110,0.2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 40px;
  width: fit-content;
}

.h-pill::before {
  content: '✓';
  font-size: 11px;
}

.h-card-main .card-img-wrap {
  margin-top: 32px;
  flex: 1;
  position: relative;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.h-card-main .card-screenshot {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 -20px 60px rgba(0,0,0,0.4);
  display: block;
}

.h-card-main .card-illus {
  position: absolute;
  top: 10px;
  right: 32px;
  width: 110px;
  height: 110px;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
  animation: highlights-float 4s ease-in-out infinite;
}

/* ── Cards pequeñas ── */
.h-card-sm {
  grid-column: 2;
  padding: 32px 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.h-card-sm .card-illus {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
  animation: highlights-float 5s ease-in-out infinite;
}

.h-card-sm:last-child .card-illus {
  animation-delay: -2s;
}

.h-card-sm .card-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 10px;
}

.h-card-sm h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.h-card-sm > p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(200,192,168,0.75);
  flex: 1;
}

.card-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 5px 10px;
  border: 1px solid rgba(110,207,110,0.2);
  border-radius: 6px;
  width: fit-content;
}

@keyframes highlights-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  .h-card-main {
    grid-row: auto;
  }
  .h-card-sm {
    grid-column: 1;
  }
  .h-card-main .card-img-wrap {
    min-height: 200px;
  }
}

@media (max-width: 600px) {
  .highlights {
    padding: 64px 0 80px;
  }
  .highlights-inner {
    padding: 0 20px;
  }
  .h-card-main {
    padding: 28px 24px 0;
  }
  .h-card-sm {
    padding: 24px 24px 20px;
    min-height: auto;
  }
}

/* ══════════════════════════════════════════
   TESTIMONIO SECTION
   ══════════════════════════════════════════ */

.testimonial {
  background: var(--dark-green);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.4;
}

.testimonial::after {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(74,158,74,0.12) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.testimonial-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

.testimonial-header {
  margin-bottom: 56px;
  text-align: center;
}

.testimonial-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0;
}

.testimonial-title em {
  color: var(--cream);
  font-style: italic;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px;
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 140px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  pointer-events: none;
}

.testimonial-photo {
  position: relative;
}

.testimonial-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
  display: block;
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
  transform: rotate(-1.8deg);
  transition: transform 0.4s ease;
}

.testimonial-photo img:hover {
  transform: rotate(0);
}

.testimonial-body {
  color: var(--cream);
  position: relative;
  z-index: 1;
}

.testimonial-pull {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--cream);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.testimonial-pull em {
  color: var(--accent);
  font-style: italic;
  font-weight: 900;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(240, 247, 240, 0.82);
  margin: 0 0 32px;
  max-width: 560px;
}

.testimonial-attribution {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--cream);
}

.testimonial-role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(240, 247, 240, 0.6);
  letter-spacing: 0.05em;
}

.testimonial-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255,255,255,0.95);
  padding: 2px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

@media (max-width: 900px) {
  .testimonial-card {
    grid-template-columns: 240px 1fr;
    gap: 36px;
    padding: 36px;
  }
  .testimonial-card::before {
    font-size: 100px;
    top: 8px;
    right: 20px;
  }
}

@media (max-width: 700px) {
  .testimonial {
    padding: 72px 0 88px;
  }
  .testimonial-inner {
    padding: 0 20px;
  }
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
  }
  .testimonial-photo {
    max-width: 220px;
    margin: 0 auto;
  }
  .testimonial-attribution {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .testimonial-logo {
    width: 56px;
    height: 56px;
  }
}
