.how-it-works { padding: 80px 0; }
.how-it-works h2 { text-align: center; margin: 0 auto 16px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; }
.how-it-works .section-subtitle { text-align: center; color: var(--muted); font-size: 16px; font-weight: 300; margin: 0 auto 40px; max-width: 720px; }
.how-steps { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }
.how-card { background: #EDECEB; border: 1px solid var(--border); border-radius: 16px; padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.how-step { width: 36px; height: 36px; display: inline-grid; place-items: center; border-radius: 10px; background: #D8F9B8; color: var(--text); font-weight: 600; font-size: 14px; }
.how-card h4 { margin: 0; font-weight: 500; }
.how-card p { margin: 0; color: var(--muted); font-size: 15px; font-weight: 300; }
.how-cta { display: grid; place-items: center; margin-top: 28px; }
:root {
  /* Paleta exacta especificada */
  --bg: #F3F2F1;              /* fondo base */
  --card: #ffffff;            /* superficies/cards */
  --surface: #ffffff;         /* superficies suaves */
  --muted: #666666;           /* texto secundario */
  --text: #2B2D2D;            /* texto principal */
  --primary: #7BF900;         /* verde bonito (más fuerte) */
  --primary-600: #c5e8a3;     /* verde hover */
  --ring: rgba(216, 249, 184, 0.35);
  --border: #e5e4e3;          /* bordes suaves */
  --highlight: #D8F9B8;       /* resaltado grande del hero */
  --ok: #7BF900;              /* verde alto margen */
  --warn: #F59E0B;            /* naranja margen medio */
  --danger: #EF4444;          /* rojo margen bajo/negativo */
  --header-bg: #2B2D2D;       /* navbar oscuro */
  --header-text: #ffffff;
  --header-muted: #d1d5db;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root {
    /* Igual que modo claro */
    --bg: #F3F2F1;
    --card: #ffffff;
    --surface: #ffffff;
    --muted: #666666;
    --text: #2B2D2D;
    --primary: #7BF900;
    --primary-600: #c5e8a3;
    --ring: rgba(216, 249, 184, 0.35);
    --border: #e5e4e3;
    --highlight: #D8F9B8;
    --header-bg: #2B2D2D;
    --header-text: #ffffff;
    --header-muted: #d1d5db;
    color-scheme: light;
  }
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
}
html { scroll-behavior: smooth; }
/* Prevent accidental horizontal scroll on small screens */
body { overflow-x: hidden; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.muted { color: var(--muted); }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: transparent; border-bottom: none; }
.header-inner { display: flex; align-items: center; justify-content: center; height: 100px; }

/* Navbar tipo pill */
.nav-pill { display: grid; grid-auto-flow: column; align-items: center; gap: 20px; background: var(--header-bg); color: var(--header-text); border-radius: 20px; padding: 10px 14px; border: 2px solid #202222; box-shadow: 0 6px 20px rgba(0,0,0,0.25); }
.logo-mark { display: inline-grid; place-items: center; width: 48px; height: 48px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 14px; text-decoration: none; font-size: 24px; line-height: 1; }
.logo-mark span { transform: translateY(1px); font-variation-settings: 'wght' 600; }
.nav { display: none; gap: 20px; }
.nav-link { color: #ffffff; text-decoration: none; font-weight: 400; font-size: 16px; }
.nav-link:hover { opacity: 0.9; }
.btn-white { background: #ffffff; color: var(--text); border-radius: 12px; padding: 10px 16px; border: 2px solid #e5e4e3; font-weight: 400; text-decoration: none; font-size: 15px; }
.nav-toggle { background: transparent; border: 1px solid #3b3f41; color: #ffffff; border-radius: 10px; padding: 8px 10px; }

@media (min-width: 960px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
}

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 16px; border-radius: 12px; text-decoration: none; font-weight: 400; border: 1px solid transparent; transition: transform 120ms ease, background 120ms ease, border 120ms ease, box-shadow 120ms ease; }
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: linear-gradient(180deg, var(--primary), var(--primary-600)); color: var(--text); box-shadow: 0 0 0 6px var(--ring); }
.btn-dark { background: #2B2D2D; color: #ffffff; border: 1px solid #202222; }
.btn-dark:hover { background: #1f2121; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }

/* Hero */
.hero { padding: 72px 0; position: relative; }
.hero-inner { display: grid; gap: 36px; grid-template-columns: 1fr 1fr; align-items: center; }
.hero-copy .badge { display: inline-block; padding: 8px 14px 8px 10px; border-radius: 999px; background: #ffffff; color: var(--text); border: 1px solid #e5e4e3; font-weight: 400; font-size: 15px; }
.hero h1 { font-size: clamp(28px, 4.5vw, 48px); line-height: 1.2; margin: 16px 0; letter-spacing: -0.02em; font-weight: 400; max-width: 520px; }

h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 500; letter-spacing: -0.01em; line-height: 1.15; margin: 0; }
h3 { font-size: clamp(20px, 2.5vw, 26px); font-weight: 400; letter-spacing: -0.01em; line-height: 1.3; margin: 0 0 20px; }
h4 { font-size: 18px; font-weight: 500; margin: 0 0 6px; }
.lead { font-size: 16px; color: var(--muted); font-weight: 300; max-width: 440px; line-height: 1.6; }
.hero-actions { display: flex; gap: 12px; margin-top: 16px; align-items: center; }
.rating { margin-top: 14px; color: var(--muted); font-size: 14px; font-weight: 300; }

.hero-media { display: grid; place-items: end; position: relative; max-width: 100%; overflow: hidden; }
.hero-media::before { content: ""; position: absolute; inset: -40px -40px -40px -40px; background: var(--highlight); border-radius: 32px; z-index: -1; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { place-items: center; }
}
.mockup { width: 100%; max-width: 560px; background: var(--card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.12); position: relative; z-index: 1; }
.mockup-header { display: flex; gap: 6px; padding: 10px; border-bottom: 1px solid var(--border); background: linear-gradient(180deg, #fafaf9, #f5f4f3); }
.mockup-header .dot { width: 10px; height: 10px; border-radius: 50%; background: #d0cfce; display: inline-block; }
.mockup-body { display: grid; grid-template-columns: 180px 1fr; }
.sidebar { border-right: 1px solid var(--border); background: #F3F2F1; padding: 12px; }
.sb-item { padding: 10px 12px; border-radius: 10px; color: var(--muted); font-weight: 400; }
.sb-item.active, .sb-item:hover { background: #e8e7e6; color: var(--text); }
.content { padding: 16px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 14px; }
.card .label { color: var(--muted); font-size: 12px; font-weight: 400; }
.card .value { font-size: 20px; font-weight: 600; margin-top: 4px; }
.card .sub { color: var(--muted); font-size: 12px; margin-top: 2px; }
.sparkline { height: 40px; margin-top: 8px; background: linear-gradient(180deg, #e8e7e6 0, transparent 70%); border-radius: 8px; }

.table { margin-top: 14px; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.table-header, .table-row { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 8px; padding: 10px 12px; }
.table-header { background: #fafaf9; color: var(--muted); font-size: 12px; font-weight: 500; border-bottom: 1px solid var(--border); }
.table-row { border-bottom: 1px solid var(--border); }
.table-row:last-child { border-bottom: none; }

/* Chat Demo Styles */
.chat-demo { height: 500px; display: flex; flex-direction: column; }
.mockup-header { position: relative; }
.header-title { position: absolute; left: 50%; transform: translateX(-50%); color: var(--text); font-size: 14px; font-weight: 500; }
.chat-container { flex: 1; display: flex; flex-direction: column; padding: 20px; gap: 16px; background: #ffffff; overflow: hidden; }
.chat-messages { flex: 1; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.chat-message { display: flex; flex-direction: column; gap: 6px; max-width: 85%; animation: slideIn 0.3s ease; }
.chat-message.assistant { max-width: 95%; }
@keyframes slideIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.chat-message.user { align-self: flex-end; align-items: flex-end; }
.chat-message.assistant { align-self: flex-start; }
.message-bubble { padding: 12px 16px; border-radius: 16px; font-size: 15px; font-weight: 300; line-height: 1.5; }
.message-bubble.user { background: var(--header-bg); color: #ffffff; border-bottom-right-radius: 4px; }
.message-bubble.assistant { background: #F3F2F1; color: var(--text); border-bottom-left-radius: 4px; }
.message-bubble strong { font-weight: 600; color: var(--text); }
.message-timestamp { font-size: 12px; color: var(--muted); font-weight: 300; }
.typing-indicator { display: flex; gap: 4px; align-items: center; padding: 12px 16px; background: #F3F2F1; border-radius: 16px; width: fit-content; }
.typing-dot { width: 8px; height: 8px; background: var(--muted); border-radius: 50%; animation: typing 1.4s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: 0.7; } 30% { transform: translateY(-10px); opacity: 1; } }
.chat-input-wrapper { display: flex; gap: 8px; padding: 12px; background: #F3F2F1; border-radius: 12px; }
.chat-input { flex: 1; border: none; background: transparent; outline: none; font-size: 15px; font-weight: 300; color: var(--text); }
.chat-input::placeholder { color: var(--muted); }
.chat-send-btn { width: 40px; height: 40px; border: none; background: var(--header-bg); color: #ffffff; border-radius: 10px; cursor: pointer; display: grid; place-items: center; transition: all 0.2s; }
.chat-send-btn:hover { transform: scale(1.05); }
.chat-send-btn:active { transform: scale(0.95); }

@media (max-width: 720px) {
  .mockup-body { grid-template-columns: 1fr; }
  .sidebar { display: none; }
  .cards { grid-template-columns: 1fr; }
  .table-header, .table-row { grid-template-columns: 1.5fr 1fr; }
  .chat-demo { height: 400px; }
  .hero-media::before { inset: -16px; border-radius: 24px; }
  .mockup { max-width: 100%; }
  .chat-container { padding: 12px; }
  .message-bubble { word-break: break-word; overflow-wrap: anywhere; }
}

/* Mobile & Tablet refinements */
@media (max-width: 900px) {
  .header-inner { height: 80px; }
  .nav-pill { gap: 12px; padding: 8px 12px; }
  .logo-mark { width: 40px; height: 40px; font-size: 20px; }
  .hero { padding: 56px 0; }
  .hero-actions { flex-wrap: wrap; gap: 10px; }
  .logo-track { gap: 24px; }
  .showcase-img { aspect-ratio: 16 / 10; padding: 16px; }
  .impact-badge { top: 12px; right: 12px; font-size: 12px; padding: 4px 10px; }
  .action-btn { width: 44px; height: 44px; font-size: 18px; }
  .pricing-card { padding: 28px; }
  .price-main { font-size: 56px; }
  .how-card { padding: 20px; }
  .how-step { width: 30px; height: 30px; font-size: 12px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-inner { gap: 24px; }
  .badge { font-size: 14px; }
  .hero h1 { line-height: 1.15; }
  .lead { font-size: 15px; }
  .btn, .btn-white, .btn-ghost { padding: 10px 14px; }
  .logo-track { gap: 18px; }
  .pricing-card { padding: 20px; }
  .price-main { font-size: 48px; }
  .btn-large { width: 100%; }
  .showcase-footer h4 { font-size: 20px; }
  .showcase-footer p { font-size: 15px; line-height: 1.5; }
}

/* Logos */
.logos { padding: 40px 0; overflow: hidden; }
.logos-inner { display: flex; flex-direction: column; gap: 20px; align-items: center; }
.logo-carousel { width: 100%; overflow: hidden; position: relative; }
.logo-track { display: flex; gap: 40px; animation: scrollHorizontal 30s linear infinite; }
.logo-item { display: flex; align-items: center; gap: 8px; flex-shrink: 0; color: var(--muted); font-weight: 400; font-size: 14px; }
.logo-item img { flex-shrink: 0; border-radius: 4px; }

@keyframes scrollHorizontal {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Features */
.features { padding: 56px 0; }
.features h2 { text-align: center; margin: 0 auto 32px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; max-width: 520px; }
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
.feature { background: #EDECEB; border: none; border-radius: 16px; padding: 40px 20px 20px; }
.feature h3 { color: var(--text); }
.feature p { color: var(--muted); margin: 0; font-size: 14px; font-weight: 300; line-height: 1.4; }

/* Exchange rate feature card */
.feature-exchange { display: flex; flex-direction: column; gap: 20px; }
.exchange-search { display: flex; align-items: center; gap: 12px; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--muted); }
.exchange-search svg { flex-shrink: 0; }
.exchange-search input { border: none; outline: none; background: transparent; font-family: inherit; font-size: 16px; color: var(--text); width: 100%; font-weight: 300; }
.exchange-search input::placeholder { color: var(--muted); font-weight: 300; }

.currency-list { display: flex; flex-direction: column; gap: 0; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.currency-item { display: grid; grid-template-columns: 32px 1fr auto; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--border); }
.currency-item:last-child { border-bottom: none; }
.currency-item .flag { font-size: 20px; }
.currency-item .currency-name { color: var(--text); font-size: 16px; font-weight: 300; }
.currency-item .currency-code { color: var(--muted); font-size: 14px; background: #F3F2F1; padding: 6px 12px; border-radius: 8px; font-weight: 500; }
.currency-item .flag:empty { display: none; }
/* If there is no flag, expand name to full width */
.currency-item:has(.flag:empty) { grid-template-columns: 1fr auto; }
.currency-code.ok { background: color-mix(in oklab, var(--ok) 30%, #ffffff 70%); color: #1a2a00; }
.currency-code.warn { background: color-mix(in oklab, var(--warn) 30%, #ffffff 70%); color: #3a2200; }
.currency-code.danger { background: color-mix(in oklab, var(--danger) 30%, #ffffff 70%); color: #3a0000; }

/* QR Code feature card */
.feature-qr { display: flex; flex-direction: column; gap: 20px; }
.qr-section { display: flex; flex-direction: column; gap: 12px; }
.qr-label { color: var(--text); font-size: 15px; font-weight: 500; }
.qr-code { display: flex; justify-content: center; padding: 20px; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; }
.qr-renew { color: var(--muted); font-size: 14px; text-align: center; text-decoration: underline; cursor: pointer; }

/* Workspace feature card */
.feature-workspace { display: flex; flex-direction: column; gap: 20px; }
.workspace-btn { display: flex; align-items: center; justify-content: space-between; width: 100%; background: var(--text); color: #ffffff; border: none; border-radius: 12px; padding: 12px 16px; font-family: inherit; font-size: 15px; font-weight: 500; cursor: pointer; }
.workspace-list { display: flex; flex-direction: column; gap: 0; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; padding: 12px 0; }
.workspace-header { color: var(--muted); font-size: 12px; font-weight: 500; padding: 8px 16px; text-transform: uppercase; letter-spacing: 0.05em; }
.workspace-item { display: grid; grid-template-columns: 20px 32px 1fr auto; align-items: center; gap: 10px; padding: 10px 16px; cursor: pointer; }
.workspace-item:hover { background: #F3F2F1; }
.workspace-item.active { background: #F3F2F1; }
.workspace-icon { color: var(--muted); font-size: 16px; }
.workspace-logo { display: inline-grid; place-items: center; width: 32px; height: 32px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 8px; font-size: 14px; }
.workspace-logo-dark { background: #2B2D2D; color: #ffffff; }
.workspace-logo-green { background: #D8F9B8; color: var(--text); }
.workspace-name { color: var(--text); font-size: 15px; font-weight: 400; }
.workspace-check { color: var(--text); font-size: 16px; }
.workspace-badge { color: var(--muted); font-size: 12px; background: #F3F2F1; padding: 4px 8px; border-radius: 6px; }

@media (min-width: 900px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }

/* Full width dashboard feature */
.feature-full { background: #EDECEB; border: none; border-radius: 16px; padding: 24px; margin-top: 20px; display: none !important; /* HIDDEN FLAG - Section hidden but code preserved */ }
.features .feature-full { display: none !important; /* HIDDEN FLAG - Force hide the dashboard section */ }
.feature-full h3 { font-size: clamp(24px, 3vw, 32px); font-weight: 400; margin-bottom: 12px; }
.feature-full p { color: var(--muted); margin: 0 0 24px; font-size: 16px; font-weight: 300; line-height: 1.5; }

.dashboard-full { display: grid; grid-template-columns: 200px 1fr; background: #ffffff; border: 1px solid var(--border); border-radius: 12px; overflow: hidden; min-height: 500px; }
.dashboard-sidebar { background: #F3F2F1; border-right: 1px solid var(--border); padding: 20px 12px; display: flex; flex-direction: column; gap: 24px; }
.dash-logo { display: inline-grid; place-items: center; width: 40px; height: 40px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 10px; font-size: 20px; margin: 0 auto; }
.dash-nav { display: flex; flex-direction: column; gap: 4px; }
.dash-nav-item { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 8px; color: var(--muted); font-size: 14px; font-weight: 400; cursor: pointer; }
.dash-nav-item svg { flex-shrink: 0; }
.dash-nav-item.active { background: #ffffff; color: var(--text); font-weight: 500; }
.dash-nav-item:hover:not(.active) { background: #e8e7e6; }

.dashboard-main { padding: 24px; display: flex; flex-direction: column; gap: 20px; }
.dash-header { display: flex; flex-direction: column; gap: 8px; }
.dash-breadcrumb { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: 14px; font-weight: 300; }
.dash-current { display: flex; align-items: center; gap: 6px; color: var(--text); font-weight: 400; }
.logo-small { display: inline-grid; place-items: center; width: 20px; height: 20px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 6px; font-size: 12px; }
.dash-header h4 { font-size: 24px; font-weight: 500; margin: 0; }

.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px; }
.stat-card { display: flex; flex-direction: column; gap: 6px; background: #F3F2F1; border: 1px solid var(--border); border-radius: 12px; padding: 16px; }
.stat-icon { font-size: 20px; }
.stat-label { color: var(--muted); font-size: 13px; font-weight: 400; }
.stat-value { color: var(--text); font-size: 22px; font-weight: 600; }
.stat-sub { color: var(--muted); font-size: 12px; font-weight: 300; }

.dash-chart { display: flex; flex-direction: column; gap: 16px; background: #F3F2F1; border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.chart-header { display: flex; align-items: center; justify-content: space-between; }
.chart-header span { color: var(--text); font-size: 16px; font-weight: 500; }
.chart-badge { background: var(--text); color: #ffffff; padding: 8px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; }
.chart-bars { display: grid; grid-template-columns: repeat(9, 1fr); gap: 12px; align-items: end; height: 180px; }
.chart-bar { position: relative; background: linear-gradient(180deg, var(--primary) 0%, #b8e68b 100%); border-radius: 8px 8px 4px 4px; display: flex; align-items: end; justify-content: center; padding-bottom: 8px; opacity: 0.6; }
.chart-bar.active { opacity: 1; border: 2px solid var(--text); }
.chart-bar span { color: var(--muted); font-size: 11px; font-weight: 400; }

@media (max-width: 900px) {
  .dashboard-full { grid-template-columns: 1fr; }
  .dashboard-sidebar { display: none; }
}

/* Showcase section */
.showcase { padding: 80px 0; }
.showcase h2 { text-align: center; margin: 0 auto 48px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; max-width: 600px; }
.showcase-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .showcase-grid { grid-template-columns: repeat(3, 1fr); } }

.showcase-card { display: flex; flex-direction: column; gap: 20px; }
.showcase-img { position: relative; aspect-ratio: 1 / 1.3; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 24px; overflow: hidden; }
.showcase-content { display: flex; flex-direction: column; gap: 12px; }
.showcase-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.95); color: var(--text); padding: 8px 14px; border-radius: 999px; font-size: 15px; font-weight: 500; width: fit-content; }
.showcase-badge-alt { background: rgba(255,255,255,0.9); }
.badge-icon { font-size: 18px; }
.showcase-price { color: #ffffff; font-size: 48px; font-weight: 500; text-shadow: 0 2px 8px rgba(0,0,0,0.15); letter-spacing: -0.02em; }
.showcase-number { color: #ffffff; font-size: 64px; font-weight: 600; text-shadow: 0 2px 8px rgba(0,0,0,0.15); letter-spacing: -0.02em; }
.showcase-date { color: rgba(255,255,255,0.95); font-size: 16px; font-weight: 400; }

.showcase-actions { display: flex; align-items: center; gap: 10px; }
.action-btn { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; background: rgba(255,255,255,0.2); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.25); border-radius: 50%; color: #ffffff; font-size: 20px; cursor: pointer; transition: all 150ms ease; }
.action-btn:hover { background: rgba(255,255,255,0.3); transform: scale(1.05); }
.action-btn-dark { background: rgba(0,0,0,0.35); border-color: rgba(0,0,0,0.25); }
.action-btn-split { width: auto; padding: 0 20px; border-radius: 999px; gap: 8px; font-weight: 500; background: rgba(255,255,255,0.95); color: var(--text); }

.showcase-footer { padding: 0; background: transparent; }
.showcase-footer h4 { font-size: 24px; font-weight: 400; margin: 0 0 12px; color: var(--text); }
.showcase-footer p { color: var(--muted); margin: 0; font-size: 16px; font-weight: 300; line-height: 1.6; }

/* Impact badge on showcase images */
.impact-badge { position: absolute; top: 16px; right: 16px; background: #D8F9B8; color: var(--text); padding: 6px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

/* Hide letters/numbers overlays as requested */
.showcase-grid .showcase-card:nth-child(1) .showcase-content,
.showcase-grid .showcase-card:nth-child(2) .showcase-content { display: none; }
.showcase-grid .showcase-card:nth-child(3) .showcase-date,
.showcase-grid .showcase-card:nth-child(3) .showcase-price { display: none; }
/* Keep actions at the bottom for first two when content is hidden */
.showcase-grid .showcase-card:nth-child(1) .showcase-img,
.showcase-grid .showcase-card:nth-child(2) .showcase-img { justify-content: flex-end; }

/* Feature highlight section */
.feature-highlight { padding: 80px 0 40px; }
.highlight-badge { display: inline-flex; align-items: center; gap: 10px; background: #ffffff; border: 1px solid var(--border); padding: 10px 16px; border-radius: 999px; margin-bottom: 24px; }
.badge-logo { display: inline-grid; place-items: center; width: 32px; height: 32px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 8px; font-size: 16px; }
.highlight-badge span:last-child { color: var(--text); font-size: 15px; font-weight: 500; }
.feature-highlight h2 { font-size: clamp(32px, 5vw, 52px); font-weight: 500; margin: 0; max-width: 600px; line-height: 1.15; letter-spacing: -0.02em; }

/* Perks section */
.perks-section { padding: 40px 0 80px; }
.perks-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: stretch; }
@media (min-width: 900px) { .perks-grid { grid-template-columns: 1fr 1fr; gap: 60px; } }

.perks-cards { display: grid; grid-template-columns: 1fr; gap: 20px; height: 100%; }
@media (min-width: 600px) { .perks-cards { grid-template-columns: repeat(2, 1fr); } }

.perk-card { background: #ffffff; border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.perk-icon-circle { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: #ffffff; border: 1px solid var(--border); border-radius: 10px; color: var(--text); align-self: flex-start; }
.perk-icon-circle svg { width: 18px; height: 18px; stroke-width: 1.5; }
.perk-card h4 { font-size: 20px; font-weight: 400; margin: auto 0 10px; color: var(--text); }
.perk-card p { color: var(--muted); margin: 0; font-size: 14px; font-weight: 300; line-height: 1.5; }

.perks-image { position: relative; height: 100%; min-height: 500px; overflow: hidden; border-radius: 24px; }
@media (max-width: 900px) { .perks-image { aspect-ratio: 16 / 10; min-height: 300px; } }

/* Pricing section */
.pricing-section { padding: 80px 0; }
.pricing-subtitle { color: var(--muted); font-size: 16px; font-weight: 300; margin: 8px 0 0; text-align: center; }

/* New Plans layout */
.plans-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
@media (min-width: 900px) { .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; } }

.plan-card { background: #EDECEB; border: 1px solid var(--border); border-radius: 24px; padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.plan-badge { align-self: flex-start; background: var(--highlight); color: var(--text); padding: 6px 12px; border-radius: 999px; font-size: 14px; font-weight: 600; }
.plan-card h3 { margin: 0; font-size: 22px; font-weight: 500; color: var(--text); }
.plan-price { font-size: 40px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.plan-price .plan-original { font-size: 18px; font-weight: 500; color: var(--muted); text-decoration: line-through; margin-left: 8px; }
.plan-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.plan-list li { color: var(--text); font-size: 15px; font-weight: 300; line-height: 1.5; display: flex; gap: 10px; }
.plan-list li::before { content: '✓'; color: var(--text); background: var(--highlight); border: 1px solid var(--border); width: 20px; height: 20px; border-radius: 50%; display: grid; place-items: center; font-size: 12px; flex-shrink: 0; }
.plan-cta { align-self: flex-start; }
.plan-pro { border: 2px solid var(--text); }

/* Testimonials Carousel */
.testimonials-carousel { padding: 80px 0; overflow: hidden; }
.testimonials-carousel h2 { text-align: center; margin-bottom: 60px; font-size: clamp(28px, 4vw, 42px); font-weight: 500; }
.carousel-wrapper { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; max-width: 1400px; margin: 0 auto; padding: 0 20px; height: 600px; overflow: hidden; }
.carousel-wrapper::before, .carousel-wrapper::after { content: ''; position: absolute; left: 0; right: 0; height: 200px; z-index: 10; pointer-events: none; }
.carousel-wrapper::before { top: 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(243,242,241,0.9) 30%, rgba(243,242,241,0.5) 60%, transparent 100%); }
.carousel-wrapper::after { bottom: 0; background: linear-gradient(0deg, var(--bg) 0%, rgba(243,242,241,0.9) 30%, rgba(243,242,241,0.5) 60%, transparent 100%); }

.carousel-column { display: flex; flex-direction: column; gap: 20px; will-change: transform; }

.testimonial-item { background: #ffffff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; flex-shrink: 0; }
.testimonial-item p { color: var(--text); font-size: 15px; font-weight: 300; line-height: 1.6; margin: 0 0 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-name { color: var(--text); font-size: 15px; font-weight: 600; }
.author-role { color: var(--muted); font-size: 14px; font-weight: 300; }

.testimonial-card { padding: 0; overflow: hidden; min-height: 300px; display: flex; flex-direction: column; }
.card-image { position: relative; width: 100%; height: 300px; flex-shrink: 0; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }
.card-badge { position: absolute; top: 16px; left: 16px; display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.95); padding: 8px 12px; border-radius: 999px; backdrop-filter: blur(10px); }
.badge-logo-sm { display: inline-grid; place-items: center; width: 24px; height: 24px; background: var(--highlight); color: var(--text); font-weight: 600; border-radius: 6px; font-size: 12px; }
.card-info { position: absolute; bottom: 16px; left: 16px; color: #ffffff; font-size: 14px; font-weight: 500; text-shadow: 0 1px 4px rgba(0,0,0,0.3); }

@media (max-width: 900px) { .carousel-wrapper { grid-template-columns: 1fr; } .carousel-column.scroll-down { display: none; } }

/* Final CTA */
.final-cta { padding: 80px 0 100px; }
.cta-card { background: var(--header-bg); border-radius: 24px; padding: 80px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.cta-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.15); padding: 8px 16px; border-radius: 999px; color: #ffffff; font-size: 15px; font-weight: 400; }
.badge-icon { display: inline-grid; place-items: center; width: 24px; height: 24px; background: var(--primary); color: var(--text); font-weight: 600; border-radius: 6px; font-size: 14px; }
.cta-card h2 { color: #ffffff; font-size: clamp(32px, 5vw, 56px); font-weight: 400; line-height: 1.2; margin: 0; max-width: 600px; }
.btn-cta-large { background: var(--primary); color: var(--text); border: none; padding: 16px 32px; border-radius: 12px; font-size: 16px; font-weight: 400; cursor: pointer; transition: all 0.2s; }
.btn-cta-large:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(216, 249, 184, 0.3); }

/* Cards inline */
.cards-inline { padding: 24px 0; }
.card-inline { display: grid; gap: 12px; grid-template-columns: 1fr; }
@media (min-width: 900px) { .card-inline { grid-template-columns: repeat(4, 1fr); } }
.card-inline > div { background: #EDECEB; border: 1px solid var(--border); border-radius: 16px; padding: 20px; }

/* Testimonials */
.testimonials { padding: 56px 0; }
.testimonials h2 { text-align: center; margin-bottom: 32px; font-weight: 500; }
.testimonial-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 900px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-grid blockquote { margin: 0; background: #EDECEB; border: 1px solid var(--border); border-radius: 16px; padding: 20px; color: var(--text); font-weight: 300; }

/* CTA */
.cta { padding: 56px 0; }
.cta-inner { display: grid; gap: 16px; justify-items: center; text-align: center; background: linear-gradient(180deg, color-mix(in oklab, var(--primary), #ffffff 90%), transparent); border: 1px solid var(--border); border-radius: 20px; padding: 24px; }
.cta-actions { display: flex; gap: 12px; }

/* Footer */
.site-footer { padding: 40px 0; border-top: 1px solid var(--border); background: #ffffff; }
.footer-inner { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) { .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-title { font-weight: 500; margin-bottom: 8px; }
.footer-col a { color: var(--muted); text-decoration: none; display: block; padding: 4px 0; }
.footer-col a:hover { color: var(--text); }

/* Utilities */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

