/* ==========================================================
   OrderToMe Landing Page — Consolidated Styles
   Scoped to .landing-page to avoid WP theme conflicts
   ========================================================== */

:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --primary-light: #818cf8;
  --secondary-color: #10b981;
  --secondary-dark: #059669;
  --accent-color: #f59e0b;
  --text-dark: #0f172a;
  --text-medium: #334155;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --bg-lighter: #ffffff;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / .05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / .1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / .1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / .1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-display: 'Bricolage Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset & Base ── */
.landing-page *, .landing-page *::before, .landing-page *::after { box-sizing: border-box; }

.landing-page {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing-page h1, .landing-page h2, .landing-page h3 {
  font-family: var(--font-display);
  font-optical-sizing: auto;
}

.landing-page p { margin: 0; }

.landing-page ul { margin: 0; padding: 0; }

.landing-page .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

.landing-page section[id] { scroll-margin-top: 80px; }

.landing-page :focus-visible { outline: 2px solid var(--primary-color); outline-offset: 3px; border-radius: 4px; }

/* ── Lucide icons ── */
.landing-page [data-lucide] {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  overflow: hidden;
}

/* ── Header ── */
.landing-page .header {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px 0 rgb(0 0 0/.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
}

.landing-page .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.landing-page .logo h1 { color: var(--primary-color); font-size: 1.5rem; margin: 0; }
.landing-page .logo a, .landing-page .logo-link { text-decoration: none; color: inherit; display: inline-flex; align-items: center; gap: .6rem; }
.landing-page .logo-text { font-size: 1.5rem; font-weight: 800; letter-spacing: -.03em; color: var(--primary-color); }

.landing-page .nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
}

.landing-page .nav-right {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0; padding: 0;
  align-items: center;
}

.landing-page .nav-menu a, .landing-page .nav-right a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color .3s;
  position: relative;
  padding-bottom: 5px;
}

.landing-page .nav-menu a:hover, .landing-page .nav-right a:hover { color: var(--primary-color); }
.landing-page .nav-menu a.active, .landing-page .nav-right a.active { color: var(--primary-color); font-weight: 600; }

.landing-page .nav-menu a.active::after, .landing-page .nav-right a.active::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--primary-color);
}

.landing-page .cta-btn {
  background: var(--primary-color);
  color: var(--white) !important;
  padding: .5rem 1.5rem;
  border-radius: 6px;
  transition: background .3s;
}
.landing-page .cta-btn:hover { background: var(--primary-dark); }

.landing-page .mobile-menu-toggle {
  background: none; border: none; padding: 0; display: none;
  flex-direction: column; gap: 4px; cursor: pointer; z-index: 1001; position: relative;
}
.landing-page .mobile-menu-toggle span { display: block; width: 25px; height: 3px; background: var(--primary-color); transition: all .3s ease; }
.landing-page .mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.landing-page .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.landing-page .mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px,-6px); }

.landing-page .mobile-only { display: none; }
.landing-page .menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); z-index: 998; }
.landing-page .menu-overlay.active { display: block; }

/* ── Buttons ── */
.landing-page .btn {
  padding: .875rem 2rem; border-radius: 12px; font-weight: 600;
  text-decoration: none; display: inline-block;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 2px solid transparent; font-size: 1rem; cursor: pointer;
}

.landing-page .btn-primary { background: var(--white); color: var(--primary-color); box-shadow: var(--shadow-md); }
.landing-page .btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--shadow-xl); background: var(--bg-light); }

.landing-page .btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.landing-page .btn-secondary:hover { background: var(--white); color: var(--primary-color); }

.landing-page .btn-outline { background: transparent; border-color: var(--primary-color); color: var(--primary-color); }
.landing-page .btn-outline:hover { background: var(--primary-color); color: var(--white); }

.landing-page .btn-cta {
  background: var(--primary-color); color: var(--white) !important;
  padding: 1rem 2.5rem; border-radius: 12px; font-weight: 700;
  text-decoration: none; display: inline-block;
  transition: all .3s cubic-bezier(.4,0,.2,1); font-size: 1rem;
  box-shadow: 0 4px 20px rgba(99,102,241,0.45);
}
.landing-page .btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(99,102,241,0.55); background: var(--primary-dark); }

/* ── Hero ── */
.landing-page .hero {
  padding: 5rem 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 45%, #4338ca 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.landing-page .hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></svg>');
  opacity: .4;
}
.landing-page .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

.landing-page .hero-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: .8rem; font-weight: 600;
  padding: .35rem .85rem; border-radius: 999px; margin-bottom: 1.25rem;
  backdrop-filter: blur(6px);
}

.landing-page .hero-content h2 { font-size: clamp(1.875rem, 5vw, 3rem); margin: 0 0 1rem; line-height: 1.2; }
.landing-page .hero-subtitle { font-size: 1.25rem; margin-bottom: 2rem; opacity: .95; }
.landing-page .hero-cta { display: flex; gap: 1rem; }

.landing-page .hero-stats { display: flex; gap: 1.5rem; margin: 1.5rem 0 2rem; }
.landing-page .hero-stat { display: flex; flex-direction: column; gap: .1rem; }
.landing-page .hero-stat-value { font-size: 1.5rem; font-weight: 800; line-height: 1; color: #fff; }
.landing-page .hero-stat-label { font-size: .75rem; opacity: .8; color: #fff; }
.landing-page .hero-stats-note { font-size: .7rem; opacity: .55; color: #fff; margin: -1rem 0 2rem; line-height: 1.4; }

.landing-page .hero-image { position: relative; display: flex; justify-content: center; align-items: center; }

.landing-page .hero-float {
  position: absolute; background: rgba(255,255,255,0.95); color: #1e293b;
  font-size: .8rem; font-weight: 600; padding: .55rem 1rem; border-radius: 999px;
  display: flex; align-items: center; gap: .45rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.18); white-space: nowrap;
  backdrop-filter: blur(8px); animation: float-bob 3s ease-in-out infinite;
}
.landing-page .hero-float--kitchen { top: 18%; right: -10%; animation-delay: 0s; }
.landing-page .hero-float--payment { bottom: 20%; left: -10%; animation-delay: 1.5s; }
@keyframes float-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.landing-page .hero-float-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
.landing-page .hero-float-dot--green { background: #22c55e; }
.landing-page .hero-float-dot--blue { background: #3b82f6; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.25); } }

/* ── Phone Mockup (hero) ── */
.landing-page .phone-mockup {
  width: 270px; height: 540px; background: #1a1a2e; border-radius: 40px;
  margin: 0 auto; padding: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 2px rgba(255,255,255,.08);
  position: relative;
}
.landing-page .phone-notch {
  width: 80px; height: 22px; background: #1a1a2e;
  border-radius: 0 0 16px 16px; position: absolute;
  top: 0; left: 50%; transform: translateX(-50%); z-index: 2;
}
.landing-page .phone-screen {
  background: #f8fafc; border-radius: 30px; height: 100%;
  overflow: hidden; display: flex; flex-direction: column;
}
.landing-page .ps-header {
  background: var(--primary-color); padding: 1rem 1.25rem .75rem;
  display: flex; justify-content: space-between; align-items: center;
}
.landing-page .ps-logo { color: #fff; font-weight: 700; font-size: .85rem; letter-spacing: .5px; }
.landing-page .ps-table { background: rgba(255,255,255,.2); color: #fff; padding: .2rem .6rem; border-radius: 20px; font-size: .75rem; font-weight: 600; }
.landing-page .ps-section-label { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--text-light); padding: .35rem 1rem; }
.landing-page .ps-menu { flex: 1; padding: .75rem 1rem; display: flex; flex-direction: column; gap: .5rem; }
.landing-page .ps-item { display: flex; justify-content: space-between; align-items: center; padding: .6rem .75rem; background: #fff; border-radius: 8px; border: 1px solid var(--border-color); font-size: .75rem; color: var(--text-dark); box-shadow: var(--shadow-sm); }
.landing-page .ps-item--selected { border-color: var(--primary-color); background: #eff0fe; }
.landing-page .ps-item-info { display: flex; flex-direction: column; gap: .1rem; }
.landing-page .ps-item-name { font-weight: 500; }
.landing-page .ps-item-desc { font-size: .65rem; color: var(--text-light); }
.landing-page .ps-item-price { font-weight: 700; color: var(--primary-color); }
.landing-page .ps-divider { height: 1px; background: var(--border-color); margin: 0 1rem; }
.landing-page .ps-total { text-align: right; padding: .5rem 1rem; font-size: .8rem; color: var(--text-dark); }
.landing-page .ps-total strong { font-size: 1rem; color: var(--primary-dark); }
.landing-page .ps-cart { padding: 0 1rem .75rem; }
.landing-page .ps-cart-row { display: flex; justify-content: space-between; font-size: .78rem; color: var(--text-light); margin-bottom: .5rem; }
.landing-page .ps-cart-total { font-weight: 700; color: var(--text-dark); }
.landing-page .ps-pay { background: #000; color: #fff; text-align: center; padding: .6rem; border-radius: 8px; font-size: .75rem; font-weight: 600; letter-spacing: .3px; }
.landing-page .ps-qr-hint { text-align: center; font-size: .65rem; color: var(--text-light); padding: .4rem 1rem .75rem; }

/* ── Trust Bar ── */
.landing-page .trust-bar { padding: .9rem 0; background: var(--white); border-bottom: 1px solid var(--border-color); }
.landing-page .trust-bar__items { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.landing-page .trust-bar__item { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; font-weight: 500; color: var(--text-light); white-space: nowrap; }
.landing-page .trust-bar__item [data-lucide] { width: 15px; height: 15px; stroke: var(--primary-color); flex-shrink: 0; }

/* === features.css === */
/* Features Section */
.landing-page .features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .features .section-label,
.landing-page .features .section-title,
.landing-page .features .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .features .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .features .section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;  /* feature-showcase padding handles the gap */
}

.landing-page .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* ── Section label pill ── */
.landing-page .section-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ── Feature showcase (alternating) ── */
.landing-page .feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.landing-page .feature-showcase:last-child {
    border-bottom: none;
}

.landing-page .feature-showcase--reverse .feature-showcase__text {
    order: 2;
}

.landing-page .feature-showcase--reverse .feature-showcase__screen {
    order: 1;
}

.landing-page .feature-tag-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-page .feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.landing-page .feature-check-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.landing-page .feature-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ── Payment method logo badges ── */
.landing-page .pay-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.landing-page .pay-logos--pricing {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 1rem;
    gap: 0.4rem;
}

.landing-page .pay-logos__label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .pay-logo {
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    display: block;
    flex-shrink: 0;
}


/* === devices.css === */
/* ── Browser frame wrapper ── */
/* ── Device: Phone frame ── */
.landing-page .device-phone {
    width: 230px;
    height: 460px; /* 1:2 ratio — mismo que .phone-mockup */
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px 10px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    margin: 0 auto;
}

/* Side power button */
.landing-page .device-phone::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 90px;
    width: 4px;
    height: 44px;
    background: #2a2a40;
    border-radius: 0 3px 3px 0;
}

/* Volume buttons */
.landing-page .device-phone::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 70px;
    width: 4px;
    height: 28px;
    background: #2a2a40;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 38px 0 #2a2a40;
}

.landing-page .device-phone__notch {
    width: 72px;
    height: 20px;
    background: #0d0d1a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.landing-page .device-phone__screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
    padding: 0.8rem 0.75rem 0.6rem;
}

/* ── Device: Laptop frame ── */
.landing-page .device-laptop {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.landing-page .device-laptop__lid {
    background: #1e1e2e;
    border-radius: 12px 12px 0 0;
    padding: 10px 10px 0;
}

.landing-page .device-laptop__topbar {
    background: #2d2d44;
    border-radius: 6px 6px 0 0;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landing-page .device-laptop__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .device-laptop__dot:nth-child(1) { background: #ff5f56; }
.landing-page .device-laptop__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .device-laptop__dot:nth-child(3) { background: #27c93f; }

.landing-page .device-laptop__url {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #aaa;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 2px 8px;
}

.landing-page .device-laptop__screen {
    background: #fff;
    overflow: hidden;
    max-height: 300px;
}

.landing-page .device-laptop__base {
    height: 12px;
    background: linear-gradient(to bottom, #2a2a40, #1a1a2e);
    border-radius: 0 0 6px 6px;
    margin: 0 -10px;
}

.landing-page .device-laptop__base::after {
    content: '';
    display: block;
    width: 35%;
    height: 10px;
    background: #141422;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* ── Catalog screen (phone — client side) ── */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.landing-page .sc-cat {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.4rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.1rem; }
.landing-page .sc-product-name { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.65rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.5rem; }
.landing-page .sc-product-price { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active { background: var(--secondary-color); }

.landing-page .sc-footer {
    margin-top: 0.75rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Kitchen screen (laptop — merchant side, light theme matching app) ── */
.landing-page .screen-kitchen {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sk-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-page .sk-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sk-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: #198754;
    font-weight: 600;
    background: rgba(25,135,84,0.1);
    padding: 2px 8px;
    border-radius: 999px;
}

.landing-page .sk-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #198754;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.landing-page .sk-page-icon { font-size: 0.85rem; }
.landing-page .sk-page-title { font-size: 0.8rem; font-weight: 700; color: #fff; }

.landing-page .sk-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
}

.landing-page .sk-col-header {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.5rem;
    background: #f8f9fa;
    border-bottom: 3px solid;
    border-left: 4px solid;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    border-radius: 4px 4px 0 0;
}

.landing-page .sk-col-header--nuevo { border-color: #ffc107; border-left-color: #ffc107; }
.landing-page .sk-col-header--proceso { border-color: #fd7e14; border-left-color: #fd7e14; }

.landing-page .sk-col-count {
    margin-left: auto;
    border-radius: 999px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-weight: 700;
}

.landing-page .sk-col-header--nuevo .sk-col-count { background: #ffc107; color: #333; }
.landing-page .sk-col-header--proceso .sk-col-count { background: #fd7e14; color: #fff; }

.landing-page .sk-order-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid #ffc107;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 0.35rem;
}

.landing-page .sk-order-card--proceso { border-left-color: #fd7e14; }

.landing-page .sk-card-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.landing-page .sk-dest-badge {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge--plancha { background: linear-gradient(135deg, #fd7e14, #e55c00); }

.landing-page .sk-time-badge { font-size: 0.58rem; color: #6c757d; margin-left: auto; }

.landing-page .sk-card-items { margin-bottom: 0.4rem; }
.landing-page .sk-card-item { font-size: 0.66rem; color: #495057; padding: 1px 0; }

.landing-page .sk-action-btn {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.28rem;
    font-size: 0.62rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-action-btn--start { background: rgba(255,193,7,0.15); color: #856404; border: 1px solid rgba(255,193,7,0.4); }
.landing-page .sk-action-btn--done { background: rgba(25,135,84,0.12);  color: #155724; border: 1px solid rgba(25,135,84,0.3); }

/* ── Payment screen (phone — client side) ── */
.landing-page .screen-payment { background: #fff; }

.landing-page .spay-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.5rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.45rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-methods { display: flex; gap: 0.5rem; margin-bottom: 0.65rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.68rem;
    color: #94a3b8;
}

/* ── Billing screen (laptop — merchant side, light theme matching app) ── */
.landing-page .screen-billing {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sb-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
}

.landing-page .sb-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sb-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.landing-page .sb-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    padding: 0.55rem;
}

.landing-page .sb-kpi-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-kpi-card--blue { border-left-color: #0d6efd; }
.landing-page .sb-kpi-card--green { border-left-color: #198754; }
.landing-page .sb-kpi-card--yellow { border-left-color: #ffc107; }

.landing-page .sb-kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.landing-page .sb-kpi-title { font-size: 0.6rem; color: #6c757d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.landing-page .sb-kpi-icon { font-size: 0.75rem; }

.landing-page .sb-kpi-value {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.landing-page .sb-kpi-card--blue   .sb-kpi-value { color: #0d6efd; }
.landing-page .sb-kpi-card--green  .sb-kpi-value { color: #198754; }
.landing-page .sb-kpi-card--yellow .sb-kpi-value { color: #856404; }

.landing-page .sb-kpi-sub { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-chart-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 4px solid #198754;
    border-radius: 6px;
    padding: 0.55rem;
    margin: 0 0.55rem 0.55rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-chart-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.45rem;
}

.landing-page .sb-chart { border-radius: 4px; padding: 0.4rem 0.4rem 0; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
    height: 70px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(25, 135, 84, 0.3);
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: #198754;
}

/* === flow.css === */

/* ── Flow diagram section ── */
.landing-page .flow-section {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .flow-section .section-label,
.landing-page .flow-section .section-title,
.landing-page .flow-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .flow-section .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .flow-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* Left/right nodes */
.landing-page .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Mini phone mockup inside flow */
.landing-page .flow-device--phone {
    width: 165px;   /* era 130px — más grande y proporcional */
    height: 330px;  /* ratio 1:2 */
    background: #1a1a2e;
    border-radius: 28px;
    padding: 10px 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}

.landing-page .flow-device--phone .flow-device__notch {
    width: 54px;
    height: 14px;
    background: #0d0d1a;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.landing-page .flow-device--phone .flow-device__screen {
    background: #fff;
    border-radius: 20px;
    padding: 0.65rem 0.5rem 0.45rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

/* Mini screen mockup (restaurant panel) */
.landing-page .flow-device--screen {
    width: 188px;
    background: #1e1e2e;
    border-radius: 10px 10px 3px 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.landing-page .flow-device__bar {
    background: #2d2d44;
    padding: 5px 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.landing-page .flow-device__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.landing-page .flow-device__dot:nth-child(1) { background: #ff5f56; }
.landing-page .flow-device__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .flow-device__dot:nth-child(3) { background: #27c93f; }

.landing-page .flow-device--screen .flow-device__screen {
    background: #f8f9fa;
    padding: 0.45rem;
}

/* Phone screen mini elements */
.landing-page .fp-header {
    font-size: 0.58rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 4px;
    padding: 3px 5px;
    margin-bottom: 0.15rem;
}

.landing-page .fp-item {
    font-size: 0.56rem;
    color: #64748b;
    background: #f8f9fa;
    border-radius: 3px;
    padding: 2px 4px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.landing-page .fp-pay {
    margin-top: auto;
    font-size: 0.58rem;
    font-weight: 700;
    background: #198754;
    color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    text-align: center;
}

/* Restaurant mini screen elements */
.landing-page .fs-col-head {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.landing-page .fs-order {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    padding: 0.35rem 0.4rem;
    margin-bottom: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
}

.landing-page .fs-dest-pill {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 999px;
}

.landing-page .fs-time {
    font-size: 0.54rem;
    color: #6c757d;
    margin-left: auto;
}

.landing-page .fs-item {
    width: 100%;
    font-size: 0.6rem;
    color: #495057;
}

.landing-page .fs-sepa {
    font-size: 0.58rem;
    font-weight: 600;
    color: #198754;
    background: rgba(25,135,84,0.08);
    border-radius: 3px;
    padding: 3px 5px;
    text-align: center;
}

/* Center connector + cloud */
.landing-page .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 180px;
}

.landing-page .flow-cloud {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(102,126,234,0.45);
    width: 100%;
}

.landing-page .flow-cloud__icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.landing-page .flow-cloud__name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.landing-page .flow-cloud__tags {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-page .flow-cloud__tags span {
    font-size: 0.68rem;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 2px 10px;
}

/* Animated connection arms */
.landing-page .flow-conn-arm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.landing-page .flow-conn-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .flow-conn-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    --connector-w: 400px; /* fallback; updated via JS ResizeObserver */
}

.landing-page .flow-conn-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-20px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    will-change: transform, opacity;
    animation: lp-flow-travel 2s linear infinite;
}

.landing-page .flow-conn-dot--right {
    animation: lp-flow-travel 2s linear infinite;
}

@keyframes lp-flow-travel {
    0%   { transform: translateY(-50%) translateX(-20px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-50%) translateX(calc(var(--connector-w) + 20px)); opacity: 0; }
}

/* Flow node labels */
.landing-page .flow-node__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.landing-page .flow-node__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.landing-page .flow-node__steps li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.landing-page .flow-node__steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}


/* === sections.css === */
/* How It Works — duplicated how-it-works rule removed, see L365 */

/* Mode Flexibility Banner */

.landing-page .screen-browser__bar {
    background: #f1f3f5;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #e0e0e0;
}

.landing-page .screen-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.landing-page .screen-browser__dot:nth-child(1) { background: #ff5f56; }
.landing-page .screen-browser__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .screen-browser__dot:nth-child(3) { background: #27c93f; }

.landing-page .screen-browser__url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: #888;
    background: #fff;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    border: 1px solid #e0e0e0;
}

.landing-page .screen-browser__body {
    padding: 1.2rem;
    min-height: 260px;
}

/* ── Catalog screen ── */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.landing-page .sc-cat {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.5rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.15rem; }
.landing-page .sc-product-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.72rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.6rem; }
.landing-page .sc-product-price { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active {
    background: var(--secondary-color);
}

.landing-page .sc-footer {
    margin-top: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ── Kitchen screen ── */
.landing-page .screen-kitchen {
    background: #0f172a;
    color: #fff;
}

.landing-page .sk-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.landing-page .sk-area { font-weight: 700; font-size: 0.95rem; }

.landing-page .sk-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4ade80;
}

.landing-page .sk-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-orders { display: flex; flex-direction: column; gap: 0.75rem; }

.landing-page .sk-order {
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid;
}

.landing-page .sk-order--new { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); }
.landing-page .sk-order--progress { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

.landing-page .sk-order-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.landing-page .sk-mesa { font-weight: 700; font-size: 0.88rem; }

.landing-page .sk-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-page .sk-badge--new { background: rgba(239,68,68,0.2); color: #f87171; }
.landing-page .sk-badge--progress { background: rgba(245,158,11,0.2); color: #fbbf24; }

.landing-page .sk-time { font-size: 0.72rem; color: #94a3b8; margin-left: auto; }

.landing-page .sk-items { margin-bottom: 0.65rem; }
.landing-page .sk-item { font-size: 0.8rem; color: #cbd5e1; padding: 0.15rem 0; }

.landing-page .sk-btn {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-btn--start { background: rgba(239,68,68,0.15); color: #f87171; }
.landing-page .sk-btn--done { background: rgba(74,222,128,0.15); color: #4ade80; }

/* ── Payment screen ── */
.landing-page .screen-payment {
    background: #fff;
}

.landing-page .spay-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.6rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.5rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.landing-page .spay-methods { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.55rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
}

/* ── Billing screen ── */
.landing-page .screen-billing {
    background: #0f172a;
    color: #fff;
}

.landing-page .sb-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.landing-page .sb-kpi {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.landing-page .sb-kpi--accent {
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.35);
}

.landing-page .sb-kpi-label { font-size: 0.68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.landing-page .sb-kpi-value { font-size: 1rem; font-weight: 700; color: #fff; }
.landing-page .sb-kpi-sub { font-size: 0.65rem; color: #64748b; }

.landing-page .sb-chart-label { font-size: 0.72rem; color: #64748b; margin-bottom: 0.5rem; }

.landing-page .sb-chart { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 0.75rem 0.75rem 0.4rem; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    height: 80px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.62rem; color: #64748b; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(99,102,241,0.45);
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: var(--primary-color);
}

/* How It Works — Modos de pago */
.landing-page .how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

/* ── Mode cards grid ── */
.landing-page .modes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .mode-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Colored header */
.landing-page .mode-card__header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-page .mode-card--prepago .mode-card__header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.landing-page .mode-card--postpago .mode-card__header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
}

.landing-page .mode-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-page .mode-badge {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.landing-page .mode-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.landing-page .mode-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.landing-page .mode-ideal {
    font-size: 0.82rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: rgba(255,255,255,0.92);
    margin-top: 0.25rem;
    width: fit-content;
}

/* Card body */
.landing-page .mode-card__body {
    background: var(--white);
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Vertical timeline steps */
.landing-page .mode-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.landing-page .mode-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.25rem;
}

.landing-page .mode-step:last-child {
    padding-bottom: 0;
}

/* Connector line between steps */
.landing-page .mode-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    bottom: 0;
    background: #f1f5f9;
}

.landing-page .mode-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.landing-page .mode-card--prepago .mode-step__num {
    background: #d1fae5;
    color: #059669;
}

.landing-page .mode-card--postpago .mode-step__num {
    background: #e0e7ff;
    color: #4f46e5;
}

.landing-page .mode-step__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.4rem;
}

.landing-page .mode-step__content strong {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.landing-page .mode-step__content span {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Benefit chips */
/* Mode flexibility banner */
.landing-page .mode-flexibility {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #6ee7b7;
    border-radius: 16px;
    padding: 1.5rem 2.25rem;
    margin-top: 2.5rem;
    text-align: center;
}

.landing-page .flexibility-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.landing-page .flexibility-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Features intro */
.landing-page .features-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Savings Hero Section */
/* ── Savings Hero ── */
.landing-page .savings-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .savings-intro {
    text-align: center;
    font-size: 1.1rem;
    margin: -0.5rem 0 2.5rem;
    opacity: 0.85;
}

/* Stats grid */
.landing-page .savings-visual {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-page .savings-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.landing-page .sv-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s;
}

.landing-page .sv-stat:hover { transform: translateY(-4px); }

.landing-page .sv-stat-icon { font-size: 1.5rem; }

.landing-page .sv-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.landing-page .sv-stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

/* Result card */
.landing-page .savings-result-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.landing-page .src-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.landing-page .src-row--cost strong { color: #ef4444; }
.landing-page .src-row--saving strong { color: var(--secondary-color); }
.landing-page .src-row--net { font-size: 1.05rem; font-weight: 600; }

.landing-page .src-net {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.landing-page .src-divider { height: 1px; background: var(--border-color); margin: 0.25rem 0; }

.landing-page .src-note {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.25rem;
    font-style: italic;
}

/* ── Benefits two-col (replaces 5 pillars) ── */
.landing-page .benefits-detailed {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .benefits-detailed .section-label,
.landing-page .benefits-detailed .section-title,
.landing-page .benefits-detailed .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .benefits-detailed .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .benefits-detailed .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .benefits-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .benefits-col {
    border-radius: 16px;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
}

.landing-page .bcol-head {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.landing-page .bcol-head--red { background: #fee2e2; color: #dc2626; }
.landing-page .bcol-head--green { background: #dcfce7; color: #16a34a; }

.landing-page .bcol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-page .bcol-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
}

.landing-page .benefits-col--out .bcol-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.landing-page .benefits-col--in .bcol-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ── Example cards (recomendaciones page) ── */
.landing-page .referral-examples {
    margin-bottom: 3rem;
}

.landing-page .referral-examples h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.landing-page .example-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.landing-page .example-card:hover {
    transform: translateY(-5px);
}

.landing-page .example-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.landing-page .example-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .example-card.highlight .example-number {
    color: var(--white);
}

.landing-page .example-card h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .example-card.highlight h5 {
    color: var(--white);
}


.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

/* Pricing */
.landing-page .pricing {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .pricing .section-label,
.landing-page .pricing .section-title,
.landing-page .pricing .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .pricing .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .pricing .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.landing-page .pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.landing-page .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.landing-page .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .badge.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-page .pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .price {
    margin-bottom: 2rem;
}

.landing-page .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.landing-page .period {
    color: var(--text-light);
    font-size: 1.25rem;
}

.landing-page .features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.landing-page .features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.landing-page .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.landing-page .pricing-card .btn {
    width: 100%;
    text-align: center;
}

.landing-page .pricing-subtitle {
    display: none; /* replaced by .section-subtitle */
}

.landing-page .plus {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.landing-page .pricing-explanation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.landing-page .pricing-explanation p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.landing-page .pricing-explanation .highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--secondary-color);
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.landing-page .pricing-benefits {
    margin-top: 4rem;
    text-align: center;
}

.landing-page .pricing-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .benefit {
    text-align: center;
    padding: 1.5rem;
}

.landing-page .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Security Section */
.landing-page .security-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .security-section .section-label,
.landing-page .security-section .section-title,
.landing-page .security-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .security-section .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .security-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.landing-page .security-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-page .security-card.highlight {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
}

.landing-page .security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.landing-page .security-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .security-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.landing-page .payment-flow {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.landing-page .payment-flow h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .flow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-page .flow-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.landing-page .flow-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-page .flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.landing-page .flow-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-page .transparency-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.landing-page .transparency-content h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.landing-page .transparency-content p {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* FAQ Section */
.landing-page .faq-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-page .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .faq-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}

.landing-page .faq-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    color: #fff;
}

.landing-page .faq-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-page .faq-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.landing-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}

.landing-page .faq-item.collapsed .faq-question {
    margin-bottom: 0;
}

.landing-page .faq-toggle {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.landing-page .faq-item:not(.collapsed) .faq-toggle {
    transform: rotate(45deg);
}

.landing-page .faq-item.collapsed .faq-answer {
    display: none;
}

.landing-page .faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .faq-icon [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.landing-page .faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.landing-page .faq-answer p {
    margin-bottom: 1rem;
}

.landing-page .faq-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

.landing-page .process-step {
    flex: 1;
    min-width: 150px;
}

.landing-page .step-label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.landing-page .process-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.landing-page .process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.landing-page .faq-note {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.landing-page .faq-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.landing-page .faq-highlight h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
}

.landing-page .faq-highlight p {
    margin: 0.5rem 0;
}

.landing-page .faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.landing-page .faq-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.landing-page .faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.landing-page .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.landing-page .requirement-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .requirement-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.landing-page .requirement-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.landing-page .requirement-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .requirement-card h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.landing-page .requirement-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.landing-page .cancellation-timeline {
    margin: 2rem 0;
}

.landing-page .timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.landing-page .timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.landing-page .timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.landing-page .timeline-content p {
    margin: 0;
    color: var(--text-medium);
}

.landing-page .payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.landing-page .payment-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.landing-page .faq-future {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
}

.landing-page .update-examples {
    margin: 2rem 0;
}

.landing-page .update-examples h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.landing-page .update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.landing-page .update-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .update-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.landing-page .update-type {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.landing-page .update-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.landing-page .faq-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
}

.landing-page .faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.landing-page .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.landing-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Referral Section */
.landing-page .referral-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-page .referral-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .referral-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.landing-page .referral-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.landing-page .referral-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.landing-page .referral-amount {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.landing-page .amount-big {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.landing-page .amount-label {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.landing-page .referral-description h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .referral-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.landing-page .referral-reward-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-page .referral-reward-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.landing-page .referral-reward-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.landing-page .highlight-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

.landing-page .referral-steps {
    margin-bottom: 3rem;
}

.landing-page .referral-steps h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .referral-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.landing-page .referral-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.landing-page .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .referral-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .referral-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.landing-page .referral-benefits {
    margin-bottom: 3rem;
}

.landing-page .referral-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.landing-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .benefit-check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-page .benefit-item span {
    line-height: 1.6;
}

.landing-page .referral-cta {
    text-align: center;
}
.landing-page .referral-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.landing-page .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Contact */
.landing-page .contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .contact .section-label,
.landing-page .contact .section-title,
.landing-page .contact .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .contact .section-title {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .contact .section-subtitle,
.landing-page .contact-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.landing-page .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.landing-page .form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.landing-page .contact-form input,
.landing-page .contact-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-dark);
    width: 100%;
}

.landing-page .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.landing-page .contact-form input:focus,
.landing-page .contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.landing-page .contact-form button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Footer */
.landing-page .footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.landing-page .footer-section h3,
.landing-page .footer-section h4 {
    margin-bottom: 1rem;
}

.landing-page .footer-section ul {
    list-style: none;
}

.landing-page .footer-section li {
    margin-bottom: 0.5rem;
}

.landing-page .footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.landing-page .footer-section a:hover {
    color: var(--white);
}

.landing-page .footer-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.landing-page .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* === enhancements.css === */
/* =========================================================
   OrderToMe — Enhancement styles
   Adds: professional logo, Lucide icon sizing, testimonials,
         comparison table, sticky CTA, form trust row + WhatsApp
   ========================================================= */

/* ── Logo with icon ── */
.landing-page .logo h1 {
    font-size: 0; /* size is handled by .logo-text span */
    line-height: 1;
}

.landing-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.landing-page .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

/* ── Lucide icon base defaults ── */
.landing-page [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

/* ── Feature tag pills ── */
.landing-page .feature-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .feature-tag-pill [data-lucide] {
    width: 15px;
    height: 15px;
}

/* ── Mode card icons & badges ── */
.landing-page .mode-card__icon {
    display: flex;
    align-items: center;
}

.landing-page .mode-card__icon [data-lucide] {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.95);
}

.landing-page .mode-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.landing-page .mode-badge [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ── Flexibility badge ── */
.landing-page .flexibility-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .flexibility-badge [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Flow node titles ── */
.landing-page .flow-node__title [data-lucide] {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 2px;
}

/* ── Benefits col heads ── */
.landing-page .bcol-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .bcol-head [data-lucide] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing-page .bcol-head--red [data-lucide] {
    color: #ef4444;
    stroke: #ef4444;
}

.landing-page .bcol-head--green [data-lucide] {
    color: #10b981;
    stroke: #10b981;
}

/* ── Security icons ── */
.landing-page .security-icon [data-lucide] {
    width: 38px;
    height: 38px;
}

/* ── Savings stat icons ── */
.landing-page .sv-stat-icon {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-page .sv-stat-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9);
}

/* ── Testimonials section ── */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    flex: 1;
    position: relative;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.65em;
    color: var(--primary-light);
    margin-right: 0.1em;
    font-family: Georgia, serif;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── Comparison table ── */
.landing-page .comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .comparison-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.landing-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.93rem;
    min-width: 600px;
}

.landing-page .comparison-table thead th {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: #f8fafc;
    color: var(--text-medium);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.landing-page .comparison-table thead th:first-child {
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-th--ours {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.landing-page .comparison-table tbody td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    vertical-align: middle;
    text-align: center;
}

.landing-page .comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-page .comparison-table tbody tr:hover td {
    background: #fafbfc;
}

.landing-page .comparison-td--ours {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.landing-page .cmp-yes {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #10b981;
    font-weight: 600;
}

.landing-page .cmp-yes [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    flex-shrink: 0;
}

.landing-page .cmp-no {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #94a3b8;
}

.landing-page .cmp-no [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #94a3b8;
    flex-shrink: 0;
}

.landing-page .cmp-partial {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f59e0b;
}

.landing-page .cmp-partial [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

/* ── Sticky CTA bar ── */
.landing-page .sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 997;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .sticky-cta.visible {
    bottom: 0;
}

.landing-page .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-page .sticky-cta__text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.landing-page .sticky-cta__text strong {
    color: #fff;
}

.landing-page .sticky-cta__btn {
    white-space: nowrap;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    flex-shrink: 0;
}

/* ── Contact form trust row ── */
.landing-page .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.landing-page .form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.landing-page .form-trust-item [data-lucide] {
    width: 14px;
    height: 14px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* ── WhatsApp alternative ── */
.landing-page .contact-alternative {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .contact-alternative__sep {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .contact-alternative__sep::before,
.landing-page .contact-alternative__sep::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--border-color);
    display: block;
}

.landing-page .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.landing-page .btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-1px);
}

/* ── Responsive for new sections ── */
@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-page .logo-text {
        font-size: 1.25rem;
    }

    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .comparison-table {
        font-size: 0.82rem;
    }

    .landing-page .comparison-table thead th,
.landing-page .comparison-table tbody td {
        padding: 0.75rem 0.85rem;
    }

    .landing-page .sticky-cta__inner {
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    .landing-page .sticky-cta__text {
        font-size: 0.82rem;
    }

    .landing-page .form-trust {
        gap: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NEW IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Trust bar (below hero) ── */
.landing-page .trust-bar {
    padding: 0.9rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.landing-page .trust-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.landing-page .trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.landing-page .trust-bar__item [data-lucide] {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* ── Contact form feedback (success / error) ── */
.landing-page .contact-feedback {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.landing-page .contact-feedback--success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.landing-page .contact-feedback--error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── GDPR consent checkbox ── */
.landing-page .gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    cursor: pointer;
    text-align: left;
    padding: 0.25rem 0;
}

.landing-page .gdpr-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    cursor: pointer;
}

.landing-page .gdpr-label a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Contact submit loading state ── */
.landing-page #contactSubmit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* ── Contact submit success state ── */
.landing-page #contactSubmit.btn--success {
    background: #059669 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
    transform: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ── Testimonial avatar color variants ── */
.landing-page .testimonial-avatar--1 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.landing-page .testimonial-avatar--2 {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}
.landing-page .testimonial-avatar--3 {
    background: linear-gradient(135deg, #059669, #047857);
}

/* ── Savings hero: text-white versions (remove inline styles) ── */
.landing-page .savings-label {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.landing-page .savings-title {
    color: #fff;
}

/* ── Benefit icon: Lucide support ── */
.landing-page .benefit-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.landing-page .benefit-icon [data-lucide] {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* ── Flow cloud icon: Lucide support ── */
.landing-page .flow-cloud__icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke: #fff;
}

/* ── Transparency box icon: Lucide support ── */
.landing-page .transparency-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* ── Kitchen screen: page icon Lucide support ── */
.landing-page .sk-page-icon [data-lucide] {
    width: 0.85rem;
    height: 0.85rem;
    color: #fff;
    stroke: #fff;
    vertical-align: middle;
}

/* ── Billing KPI icon: Lucide support ── */
.landing-page .sb-kpi-icon [data-lucide] {
    width: 0.75rem;
    height: 0.75rem;
    color: #6c757d;
    stroke: #6c757d;
    vertical-align: middle;
}

/* ── Payment secure badge: Lucide lock icon ── */
.landing-page .spay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.landing-page .spay-secure [data-lucide] {
    width: 0.68rem;
    height: 0.68rem;
    color: #94a3b8;
    stroke: #94a3b8;
    flex-shrink: 0;
}

/* ── hero-badge: clean (no emoji) ── */
.landing-page .hero-badge {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .landing-page .trust-bar__items {
        gap: 1.25rem;
    }

    .landing-page .trust-bar__item {
        font-size: 0.78rem;
    }
}

/* === responsive.css === */
/* Responsive */
@media (max-width: 768px) {
    .landing-page .transparency-box {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .landing-page .transparency-icon {
        font-size: 2.5rem;
    }
    
    .landing-page .faq-hero h2 {
        font-size: 2rem;
    }
    
    .landing-page .faq-subtitle {
        font-size: 1rem;
    }
    
    .landing-page .faq-item {
        padding: 1.5rem;
    }
    
    .landing-page .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .landing-page .faq-icon {
        font-size: 2rem;
    }
    
    .landing-page .faq-question h3 {
        font-size: 1.25rem;
    }
    
    .landing-page .faq-process {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .landing-page .process-arrow {
        transform: rotate(90deg);
    }
    
    .landing-page .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .update-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .faq-cta h2 {
        font-size: 1.75rem;
    }
    
    .landing-page .cta-buttons {
        flex-direction: column;
    }
    
    .landing-page .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-page .hero-content h2 {
        font-size: 2rem;
    }

    .landing-page .hero-cta {
        flex-direction: column;
    }

    .landing-page .nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .landing-page .logo h1 {
        font-size: 1.25rem;
    }

    .landing-page .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .landing-page .nav-menu.active {
        left: 0;
    }

    .landing-page .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .landing-page .nav-menu a {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Show mobile-only items in mobile */
    .landing-page .mobile-only {
        display: list-item !important;
    }

    /* Hide nav-right completely on mobile - items are now in nav-menu */
    .landing-page .nav-right {
        display: none !important;
    }

    /* Hamburger menu button */
    .landing-page .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }

    .landing-page .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay when menu is open */
    .landing-page .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .landing-page .menu-overlay.active {
        display: block;
    }

    .landing-page .pricing-card.featured {
        transform: scale(1);
    }

    .landing-page .modes-container {
        grid-template-columns: 1fr;
    }

    .landing-page .mode-card__header {
        padding: 1.5rem 1.5rem 1.25rem;
    }

    .landing-page .mode-card__body {
        padding: 1.5rem;
    }

    .landing-page .mode-flexibility {
        padding: 1.25rem 1.5rem;
    }

    .landing-page .flexibility-text {
        font-size: 0.95rem;
    }

    .landing-page .security-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .flow-card {
        flex-direction: column;
    }

    .landing-page .flow-arrow {
        transform: rotate(90deg);
    }

    .landing-page .savings-breakdown {
        gap: 0.75rem;
    }

    .landing-page .savings-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-page .benefits-two-col {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .landing-page .referral-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-page .referral-amount {
        padding: 1.5rem 2rem;
    }

    .landing-page .amount-big {
        font-size: 3rem;
    }

    .landing-page .referral-steps-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .referral-card {
        padding: 2rem 1.5rem;
    }

    .landing-page .examples-grid {
        grid-template-columns: 1fr;
    }

    /* Feature showcase responsive */
    .landing-page .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .landing-page .feature-showcase--reverse .feature-showcase__text,
.landing-page .feature-showcase--reverse .feature-showcase__screen {
        order: unset;
    }

    .landing-page .sb-kpi-row {
        grid-template-columns: 1fr;
    }

    /* Flow diagram responsive */
    .landing-page .flow-diagram {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-page .flow-connector {
        flex-direction: row;
        min-width: unset;
        width: 100%;
    }

    .landing-page .flow-conn-arm {
        flex: 1;
    }

    .landing-page .flow-conn-arm--in .flow-conn-label,
.landing-page .flow-conn-arm--out .flow-conn-label {
        font-size: 0.62rem;
    }

    .landing-page .device-phone {
        width: 190px;
        height: 380px; /* 1:2 ratio */
    }

    .landing-page .device-laptop__screen {
        max-height: 240px;
    }
}

/* === Testimonials Section === */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .testimonials .section-label,
.landing-page .testimonials .section-title,
.landing-page .testimonials .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .testimonials .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .testimonials .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-page .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 3px;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
    flex-shrink: 0;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 2px;
}

.landing-page .testimonial-quote::after {
    content: '\201D';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-left: 2px;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: auto;
    }
}


/* === features.css === */
/* Features Section */
.landing-page .features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .features .section-label,
.landing-page .features .section-title,
.landing-page .features .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .features .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .features .section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;  /* feature-showcase padding handles the gap */
}

.landing-page .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* ── Section label pill ── */
.landing-page .section-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* ── Feature showcase (alternating) ── */
.landing-page .feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.landing-page .feature-showcase:last-child {
    border-bottom: none;
}

.landing-page .feature-showcase--reverse .feature-showcase__text {
    order: 2;
}

.landing-page .feature-showcase--reverse .feature-showcase__screen {
    order: 1;
}

.landing-page .feature-tag-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-page .feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.landing-page .feature-check-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.landing-page .feature-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ── Payment method logo badges ── */
.landing-page .pay-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.landing-page .pay-logos--pricing {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 1rem;
    gap: 0.4rem;
}

.landing-page .pay-logos__label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .pay-logo {
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    display: block;
    flex-shrink: 0;
}


/* === devices.css === */
/* ── Browser frame wrapper ── */
/* ── Device: Phone frame ── */
.landing-page .device-phone {
    width: 230px;
    height: 460px; /* 1:2 ratio — mismo que .phone-mockup */
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px 10px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    margin: 0 auto;
}

/* Side power button */
.landing-page .device-phone::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 90px;
    width: 4px;
    height: 44px;
    background: #2a2a40;
    border-radius: 0 3px 3px 0;
}

/* Volume buttons */
.landing-page .device-phone::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 70px;
    width: 4px;
    height: 28px;
    background: #2a2a40;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 38px 0 #2a2a40;
}

.landing-page .device-phone__notch {
    width: 72px;
    height: 20px;
    background: #0d0d1a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.landing-page .device-phone__screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
    padding: 0.8rem 0.75rem 0.6rem;
}

/* ── Device: Laptop frame ── */
.landing-page .device-laptop {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.landing-page .device-laptop__lid {
    background: #1e1e2e;
    border-radius: 12px 12px 0 0;
    padding: 10px 10px 0;
}

.landing-page .device-laptop__topbar {
    background: #2d2d44;
    border-radius: 6px 6px 0 0;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landing-page .device-laptop__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .device-laptop__dot:nth-child(1) { background: #ff5f56; }
.landing-page .device-laptop__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .device-laptop__dot:nth-child(3) { background: #27c93f; }

.landing-page .device-laptop__url {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #aaa;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 2px 8px;
}

.landing-page .device-laptop__screen {
    background: #fff;
    overflow: hidden;
    max-height: 300px;
}

.landing-page .device-laptop__base {
    height: 12px;
    background: linear-gradient(to bottom, #2a2a40, #1a1a2e);
    border-radius: 0 0 6px 6px;
    margin: 0 -10px;
}

.landing-page .device-laptop__base::after {
    content: '';
    display: block;
    width: 35%;
    height: 10px;
    background: #141422;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* ── Catalog screen (phone — client side) ── */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.landing-page .sc-cat {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.4rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.1rem; }
.landing-page .sc-product-name { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.65rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.5rem; }
.landing-page .sc-product-price { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active { background: var(--secondary-color); }

.landing-page .sc-footer {
    margin-top: 0.75rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ── Kitchen screen (laptop — merchant side, light theme matching app) ── */
.landing-page .screen-kitchen {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sk-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-page .sk-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sk-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: #198754;
    font-weight: 600;
    background: rgba(25,135,84,0.1);
    padding: 2px 8px;
    border-radius: 999px;
}

.landing-page .sk-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #198754;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.landing-page .sk-page-icon { font-size: 0.85rem; }
.landing-page .sk-page-title { font-size: 0.8rem; font-weight: 700; color: #fff; }

.landing-page .sk-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
}

.landing-page .sk-col-header {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.5rem;
    background: #f8f9fa;
    border-bottom: 3px solid;
    border-left: 4px solid;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    border-radius: 4px 4px 0 0;
}

.landing-page .sk-col-header--nuevo { border-color: #ffc107; border-left-color: #ffc107; }
.landing-page .sk-col-header--proceso { border-color: #fd7e14; border-left-color: #fd7e14; }

.landing-page .sk-col-count {
    margin-left: auto;
    border-radius: 999px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-weight: 700;
}

.landing-page .sk-col-header--nuevo .sk-col-count { background: #ffc107; color: #333; }
.landing-page .sk-col-header--proceso .sk-col-count { background: #fd7e14; color: #fff; }

.landing-page .sk-order-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid #ffc107;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 0.35rem;
}

.landing-page .sk-order-card--proceso { border-left-color: #fd7e14; }

.landing-page .sk-card-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.landing-page .sk-dest-badge {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge--plancha { background: linear-gradient(135deg, #fd7e14, #e55c00); }

.landing-page .sk-time-badge { font-size: 0.58rem; color: #6c757d; margin-left: auto; }

.landing-page .sk-card-items { margin-bottom: 0.4rem; }
.landing-page .sk-card-item { font-size: 0.66rem; color: #495057; padding: 1px 0; }

.landing-page .sk-action-btn {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.28rem;
    font-size: 0.62rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-action-btn--start { background: rgba(255,193,7,0.15); color: #856404; border: 1px solid rgba(255,193,7,0.4); }
.landing-page .sk-action-btn--done { background: rgba(25,135,84,0.12);  color: #155724; border: 1px solid rgba(25,135,84,0.3); }

/* ── Payment screen (phone — client side) ── */
.landing-page .screen-payment { background: #fff; }

.landing-page .spay-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.5rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.45rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-methods { display: flex; gap: 0.5rem; margin-bottom: 0.65rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.68rem;
    color: #94a3b8;
}

/* ── Billing screen (laptop — merchant side, light theme matching app) ── */
.landing-page .screen-billing {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sb-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
}

.landing-page .sb-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sb-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.landing-page .sb-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    padding: 0.55rem;
}

.landing-page .sb-kpi-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-kpi-card--blue { border-left-color: #0d6efd; }
.landing-page .sb-kpi-card--green { border-left-color: #198754; }
.landing-page .sb-kpi-card--yellow { border-left-color: #ffc107; }

.landing-page .sb-kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.landing-page .sb-kpi-title { font-size: 0.6rem; color: #6c757d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.landing-page .sb-kpi-icon { font-size: 0.75rem; }

.landing-page .sb-kpi-value {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.landing-page .sb-kpi-card--blue   .sb-kpi-value { color: #0d6efd; }
.landing-page .sb-kpi-card--green  .sb-kpi-value { color: #198754; }
.landing-page .sb-kpi-card--yellow .sb-kpi-value { color: #856404; }

.landing-page .sb-kpi-sub { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-chart-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 4px solid #198754;
    border-radius: 6px;
    padding: 0.55rem;
    margin: 0 0.55rem 0.55rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-chart-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.45rem;
}

.landing-page .sb-chart { border-radius: 4px; padding: 0.4rem 0.4rem 0; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
    height: 70px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(25, 135, 84, 0.3);
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: #198754;
}

/* === flow.css === */

/* ── Flow diagram section ── */
.landing-page .flow-section {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .flow-section .section-label,
.landing-page .flow-section .section-title,
.landing-page .flow-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .flow-section .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .flow-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* Left/right nodes */
.landing-page .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Mini phone mockup inside flow */
.landing-page .flow-device--phone {
    width: 165px;   /* era 130px — más grande y proporcional */
    height: 330px;  /* ratio 1:2 */
    background: #1a1a2e;
    border-radius: 28px;
    padding: 10px 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}

.landing-page .flow-device--phone .flow-device__notch {
    width: 54px;
    height: 14px;
    background: #0d0d1a;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.landing-page .flow-device--phone .flow-device__screen {
    background: #fff;
    border-radius: 20px;
    padding: 0.65rem 0.5rem 0.45rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

/* Mini screen mockup (restaurant panel) */
.landing-page .flow-device--screen {
    width: 188px;
    background: #1e1e2e;
    border-radius: 10px 10px 3px 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.landing-page .flow-device__bar {
    background: #2d2d44;
    padding: 5px 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.landing-page .flow-device__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.landing-page .flow-device__dot:nth-child(1) { background: #ff5f56; }
.landing-page .flow-device__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .flow-device__dot:nth-child(3) { background: #27c93f; }

.landing-page .flow-device--screen .flow-device__screen {
    background: #f8f9fa;
    padding: 0.45rem;
}

/* Phone screen mini elements */
.landing-page .fp-header {
    font-size: 0.58rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 4px;
    padding: 3px 5px;
    margin-bottom: 0.15rem;
}

.landing-page .fp-item {
    font-size: 0.56rem;
    color: #64748b;
    background: #f8f9fa;
    border-radius: 3px;
    padding: 2px 4px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.landing-page .fp-pay {
    margin-top: auto;
    font-size: 0.58rem;
    font-weight: 700;
    background: #198754;
    color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    text-align: center;
}

/* Restaurant mini screen elements */
.landing-page .fs-col-head {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.landing-page .fs-order {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    padding: 0.35rem 0.4rem;
    margin-bottom: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
}

.landing-page .fs-dest-pill {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 999px;
}

.landing-page .fs-time {
    font-size: 0.54rem;
    color: #6c757d;
    margin-left: auto;
}

.landing-page .fs-item {
    width: 100%;
    font-size: 0.6rem;
    color: #495057;
}

.landing-page .fs-sepa {
    font-size: 0.58rem;
    font-weight: 600;
    color: #198754;
    background: rgba(25,135,84,0.08);
    border-radius: 3px;
    padding: 3px 5px;
    text-align: center;
}

/* Center connector + cloud */
.landing-page .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 180px;
}

.landing-page .flow-cloud {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(102,126,234,0.45);
    width: 100%;
}

.landing-page .flow-cloud__icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.landing-page .flow-cloud__name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.landing-page .flow-cloud__tags {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-page .flow-cloud__tags span {
    font-size: 0.68rem;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 2px 10px;
}

/* Animated connection arms */
.landing-page .flow-conn-arm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.landing-page .flow-conn-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .flow-conn-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    --connector-w: 400px; /* fallback; updated via JS ResizeObserver */
}

.landing-page .flow-conn-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-20px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    will-change: transform, opacity;
    animation: lp-flow-travel 2s linear infinite;
}

.landing-page .flow-conn-dot--right {
    animation: lp-flow-travel 2s linear infinite;
}

@keyframes lp-flow-travel {
    0%   { transform: translateY(-50%) translateX(-20px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-50%) translateX(calc(var(--connector-w) + 20px)); opacity: 0; }
}

/* Flow node labels */
.landing-page .flow-node__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.landing-page .flow-node__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.landing-page .flow-node__steps li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.landing-page .flow-node__steps li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}


/* === sections.css === */
/* How It Works — duplicated how-it-works rule removed, see L365 */

/* Mode Flexibility Banner */

.landing-page .screen-browser__bar {
    background: #f1f3f5;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #e0e0e0;
}

.landing-page .screen-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.landing-page .screen-browser__dot:nth-child(1) { background: #ff5f56; }
.landing-page .screen-browser__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .screen-browser__dot:nth-child(3) { background: #27c93f; }

.landing-page .screen-browser__url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: #888;
    background: #fff;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    border: 1px solid #e0e0e0;
}

.landing-page .screen-browser__body {
    padding: 1.2rem;
    min-height: 260px;
}

/* ── Catalog screen ── */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.landing-page .sc-cat {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.5rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.15rem; }
.landing-page .sc-product-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.72rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.6rem; }
.landing-page .sc-product-price { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active {
    background: var(--secondary-color);
}

.landing-page .sc-footer {
    margin-top: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
}

/* ── Kitchen screen ── */
.landing-page .screen-kitchen {
    background: #0f172a;
    color: #fff;
}

.landing-page .sk-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.landing-page .sk-area { font-weight: 700; font-size: 0.95rem; }

.landing-page .sk-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4ade80;
}

.landing-page .sk-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-orders { display: flex; flex-direction: column; gap: 0.75rem; }

.landing-page .sk-order {
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid;
}

.landing-page .sk-order--new { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); }
.landing-page .sk-order--progress { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

.landing-page .sk-order-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.landing-page .sk-mesa { font-weight: 700; font-size: 0.88rem; }

.landing-page .sk-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-page .sk-badge--new { background: rgba(239,68,68,0.2); color: #f87171; }
.landing-page .sk-badge--progress { background: rgba(245,158,11,0.2); color: #fbbf24; }

.landing-page .sk-time { font-size: 0.72rem; color: #94a3b8; margin-left: auto; }

.landing-page .sk-items { margin-bottom: 0.65rem; }
.landing-page .sk-item { font-size: 0.8rem; color: #cbd5e1; padding: 0.15rem 0; }

.landing-page .sk-btn {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-btn--start { background: rgba(239,68,68,0.15); color: #f87171; }
.landing-page .sk-btn--done { background: rgba(74,222,128,0.15); color: #4ade80; }

/* ── Payment screen ── */
.landing-page .screen-payment {
    background: #fff;
}

.landing-page .spay-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.6rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.5rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.landing-page .spay-methods { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.55rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
}

/* ── Billing screen ── */
.landing-page .screen-billing {
    background: #0f172a;
    color: #fff;
}

.landing-page .sb-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.landing-page .sb-kpi {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.landing-page .sb-kpi--accent {
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.35);
}

.landing-page .sb-kpi-label { font-size: 0.68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.landing-page .sb-kpi-value { font-size: 1rem; font-weight: 700; color: #fff; }
.landing-page .sb-kpi-sub { font-size: 0.65rem; color: #64748b; }

.landing-page .sb-chart-label { font-size: 0.72rem; color: #64748b; margin-bottom: 0.5rem; }

.landing-page .sb-chart { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 0.75rem 0.75rem 0.4rem; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    height: 80px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.62rem; color: #64748b; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(99,102,241,0.45);
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: var(--primary-color);
}

/* How It Works — Modos de pago */
.landing-page .how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

/* ── Mode cards grid ── */
.landing-page .modes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .mode-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Colored header */
.landing-page .mode-card__header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-page .mode-card--prepago .mode-card__header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.landing-page .mode-card--postpago .mode-card__header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
}

.landing-page .mode-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-page .mode-badge {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.landing-page .mode-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.landing-page .mode-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.landing-page .mode-ideal {
    font-size: 0.82rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: rgba(255,255,255,0.92);
    margin-top: 0.25rem;
    width: fit-content;
}

/* Card body */
.landing-page .mode-card__body {
    background: var(--white);
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Vertical timeline steps */
.landing-page .mode-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.landing-page .mode-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.25rem;
}

.landing-page .mode-step:last-child {
    padding-bottom: 0;
}

/* Connector line between steps */
.landing-page .mode-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    bottom: 0;
    background: #f1f5f9;
}

.landing-page .mode-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.landing-page .mode-card--prepago .mode-step__num {
    background: #d1fae5;
    color: #059669;
}

.landing-page .mode-card--postpago .mode-step__num {
    background: #e0e7ff;
    color: #4f46e5;
}

.landing-page .mode-step__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.4rem;
}

.landing-page .mode-step__content strong {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.landing-page .mode-step__content span {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Benefit chips */
/* Mode flexibility banner */
.landing-page .mode-flexibility {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #6ee7b7;
    border-radius: 16px;
    padding: 1.5rem 2.25rem;
    margin-top: 2.5rem;
    text-align: center;
}

.landing-page .flexibility-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.landing-page .flexibility-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Features intro */
.landing-page .features-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Savings Hero Section */
/* ── Savings Hero ── */
.landing-page .savings-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .savings-intro {
    text-align: center;
    font-size: 1.1rem;
    margin: -0.5rem 0 2.5rem;
    opacity: 0.85;
}

/* Stats grid */
.landing-page .savings-visual {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-page .savings-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.landing-page .sv-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s;
}

.landing-page .sv-stat:hover { transform: translateY(-4px); }

.landing-page .sv-stat-icon { font-size: 1.5rem; }

.landing-page .sv-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.landing-page .sv-stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

/* Result card */
.landing-page .savings-result-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.landing-page .src-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.landing-page .src-row--cost strong { color: #ef4444; }
.landing-page .src-row--saving strong { color: var(--secondary-color); }
.landing-page .src-row--net { font-size: 1.05rem; font-weight: 600; }

.landing-page .src-net {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.landing-page .src-divider { height: 1px; background: var(--border-color); margin: 0.25rem 0; }

.landing-page .src-note {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.25rem;
    font-style: italic;
}

/* ── Benefits two-col (replaces 5 pillars) ── */
.landing-page .benefits-detailed {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .benefits-detailed .section-label,
.landing-page .benefits-detailed .section-title,
.landing-page .benefits-detailed .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .benefits-detailed .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .benefits-detailed .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .benefits-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .benefits-col {
    border-radius: 16px;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
}

.landing-page .bcol-head {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.landing-page .bcol-head--red { background: #fee2e2; color: #dc2626; }
.landing-page .bcol-head--green { background: #dcfce7; color: #16a34a; }

.landing-page .bcol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-page .bcol-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
}

.landing-page .benefits-col--out .bcol-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.landing-page .benefits-col--in .bcol-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* ── Example cards (recomendaciones page) ── */
.landing-page .referral-examples {
    margin-bottom: 3rem;
}

.landing-page .referral-examples h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.landing-page .example-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.landing-page .example-card:hover {
    transform: translateY(-5px);
}

.landing-page .example-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.landing-page .example-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .example-card.highlight .example-number {
    color: var(--white);
}

.landing-page .example-card h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .example-card.highlight h5 {
    color: var(--white);
}


.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

/* Pricing */
.landing-page .pricing {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .pricing .section-label,
.landing-page .pricing .section-title,
.landing-page .pricing .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .pricing .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .pricing .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.landing-page .pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.landing-page .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.landing-page .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .badge.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-page .pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .price {
    margin-bottom: 2rem;
}

.landing-page .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.landing-page .period {
    color: var(--text-light);
    font-size: 1.25rem;
}

.landing-page .features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.landing-page .features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.landing-page .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.landing-page .pricing-card .btn {
    width: 100%;
    text-align: center;
}

.landing-page .pricing-subtitle {
    display: none; /* replaced by .section-subtitle */
}

.landing-page .plus {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.landing-page .pricing-explanation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.landing-page .pricing-explanation p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.landing-page .pricing-explanation .highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--secondary-color);
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.landing-page .pricing-benefits {
    margin-top: 4rem;
    text-align: center;
}

.landing-page .pricing-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .benefit {
    text-align: center;
    padding: 1.5rem;
}

.landing-page .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Security Section */
.landing-page .security-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .security-section .section-label,
.landing-page .security-section .section-title,
.landing-page .security-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .security-section .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .security-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.landing-page .security-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-page .security-card.highlight {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
}

.landing-page .security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.landing-page .security-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .security-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.landing-page .payment-flow {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.landing-page .payment-flow h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .flow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-page .flow-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.landing-page .flow-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-page .flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.landing-page .flow-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-page .transparency-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.landing-page .transparency-content h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.landing-page .transparency-content p {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* FAQ Section */
.landing-page .faq-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-page .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .faq-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}

.landing-page .faq-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    color: #fff;
}

.landing-page .faq-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-page .faq-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.landing-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}

.landing-page .faq-item.collapsed .faq-question {
    margin-bottom: 0;
}

.landing-page .faq-toggle {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.landing-page .faq-item:not(.collapsed) .faq-toggle {
    transform: rotate(45deg);
}

.landing-page .faq-item.collapsed .faq-answer {
    display: none;
}

.landing-page .faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .faq-icon [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.landing-page .faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.landing-page .faq-answer p {
    margin-bottom: 1rem;
}

.landing-page .faq-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

.landing-page .process-step {
    flex: 1;
    min-width: 150px;
}

.landing-page .step-label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.landing-page .process-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.landing-page .process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.landing-page .faq-note {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.landing-page .faq-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.landing-page .faq-highlight h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
}

.landing-page .faq-highlight p {
    margin: 0.5rem 0;
}

.landing-page .faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.landing-page .faq-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.landing-page .faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.landing-page .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.landing-page .requirement-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .requirement-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.landing-page .requirement-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.landing-page .requirement-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .requirement-card h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.landing-page .requirement-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.landing-page .cancellation-timeline {
    margin: 2rem 0;
}

.landing-page .timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.landing-page .timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.landing-page .timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.landing-page .timeline-content p {
    margin: 0;
    color: var(--text-medium);
}

.landing-page .payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.landing-page .payment-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.landing-page .faq-future {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
}

.landing-page .update-examples {
    margin: 2rem 0;
}

.landing-page .update-examples h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.landing-page .update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.landing-page .update-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .update-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.landing-page .update-type {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.landing-page .update-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.landing-page .faq-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
}

.landing-page .faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.landing-page .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.landing-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Referral Section */
.landing-page .referral-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-page .referral-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .referral-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.landing-page .referral-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.landing-page .referral-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.landing-page .referral-amount {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.landing-page .amount-big {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.landing-page .amount-label {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.landing-page .referral-description h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .referral-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.landing-page .referral-reward-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-page .referral-reward-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.landing-page .referral-reward-list li::before {
    content: '🎁';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.landing-page .highlight-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

.landing-page .referral-steps {
    margin-bottom: 3rem;
}

.landing-page .referral-steps h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .referral-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.landing-page .referral-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.landing-page .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .referral-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .referral-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.landing-page .referral-benefits {
    margin-bottom: 3rem;
}

.landing-page .referral-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.landing-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .benefit-check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-page .benefit-item span {
    line-height: 1.6;
}

.landing-page .referral-cta {
    text-align: center;
}
.landing-page .referral-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.landing-page .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Contact */
.landing-page .contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .contact .section-label,
.landing-page .contact .section-title,
.landing-page .contact .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .contact .section-title {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .contact .section-subtitle,
.landing-page .contact-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.landing-page .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.landing-page .form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.landing-page .contact-form input,
.landing-page .contact-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-dark);
    width: 100%;
}

.landing-page .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.landing-page .contact-form input:focus,
.landing-page .contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.landing-page .contact-form button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Footer */
.landing-page .footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.landing-page .footer-section h3,
.landing-page .footer-section h4 {
    margin-bottom: 1rem;
}

.landing-page .footer-section ul {
    list-style: none;
}

.landing-page .footer-section li {
    margin-bottom: 0.5rem;
}

.landing-page .footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.landing-page .footer-section a:hover {
    color: var(--white);
}

.landing-page .footer-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.landing-page .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* === enhancements.css === */
/* =========================================================
   OrderToMe — Enhancement styles
   Adds: professional logo, Lucide icon sizing, testimonials,
         comparison table, sticky CTA, form trust row + WhatsApp
   ========================================================= */

/* ── Logo with icon ── */
.landing-page .logo h1 {
    font-size: 0; /* size is handled by .logo-text span */
    line-height: 1;
}

.landing-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.landing-page .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

/* ── Lucide icon base defaults ── */
.landing-page [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

/* ── Feature tag pills ── */
.landing-page .feature-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .feature-tag-pill [data-lucide] {
    width: 15px;
    height: 15px;
}

/* ── Mode card icons & badges ── */
.landing-page .mode-card__icon {
    display: flex;
    align-items: center;
}

.landing-page .mode-card__icon [data-lucide] {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.95);
}

.landing-page .mode-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.landing-page .mode-badge [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* ── Flexibility badge ── */
.landing-page .flexibility-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .flexibility-badge [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Flow node titles ── */
.landing-page .flow-node__title [data-lucide] {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 2px;
}

/* ── Benefits col heads ── */
.landing-page .bcol-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .bcol-head [data-lucide] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing-page .bcol-head--red [data-lucide] {
    color: #ef4444;
    stroke: #ef4444;
}

.landing-page .bcol-head--green [data-lucide] {
    color: #10b981;
    stroke: #10b981;
}

/* ── Security icons ── */
.landing-page .security-icon [data-lucide] {
    width: 38px;
    height: 38px;
}

/* ── Savings stat icons ── */
.landing-page .sv-stat-icon {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-page .sv-stat-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9);
}

/* ── Testimonials section ── */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    flex: 1;
    position: relative;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.65em;
    color: var(--primary-light);
    margin-right: 0.1em;
    font-family: Georgia, serif;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* ── Comparison table ── */
.landing-page .comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .comparison-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.landing-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.93rem;
    min-width: 600px;
}

.landing-page .comparison-table thead th {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: #f8fafc;
    color: var(--text-medium);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.landing-page .comparison-table thead th:first-child {
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-th--ours {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.landing-page .comparison-table tbody td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    vertical-align: middle;
    text-align: center;
}

.landing-page .comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-page .comparison-table tbody tr:hover td {
    background: #fafbfc;
}

.landing-page .comparison-td--ours {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.landing-page .cmp-yes {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #10b981;
    font-weight: 600;
}

.landing-page .cmp-yes [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    flex-shrink: 0;
}

.landing-page .cmp-no {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #94a3b8;
}

.landing-page .cmp-no [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #94a3b8;
    flex-shrink: 0;
}

.landing-page .cmp-partial {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f59e0b;
}

.landing-page .cmp-partial [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

/* ── Sticky CTA bar ── */
.landing-page .sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 997;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .sticky-cta.visible {
    bottom: 0;
}

.landing-page .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-page .sticky-cta__text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.landing-page .sticky-cta__text strong {
    color: #fff;
}

.landing-page .sticky-cta__btn {
    white-space: nowrap;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    flex-shrink: 0;
}

/* ── Contact form trust row ── */
.landing-page .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.landing-page .form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.landing-page .form-trust-item [data-lucide] {
    width: 14px;
    height: 14px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* ── WhatsApp alternative ── */
.landing-page .contact-alternative {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .contact-alternative__sep {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .contact-alternative__sep::before,
.landing-page .contact-alternative__sep::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--border-color);
    display: block;
}

.landing-page .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.landing-page .btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-1px);
}

/* ── Responsive for new sections ── */
@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-page .logo-text {
        font-size: 1.25rem;
    }

    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .comparison-table {
        font-size: 0.82rem;
    }

    .landing-page .comparison-table thead th,
.landing-page .comparison-table tbody td {
        padding: 0.75rem 0.85rem;
    }

    .landing-page .sticky-cta__inner {
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    .landing-page .sticky-cta__text {
        font-size: 0.82rem;
    }

    .landing-page .form-trust {
        gap: 0.85rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   NEW IMPROVEMENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── Trust bar (below hero) ── */
.landing-page .trust-bar {
    padding: 0.9rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.landing-page .trust-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.landing-page .trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.landing-page .trust-bar__item [data-lucide] {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* ── Contact form feedback (success / error) ── */
.landing-page .contact-feedback {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.landing-page .contact-feedback--success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.landing-page .contact-feedback--error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ── GDPR consent checkbox ── */
.landing-page .gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    cursor: pointer;
    text-align: left;
    padding: 0.25rem 0;
}

.landing-page .gdpr-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    cursor: pointer;
}

.landing-page .gdpr-label a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ── Contact submit loading state ── */
.landing-page #contactSubmit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* ── Contact submit success state ── */
.landing-page #contactSubmit.btn--success {
    background: #059669 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
    transform: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

/* ── Testimonial avatar color variants ── */
.landing-page .testimonial-avatar--1 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.landing-page .testimonial-avatar--2 {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}
.landing-page .testimonial-avatar--3 {
    background: linear-gradient(135deg, #059669, #047857);
}

/* ── Savings hero: text-white versions (remove inline styles) ── */
.landing-page .savings-label {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.landing-page .savings-title {
    color: #fff;
}

/* ── Benefit icon: Lucide support ── */
.landing-page .benefit-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.landing-page .benefit-icon [data-lucide] {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* ── Flow cloud icon: Lucide support ── */
.landing-page .flow-cloud__icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke: #fff;
}

/* ── Transparency box icon: Lucide support ── */
.landing-page .transparency-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* ── Kitchen screen: page icon Lucide support ── */
.landing-page .sk-page-icon [data-lucide] {
    width: 0.85rem;
    height: 0.85rem;
    color: #fff;
    stroke: #fff;
    vertical-align: middle;
}

/* ── Billing KPI icon: Lucide support ── */
.landing-page .sb-kpi-icon [data-lucide] {
    width: 0.75rem;
    height: 0.75rem;
    color: #6c757d;
    stroke: #6c757d;
    vertical-align: middle;
}

/* ── Payment secure badge: Lucide lock icon ── */
.landing-page .spay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.landing-page .spay-secure [data-lucide] {
    width: 0.68rem;
    height: 0.68rem;
    color: #94a3b8;
    stroke: #94a3b8;
    flex-shrink: 0;
}

/* ── hero-badge: clean (no emoji) ── */
.landing-page .hero-badge {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .landing-page .trust-bar__items {
        gap: 1.25rem;
    }

    .landing-page .trust-bar__item {
        font-size: 0.78rem;
    }
}

/* === responsive.css === */
/* Responsive */
@media (max-width: 768px) {
    .landing-page .transparency-box {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .landing-page .transparency-icon {
        font-size: 2.5rem;
    }
    
    .landing-page .faq-hero h2 {
        font-size: 2rem;
    }
    
    .landing-page .faq-subtitle {
        font-size: 1rem;
    }
    
    .landing-page .faq-item {
        padding: 1.5rem;
    }
    
    .landing-page .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .landing-page .faq-icon {
        font-size: 2rem;
    }
    
    .landing-page .faq-question h3 {
        font-size: 1.25rem;
    }
    
    .landing-page .faq-process {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .landing-page .process-arrow {
        transform: rotate(90deg);
    }
    
    .landing-page .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .update-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .faq-cta h2 {
        font-size: 1.75rem;
    }
    
    .landing-page .cta-buttons {
        flex-direction: column;
    }
    
    .landing-page .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-page .hero-content h2 {
        font-size: 2rem;
    }

    .landing-page .hero-cta {
        flex-direction: column;
    }

    .landing-page .nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .landing-page .logo h1 {
        font-size: 1.25rem;
    }

    .landing-page .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .landing-page .nav-menu.active {
        left: 0;
    }

    .landing-page .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .landing-page .nav-menu a {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Show mobile-only items in mobile */
    .landing-page .mobile-only {
        display: list-item !important;
    }

    /* Hide nav-right completely on mobile - items are now in nav-menu */
    .landing-page .nav-right {
        display: none !important;
    }

    /* Hamburger menu button */
    .landing-page .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }

    .landing-page .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay when menu is open */
    .landing-page .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .landing-page .menu-overlay.active {
        display: block;
    }

    .landing-page .pricing-card.featured {
        transform: scale(1);
    }

    .landing-page .modes-container {
        grid-template-columns: 1fr;
    }

    .landing-page .mode-card__header {
        padding: 1.5rem 1.5rem 1.25rem;
    }

    .landing-page .mode-card__body {
        padding: 1.5rem;
    }

    .landing-page .mode-flexibility {
        padding: 1.25rem 1.5rem;
    }

    .landing-page .flexibility-text {
        font-size: 0.95rem;
    }

    .landing-page .security-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .flow-card {
        flex-direction: column;
    }

    .landing-page .flow-arrow {
        transform: rotate(90deg);
    }

    .landing-page .savings-breakdown {
        gap: 0.75rem;
    }

    .landing-page .savings-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-page .benefits-two-col {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .landing-page .referral-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-page .referral-amount {
        padding: 1.5rem 2rem;
    }

    .landing-page .amount-big {
        font-size: 3rem;
    }

    .landing-page .referral-steps-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .referral-card {
        padding: 2rem 1.5rem;
    }

    .landing-page .examples-grid {
        grid-template-columns: 1fr;
    }

    /* Feature showcase responsive */
    .landing-page .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .landing-page .feature-showcase--reverse .feature-showcase__text,
.landing-page .feature-showcase--reverse .feature-showcase__screen {
        order: unset;
    }

    .landing-page .sb-kpi-row {
        grid-template-columns: 1fr;
    }

    /* Flow diagram responsive */
    .landing-page .flow-diagram {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-page .flow-connector {
        flex-direction: row;
        min-width: unset;
        width: 100%;
    }

    .landing-page .flow-conn-arm {
        flex: 1;
    }

    .landing-page .flow-conn-arm--in .flow-conn-label,
.landing-page .flow-conn-arm--out .flow-conn-label {
        font-size: 0.62rem;
    }

    .landing-page .device-phone {
        width: 190px;
        height: 380px; /* 1:2 ratio */
    }

    .landing-page .device-laptop__screen {
        max-height: 240px;
    }
}

/* === Testimonials Section === */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .testimonials .section-label,
.landing-page .testimonials .section-title,
.landing-page .testimonials .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .testimonials .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .testimonials .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-page .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 3px;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
    flex-shrink: 0;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 2px;
}

.landing-page .testimonial-quote::after {
    content: '\201D';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-left: 2px;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: auto;
    }
}

/* === features.css === */
/* Features Section */
.landing-page .features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .features .section-label,
.landing-page .features .section-title,
.landing-page .features .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .features .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .features .section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;  /* feature-showcase padding handles the gap */
}

.landing-page .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* â”€â”€ Section label pill â”€â”€ */
.landing-page .section-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* â”€â”€ Feature showcase (alternating) â”€â”€ */
.landing-page .feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.landing-page .feature-showcase:last-child {
    border-bottom: none;
}

.landing-page .feature-showcase--reverse .feature-showcase__text {
    order: 2;
}

.landing-page .feature-showcase--reverse .feature-showcase__screen {
    order: 1;
}

.landing-page .feature-tag-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-page .feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.landing-page .feature-check-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.landing-page .feature-check-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* â”€â”€ Payment method logo badges â”€â”€ */
.landing-page .pay-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.landing-page .pay-logos--pricing {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 1rem;
    gap: 0.4rem;
}

.landing-page .pay-logos__label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .pay-logo {
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    display: block;
    flex-shrink: 0;
}


/* === devices.css === */
/* â”€â”€ Browser frame wrapper â”€â”€ */
/* â”€â”€ Device: Phone frame â”€â”€ */
.landing-page .device-phone {
    width: 230px;
    height: 460px; /* 1:2 ratio â€” mismo que .phone-mockup */
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px 10px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    margin: 0 auto;
}

/* Side power button */
.landing-page .device-phone::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 90px;
    width: 4px;
    height: 44px;
    background: #2a2a40;
    border-radius: 0 3px 3px 0;
}

/* Volume buttons */
.landing-page .device-phone::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 70px;
    width: 4px;
    height: 28px;
    background: #2a2a40;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 38px 0 #2a2a40;
}

.landing-page .device-phone__notch {
    width: 72px;
    height: 20px;
    background: #0d0d1a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.landing-page .device-phone__screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
    padding: 0.8rem 0.75rem 0.6rem;
}

/* â”€â”€ Device: Laptop frame â”€â”€ */
.landing-page .device-laptop {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.landing-page .device-laptop__lid {
    background: #1e1e2e;
    border-radius: 12px 12px 0 0;
    padding: 10px 10px 0;
}

.landing-page .device-laptop__topbar {
    background: #2d2d44;
    border-radius: 6px 6px 0 0;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landing-page .device-laptop__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .device-laptop__dot:nth-child(1) { background: #ff5f56; }
.landing-page .device-laptop__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .device-laptop__dot:nth-child(3) { background: #27c93f; }

.landing-page .device-laptop__url {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #aaa;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 2px 8px;
}

.landing-page .device-laptop__screen {
    background: #fff;
    overflow: hidden;
    max-height: 300px;
}

.landing-page .device-laptop__base {
    height: 12px;
    background: linear-gradient(to bottom, #2a2a40, #1a1a2e);
    border-radius: 0 0 6px 6px;
    margin: 0 -10px;
}

.landing-page .device-laptop__base::after {
    content: '';
    display: block;
    width: 35%;
    height: 10px;
    background: #141422;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* â”€â”€ Catalog screen (phone â€” client side) â”€â”€ */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.landing-page .sc-cat {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.4rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.1rem; }
.landing-page .sc-product-name { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.65rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.5rem; }
.landing-page .sc-product-price { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active { background: var(--secondary-color); }

.landing-page .sc-footer {
    margin-top: 0.75rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* â”€â”€ Kitchen screen (laptop â€” merchant side, light theme matching app) â”€â”€ */
.landing-page .screen-kitchen {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sk-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-page .sk-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sk-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: #198754;
    font-weight: 600;
    background: rgba(25,135,84,0.1);
    padding: 2px 8px;
    border-radius: 999px;
}

.landing-page .sk-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #198754;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.landing-page .sk-page-icon { font-size: 0.85rem; }
.landing-page .sk-page-title { font-size: 0.8rem; font-weight: 700; color: #fff; }

.landing-page .sk-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
}

.landing-page .sk-col-header {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.5rem;
    background: #f8f9fa;
    border-bottom: 3px solid;
    border-left: 4px solid;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    border-radius: 4px 4px 0 0;
}

.landing-page .sk-col-header--nuevo { border-color: #ffc107; border-left-color: #ffc107; }
.landing-page .sk-col-header--proceso { border-color: #fd7e14; border-left-color: #fd7e14; }

.landing-page .sk-col-count {
    margin-left: auto;
    border-radius: 999px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-weight: 700;
}

.landing-page .sk-col-header--nuevo .sk-col-count { background: #ffc107; color: #333; }
.landing-page .sk-col-header--proceso .sk-col-count { background: #fd7e14; color: #fff; }

.landing-page .sk-order-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid #ffc107;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 0.35rem;
}

.landing-page .sk-order-card--proceso { border-left-color: #fd7e14; }

.landing-page .sk-card-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.landing-page .sk-dest-badge {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge--plancha { background: linear-gradient(135deg, #fd7e14, #e55c00); }

.landing-page .sk-time-badge { font-size: 0.58rem; color: #6c757d; margin-left: auto; }

.landing-page .sk-card-items { margin-bottom: 0.4rem; }
.landing-page .sk-card-item { font-size: 0.66rem; color: #495057; padding: 1px 0; }

.landing-page .sk-action-btn {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.28rem;
    font-size: 0.62rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-action-btn--start { background: rgba(255,193,7,0.15); color: #856404; border: 1px solid rgba(255,193,7,0.4); }
.landing-page .sk-action-btn--done { background: rgba(25,135,84,0.12);  color: #155724; border: 1px solid rgba(25,135,84,0.3); }

/* â”€â”€ Payment screen (phone â€” client side) â”€â”€ */
.landing-page .screen-payment { background: #fff; }

.landing-page .spay-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.5rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.45rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-methods { display: flex; gap: 0.5rem; margin-bottom: 0.65rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.68rem;
    color: #94a3b8;
}

/* â”€â”€ Billing screen (laptop â€” merchant side, light theme matching app) â”€â”€ */
.landing-page .screen-billing {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sb-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
}

.landing-page .sb-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sb-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.landing-page .sb-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    padding: 0.55rem;
}

.landing-page .sb-kpi-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-kpi-card--blue { border-left-color: #0d6efd; }
.landing-page .sb-kpi-card--green { border-left-color: #198754; }
.landing-page .sb-kpi-card--yellow { border-left-color: #ffc107; }

.landing-page .sb-kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.landing-page .sb-kpi-title { font-size: 0.6rem; color: #6c757d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.landing-page .sb-kpi-icon { font-size: 0.75rem; }

.landing-page .sb-kpi-value {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.landing-page .sb-kpi-card--blue   .sb-kpi-value { color: #0d6efd; }
.landing-page .sb-kpi-card--green  .sb-kpi-value { color: #198754; }
.landing-page .sb-kpi-card--yellow .sb-kpi-value { color: #856404; }

.landing-page .sb-kpi-sub { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-chart-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 4px solid #198754;
    border-radius: 6px;
    padding: 0.55rem;
    margin: 0 0.55rem 0.55rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-chart-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.45rem;
}

.landing-page .sb-chart { border-radius: 4px; padding: 0.4rem 0.4rem 0; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
    height: 70px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(25, 135, 84, 0.3);
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: #198754;
}

/* === flow.css === */

/* â”€â”€ Flow diagram section â”€â”€ */
.landing-page .flow-section {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .flow-section .section-label,
.landing-page .flow-section .section-title,
.landing-page .flow-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .flow-section .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .flow-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* Left/right nodes */
.landing-page .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Mini phone mockup inside flow */
.landing-page .flow-device--phone {
    width: 165px;   /* era 130px â€” mÃ¡s grande y proporcional */
    height: 330px;  /* ratio 1:2 */
    background: #1a1a2e;
    border-radius: 28px;
    padding: 10px 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}

.landing-page .flow-device--phone .flow-device__notch {
    width: 54px;
    height: 14px;
    background: #0d0d1a;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.landing-page .flow-device--phone .flow-device__screen {
    background: #fff;
    border-radius: 20px;
    padding: 0.65rem 0.5rem 0.45rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

/* Mini screen mockup (restaurant panel) */
.landing-page .flow-device--screen {
    width: 188px;
    background: #1e1e2e;
    border-radius: 10px 10px 3px 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.landing-page .flow-device__bar {
    background: #2d2d44;
    padding: 5px 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.landing-page .flow-device__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.landing-page .flow-device__dot:nth-child(1) { background: #ff5f56; }
.landing-page .flow-device__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .flow-device__dot:nth-child(3) { background: #27c93f; }

.landing-page .flow-device--screen .flow-device__screen {
    background: #f8f9fa;
    padding: 0.45rem;
}

/* Phone screen mini elements */
.landing-page .fp-header {
    font-size: 0.58rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 4px;
    padding: 3px 5px;
    margin-bottom: 0.15rem;
}

.landing-page .fp-item {
    font-size: 0.56rem;
    color: #64748b;
    background: #f8f9fa;
    border-radius: 3px;
    padding: 2px 4px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.landing-page .fp-pay {
    margin-top: auto;
    font-size: 0.58rem;
    font-weight: 700;
    background: #198754;
    color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    text-align: center;
}

/* Restaurant mini screen elements */
.landing-page .fs-col-head {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.landing-page .fs-order {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    padding: 0.35rem 0.4rem;
    margin-bottom: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
}

.landing-page .fs-dest-pill {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 999px;
}

.landing-page .fs-time {
    font-size: 0.54rem;
    color: #6c757d;
    margin-left: auto;
}

.landing-page .fs-item {
    width: 100%;
    font-size: 0.6rem;
    color: #495057;
}

.landing-page .fs-sepa {
    font-size: 0.58rem;
    font-weight: 600;
    color: #198754;
    background: rgba(25,135,84,0.08);
    border-radius: 3px;
    padding: 3px 5px;
    text-align: center;
}

/* Center connector + cloud */
.landing-page .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 180px;
}

.landing-page .flow-cloud {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(102,126,234,0.45);
    width: 100%;
}

.landing-page .flow-cloud__icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.landing-page .flow-cloud__name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.landing-page .flow-cloud__tags {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-page .flow-cloud__tags span {
    font-size: 0.68rem;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 2px 10px;
}

/* Animated connection arms */
.landing-page .flow-conn-arm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.landing-page .flow-conn-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .flow-conn-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    --connector-w: 400px; /* fallback; updated via JS ResizeObserver */
}

.landing-page .flow-conn-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-20px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    will-change: transform, opacity;
    animation: lp-flow-travel 2s linear infinite;
}

.landing-page .flow-conn-dot--right {
    animation: lp-flow-travel 2s linear infinite;
}

@keyframes lp-flow-travel {
    0%   { transform: translateY(-50%) translateX(-20px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-50%) translateX(calc(var(--connector-w) + 20px)); opacity: 0; }
}

/* Flow node labels */
.landing-page .flow-node__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.landing-page .flow-node__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.landing-page .flow-node__steps li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.landing-page .flow-node__steps li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}


/* === sections.css === */
/* How It Works â€” duplicated how-it-works rule removed, see L365 */

/* Mode Flexibility Banner */

.landing-page .screen-browser__bar {
    background: #f1f3f5;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #e0e0e0;
}

.landing-page .screen-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.landing-page .screen-browser__dot:nth-child(1) { background: #ff5f56; }
.landing-page .screen-browser__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .screen-browser__dot:nth-child(3) { background: #27c93f; }

.landing-page .screen-browser__url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: #888;
    background: #fff;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    border: 1px solid #e0e0e0;
}

.landing-page .screen-browser__body {
    padding: 1.2rem;
    min-height: 260px;
}

/* â”€â”€ Catalog screen â”€â”€ */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.landing-page .sc-cat {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.5rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.15rem; }
.landing-page .sc-product-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.72rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.6rem; }
.landing-page .sc-product-price { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active {
    background: var(--secondary-color);
}

.landing-page .sc-footer {
    margin-top: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
}

/* â”€â”€ Kitchen screen â”€â”€ */
.landing-page .screen-kitchen {
    background: #0f172a;
    color: #fff;
}

.landing-page .sk-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.landing-page .sk-area { font-weight: 700; font-size: 0.95rem; }

.landing-page .sk-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4ade80;
}

.landing-page .sk-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-orders { display: flex; flex-direction: column; gap: 0.75rem; }

.landing-page .sk-order {
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid;
}

.landing-page .sk-order--new { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); }
.landing-page .sk-order--progress { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

.landing-page .sk-order-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.landing-page .sk-mesa { font-weight: 700; font-size: 0.88rem; }

.landing-page .sk-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-page .sk-badge--new { background: rgba(239,68,68,0.2); color: #f87171; }
.landing-page .sk-badge--progress { background: rgba(245,158,11,0.2); color: #fbbf24; }

.landing-page .sk-time { font-size: 0.72rem; color: #94a3b8; margin-left: auto; }

.landing-page .sk-items { margin-bottom: 0.65rem; }
.landing-page .sk-item { font-size: 0.8rem; color: #cbd5e1; padding: 0.15rem 0; }

.landing-page .sk-btn {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-btn--start { background: rgba(239,68,68,0.15); color: #f87171; }
.landing-page .sk-btn--done { background: rgba(74,222,128,0.15); color: #4ade80; }

/* â”€â”€ Payment screen â”€â”€ */
.landing-page .screen-payment {
    background: #fff;
}

.landing-page .spay-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.6rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.5rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.landing-page .spay-methods { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.55rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
}

/* â”€â”€ Billing screen â”€â”€ */
.landing-page .screen-billing {
    background: #0f172a;
    color: #fff;
}

.landing-page .sb-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.landing-page .sb-kpi {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.landing-page .sb-kpi--accent {
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.35);
}

.landing-page .sb-kpi-label { font-size: 0.68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.landing-page .sb-kpi-value { font-size: 1rem; font-weight: 700; color: #fff; }
.landing-page .sb-kpi-sub { font-size: 0.65rem; color: #64748b; }

.landing-page .sb-chart-label { font-size: 0.72rem; color: #64748b; margin-bottom: 0.5rem; }

.landing-page .sb-chart { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 0.75rem 0.75rem 0.4rem; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    height: 80px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.62rem; color: #64748b; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(99,102,241,0.45);
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: var(--primary-color);
}

/* How It Works â€” Modos de pago */
.landing-page .how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

/* â”€â”€ Mode cards grid â”€â”€ */
.landing-page .modes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .mode-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Colored header */
.landing-page .mode-card__header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-page .mode-card--prepago .mode-card__header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.landing-page .mode-card--postpago .mode-card__header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
}

.landing-page .mode-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-page .mode-badge {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.landing-page .mode-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.landing-page .mode-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.landing-page .mode-ideal {
    font-size: 0.82rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: rgba(255,255,255,0.92);
    margin-top: 0.25rem;
    width: fit-content;
}

/* Card body */
.landing-page .mode-card__body {
    background: var(--white);
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Vertical timeline steps */
.landing-page .mode-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.landing-page .mode-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.25rem;
}

.landing-page .mode-step:last-child {
    padding-bottom: 0;
}

/* Connector line between steps */
.landing-page .mode-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    bottom: 0;
    background: #f1f5f9;
}

.landing-page .mode-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.landing-page .mode-card--prepago .mode-step__num {
    background: #d1fae5;
    color: #059669;
}

.landing-page .mode-card--postpago .mode-step__num {
    background: #e0e7ff;
    color: #4f46e5;
}

.landing-page .mode-step__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.4rem;
}

.landing-page .mode-step__content strong {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.landing-page .mode-step__content span {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Benefit chips */
/* Mode flexibility banner */
.landing-page .mode-flexibility {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #6ee7b7;
    border-radius: 16px;
    padding: 1.5rem 2.25rem;
    margin-top: 2.5rem;
    text-align: center;
}

.landing-page .flexibility-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.landing-page .flexibility-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Features intro */
.landing-page .features-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Savings Hero Section */
/* â”€â”€ Savings Hero â”€â”€ */
.landing-page .savings-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .savings-intro {
    text-align: center;
    font-size: 1.1rem;
    margin: -0.5rem 0 2.5rem;
    opacity: 0.85;
}

/* Stats grid */
.landing-page .savings-visual {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-page .savings-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.landing-page .sv-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s;
}

.landing-page .sv-stat:hover { transform: translateY(-4px); }

.landing-page .sv-stat-icon { font-size: 1.5rem; }

.landing-page .sv-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.landing-page .sv-stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

/* Result card */
.landing-page .savings-result-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.landing-page .src-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.landing-page .src-row--cost strong { color: #ef4444; }
.landing-page .src-row--saving strong { color: var(--secondary-color); }
.landing-page .src-row--net { font-size: 1.05rem; font-weight: 600; }

.landing-page .src-net {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.landing-page .src-divider { height: 1px; background: var(--border-color); margin: 0.25rem 0; }

.landing-page .src-note {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.25rem;
    font-style: italic;
}

/* â”€â”€ Benefits two-col (replaces 5 pillars) â”€â”€ */
.landing-page .benefits-detailed {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .benefits-detailed .section-label,
.landing-page .benefits-detailed .section-title,
.landing-page .benefits-detailed .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .benefits-detailed .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .benefits-detailed .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .benefits-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .benefits-col {
    border-radius: 16px;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
}

.landing-page .bcol-head {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.landing-page .bcol-head--red { background: #fee2e2; color: #dc2626; }
.landing-page .bcol-head--green { background: #dcfce7; color: #16a34a; }

.landing-page .bcol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-page .bcol-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
}

.landing-page .benefits-col--out .bcol-list li::before {
    content: 'âœ—';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.landing-page .benefits-col--in .bcol-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* â”€â”€ Example cards (recomendaciones page) â”€â”€ */
.landing-page .referral-examples {
    margin-bottom: 3rem;
}

.landing-page .referral-examples h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.landing-page .example-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.landing-page .example-card:hover {
    transform: translateY(-5px);
}

.landing-page .example-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.landing-page .example-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .example-card.highlight .example-number {
    color: var(--white);
}

.landing-page .example-card h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .example-card.highlight h5 {
    color: var(--white);
}


.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

/* Pricing */
.landing-page .pricing {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .pricing .section-label,
.landing-page .pricing .section-title,
.landing-page .pricing .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .pricing .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .pricing .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.landing-page .pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.landing-page .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.landing-page .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .badge.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-page .pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .price {
    margin-bottom: 2rem;
}

.landing-page .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.landing-page .period {
    color: var(--text-light);
    font-size: 1.25rem;
}

.landing-page .features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.landing-page .features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.landing-page .features-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.landing-page .pricing-card .btn {
    width: 100%;
    text-align: center;
}

.landing-page .pricing-subtitle {
    display: none; /* replaced by .section-subtitle */
}

.landing-page .plus {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.landing-page .pricing-explanation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.landing-page .pricing-explanation p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.landing-page .pricing-explanation .highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--secondary-color);
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.landing-page .pricing-benefits {
    margin-top: 4rem;
    text-align: center;
}

.landing-page .pricing-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .benefit {
    text-align: center;
    padding: 1.5rem;
}

.landing-page .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Security Section */
.landing-page .security-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .security-section .section-label,
.landing-page .security-section .section-title,
.landing-page .security-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .security-section .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .security-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.landing-page .security-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-page .security-card.highlight {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
}

.landing-page .security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.landing-page .security-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .security-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.landing-page .payment-flow {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.landing-page .payment-flow h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .flow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-page .flow-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.landing-page .flow-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-page .flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.landing-page .flow-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-page .transparency-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.landing-page .transparency-content h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.landing-page .transparency-content p {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* FAQ Section */
.landing-page .faq-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-page .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .faq-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}

.landing-page .faq-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    color: #fff;
}

.landing-page .faq-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-page .faq-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.landing-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}

.landing-page .faq-item.collapsed .faq-question {
    margin-bottom: 0;
}

.landing-page .faq-toggle {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.landing-page .faq-item:not(.collapsed) .faq-toggle {
    transform: rotate(45deg);
}

.landing-page .faq-item.collapsed .faq-answer {
    display: none;
}

.landing-page .faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .faq-icon [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.landing-page .faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.landing-page .faq-answer p {
    margin-bottom: 1rem;
}

.landing-page .faq-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

.landing-page .process-step {
    flex: 1;
    min-width: 150px;
}

.landing-page .step-label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.landing-page .process-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.landing-page .process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.landing-page .faq-note {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.landing-page .faq-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.landing-page .faq-highlight h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
}

.landing-page .faq-highlight p {
    margin: 0.5rem 0;
}

.landing-page .faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.landing-page .faq-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.landing-page .faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.landing-page .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.landing-page .requirement-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .requirement-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.landing-page .requirement-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.landing-page .requirement-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .requirement-card h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.landing-page .requirement-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.landing-page .cancellation-timeline {
    margin: 2rem 0;
}

.landing-page .timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.landing-page .timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.landing-page .timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.landing-page .timeline-content p {
    margin: 0;
    color: var(--text-medium);
}

.landing-page .payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.landing-page .payment-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.landing-page .faq-future {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
}

.landing-page .update-examples {
    margin: 2rem 0;
}

.landing-page .update-examples h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.landing-page .update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.landing-page .update-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .update-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.landing-page .update-type {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.landing-page .update-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.landing-page .faq-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
}

.landing-page .faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.landing-page .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.landing-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Referral Section */
.landing-page .referral-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-page .referral-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .referral-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.landing-page .referral-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.landing-page .referral-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.landing-page .referral-amount {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.landing-page .amount-big {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.landing-page .amount-label {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.landing-page .referral-description h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .referral-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.landing-page .referral-reward-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-page .referral-reward-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.landing-page .referral-reward-list li::before {
    content: 'ðŸŽ';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.landing-page .highlight-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

.landing-page .referral-steps {
    margin-bottom: 3rem;
}

.landing-page .referral-steps h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .referral-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.landing-page .referral-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.landing-page .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .referral-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .referral-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.landing-page .referral-benefits {
    margin-bottom: 3rem;
}

.landing-page .referral-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.landing-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .benefit-check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-page .benefit-item span {
    line-height: 1.6;
}

.landing-page .referral-cta {
    text-align: center;
}
.landing-page .referral-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.landing-page .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Contact */
.landing-page .contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .contact .section-label,
.landing-page .contact .section-title,
.landing-page .contact .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .contact .section-title {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .contact .section-subtitle,
.landing-page .contact-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.landing-page .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.landing-page .form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.landing-page .contact-form input,
.landing-page .contact-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-dark);
    width: 100%;
}

.landing-page .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.landing-page .contact-form input:focus,
.landing-page .contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.landing-page .contact-form button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Footer */
.landing-page .footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.landing-page .footer-section h3,
.landing-page .footer-section h4 {
    margin-bottom: 1rem;
}

.landing-page .footer-section ul {
    list-style: none;
}

.landing-page .footer-section li {
    margin-bottom: 0.5rem;
}

.landing-page .footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.landing-page .footer-section a:hover {
    color: var(--white);
}

.landing-page .footer-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.landing-page .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* === enhancements.css === */
/* =========================================================
   OrderToMe â€” Enhancement styles
   Adds: professional logo, Lucide icon sizing, testimonials,
         comparison table, sticky CTA, form trust row + WhatsApp
   ========================================================= */

/* â”€â”€ Logo with icon â”€â”€ */
.landing-page .logo h1 {
    font-size: 0; /* size is handled by .logo-text span */
    line-height: 1;
}

.landing-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.landing-page .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

/* â”€â”€ Lucide icon base defaults â”€â”€ */
.landing-page [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

/* â”€â”€ Feature tag pills â”€â”€ */
.landing-page .feature-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .feature-tag-pill [data-lucide] {
    width: 15px;
    height: 15px;
}

/* â”€â”€ Mode card icons & badges â”€â”€ */
.landing-page .mode-card__icon {
    display: flex;
    align-items: center;
}

.landing-page .mode-card__icon [data-lucide] {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.95);
}

.landing-page .mode-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.landing-page .mode-badge [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* â”€â”€ Flexibility badge â”€â”€ */
.landing-page .flexibility-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .flexibility-badge [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* â”€â”€ Flow node titles â”€â”€ */
.landing-page .flow-node__title [data-lucide] {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 2px;
}

/* â”€â”€ Benefits col heads â”€â”€ */
.landing-page .bcol-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .bcol-head [data-lucide] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing-page .bcol-head--red [data-lucide] {
    color: #ef4444;
    stroke: #ef4444;
}

.landing-page .bcol-head--green [data-lucide] {
    color: #10b981;
    stroke: #10b981;
}

/* â”€â”€ Security icons â”€â”€ */
.landing-page .security-icon [data-lucide] {
    width: 38px;
    height: 38px;
}

/* â”€â”€ Savings stat icons â”€â”€ */
.landing-page .sv-stat-icon {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-page .sv-stat-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9);
}

/* â”€â”€ Testimonials section â”€â”€ */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    flex: 1;
    position: relative;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.65em;
    color: var(--primary-light);
    margin-right: 0.1em;
    font-family: Georgia, serif;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* â”€â”€ Comparison table â”€â”€ */
.landing-page .comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .comparison-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.landing-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.93rem;
    min-width: 600px;
}

.landing-page .comparison-table thead th {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: #f8fafc;
    color: var(--text-medium);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.landing-page .comparison-table thead th:first-child {
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-th--ours {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.landing-page .comparison-table tbody td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    vertical-align: middle;
    text-align: center;
}

.landing-page .comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-page .comparison-table tbody tr:hover td {
    background: #fafbfc;
}

.landing-page .comparison-td--ours {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.landing-page .cmp-yes {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #10b981;
    font-weight: 600;
}

.landing-page .cmp-yes [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    flex-shrink: 0;
}

.landing-page .cmp-no {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #94a3b8;
}

.landing-page .cmp-no [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #94a3b8;
    flex-shrink: 0;
}

.landing-page .cmp-partial {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f59e0b;
}

.landing-page .cmp-partial [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

/* â”€â”€ Sticky CTA bar â”€â”€ */
.landing-page .sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 997;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .sticky-cta.visible {
    bottom: 0;
}

.landing-page .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-page .sticky-cta__text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.landing-page .sticky-cta__text strong {
    color: #fff;
}

.landing-page .sticky-cta__btn {
    white-space: nowrap;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    flex-shrink: 0;
}

/* â”€â”€ Contact form trust row â”€â”€ */
.landing-page .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.landing-page .form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.landing-page .form-trust-item [data-lucide] {
    width: 14px;
    height: 14px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* â”€â”€ WhatsApp alternative â”€â”€ */
.landing-page .contact-alternative {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .contact-alternative__sep {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .contact-alternative__sep::before,
.landing-page .contact-alternative__sep::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--border-color);
    display: block;
}

.landing-page .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.landing-page .btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-1px);
}

/* â”€â”€ Responsive for new sections â”€â”€ */
@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-page .logo-text {
        font-size: 1.25rem;
    }

    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .comparison-table {
        font-size: 0.82rem;
    }

    .landing-page .comparison-table thead th,
.landing-page .comparison-table tbody td {
        padding: 0.75rem 0.85rem;
    }

    .landing-page .sticky-cta__inner {
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    .landing-page .sticky-cta__text {
        font-size: 0.82rem;
    }

    .landing-page .form-trust {
        gap: 0.85rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW IMPROVEMENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Trust bar (below hero) â”€â”€ */
.landing-page .trust-bar {
    padding: 0.9rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.landing-page .trust-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.landing-page .trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.landing-page .trust-bar__item [data-lucide] {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* â”€â”€ Contact form feedback (success / error) â”€â”€ */
.landing-page .contact-feedback {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.landing-page .contact-feedback--success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.landing-page .contact-feedback--error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* â”€â”€ GDPR consent checkbox â”€â”€ */
.landing-page .gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    cursor: pointer;
    text-align: left;
    padding: 0.25rem 0;
}

.landing-page .gdpr-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    cursor: pointer;
}

.landing-page .gdpr-label a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* â”€â”€ Contact submit loading state â”€â”€ */
.landing-page #contactSubmit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* â”€â”€ Contact submit success state â”€â”€ */
.landing-page #contactSubmit.btn--success {
    background: #059669 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
    transform: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

/* â”€â”€ Testimonial avatar color variants â”€â”€ */
.landing-page .testimonial-avatar--1 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.landing-page .testimonial-avatar--2 {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}
.landing-page .testimonial-avatar--3 {
    background: linear-gradient(135deg, #059669, #047857);
}

/* â”€â”€ Savings hero: text-white versions (remove inline styles) â”€â”€ */
.landing-page .savings-label {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.landing-page .savings-title {
    color: #fff;
}

/* â”€â”€ Benefit icon: Lucide support â”€â”€ */
.landing-page .benefit-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.landing-page .benefit-icon [data-lucide] {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* â”€â”€ Flow cloud icon: Lucide support â”€â”€ */
.landing-page .flow-cloud__icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke: #fff;
}

/* â”€â”€ Transparency box icon: Lucide support â”€â”€ */
.landing-page .transparency-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* â”€â”€ Kitchen screen: page icon Lucide support â”€â”€ */
.landing-page .sk-page-icon [data-lucide] {
    width: 0.85rem;
    height: 0.85rem;
    color: #fff;
    stroke: #fff;
    vertical-align: middle;
}

/* â”€â”€ Billing KPI icon: Lucide support â”€â”€ */
.landing-page .sb-kpi-icon [data-lucide] {
    width: 0.75rem;
    height: 0.75rem;
    color: #6c757d;
    stroke: #6c757d;
    vertical-align: middle;
}

/* â”€â”€ Payment secure badge: Lucide lock icon â”€â”€ */
.landing-page .spay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.landing-page .spay-secure [data-lucide] {
    width: 0.68rem;
    height: 0.68rem;
    color: #94a3b8;
    stroke: #94a3b8;
    flex-shrink: 0;
}

/* â”€â”€ hero-badge: clean (no emoji) â”€â”€ */
.landing-page .hero-badge {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .landing-page .trust-bar__items {
        gap: 1.25rem;
    }

    .landing-page .trust-bar__item {
        font-size: 0.78rem;
    }
}

/* === responsive.css === */
/* Responsive */
@media (max-width: 768px) {
    .landing-page .transparency-box {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .landing-page .transparency-icon {
        font-size: 2.5rem;
    }
    
    .landing-page .faq-hero h2 {
        font-size: 2rem;
    }
    
    .landing-page .faq-subtitle {
        font-size: 1rem;
    }
    
    .landing-page .faq-item {
        padding: 1.5rem;
    }
    
    .landing-page .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .landing-page .faq-icon {
        font-size: 2rem;
    }
    
    .landing-page .faq-question h3 {
        font-size: 1.25rem;
    }
    
    .landing-page .faq-process {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .landing-page .process-arrow {
        transform: rotate(90deg);
    }
    
    .landing-page .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .update-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .faq-cta h2 {
        font-size: 1.75rem;
    }
    
    .landing-page .cta-buttons {
        flex-direction: column;
    }
    
    .landing-page .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-page .hero-content h2 {
        font-size: 2rem;
    }

    .landing-page .hero-cta {
        flex-direction: column;
    }

    .landing-page .nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .landing-page .logo h1 {
        font-size: 1.25rem;
    }

    .landing-page .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .landing-page .nav-menu.active {
        left: 0;
    }

    .landing-page .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .landing-page .nav-menu a {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Show mobile-only items in mobile */
    .landing-page .mobile-only {
        display: list-item !important;
    }

    /* Hide nav-right completely on mobile - items are now in nav-menu */
    .landing-page .nav-right {
        display: none !important;
    }

    /* Hamburger menu button */
    .landing-page .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }

    .landing-page .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay when menu is open */
    .landing-page .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .landing-page .menu-overlay.active {
        display: block;
    }

    .landing-page .pricing-card.featured {
        transform: scale(1);
    }

    .landing-page .modes-container {
        grid-template-columns: 1fr;
    }

    .landing-page .mode-card__header {
        padding: 1.5rem 1.5rem 1.25rem;
    }

    .landing-page .mode-card__body {
        padding: 1.5rem;
    }

    .landing-page .mode-flexibility {
        padding: 1.25rem 1.5rem;
    }

    .landing-page .flexibility-text {
        font-size: 0.95rem;
    }

    .landing-page .security-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .flow-card {
        flex-direction: column;
    }

    .landing-page .flow-arrow {
        transform: rotate(90deg);
    }

    .landing-page .savings-breakdown {
        gap: 0.75rem;
    }

    .landing-page .savings-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-page .benefits-two-col {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .landing-page .referral-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-page .referral-amount {
        padding: 1.5rem 2rem;
    }

    .landing-page .amount-big {
        font-size: 3rem;
    }

    .landing-page .referral-steps-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .referral-card {
        padding: 2rem 1.5rem;
    }

    .landing-page .examples-grid {
        grid-template-columns: 1fr;
    }

    /* Feature showcase responsive */
    .landing-page .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .landing-page .feature-showcase--reverse .feature-showcase__text,
.landing-page .feature-showcase--reverse .feature-showcase__screen {
        order: unset;
    }

    .landing-page .sb-kpi-row {
        grid-template-columns: 1fr;
    }

    /* Flow diagram responsive */
    .landing-page .flow-diagram {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-page .flow-connector {
        flex-direction: row;
        min-width: unset;
        width: 100%;
    }

    .landing-page .flow-conn-arm {
        flex: 1;
    }

    .landing-page .flow-conn-arm--in .flow-conn-label,
.landing-page .flow-conn-arm--out .flow-conn-label {
        font-size: 0.62rem;
    }

    .landing-page .device-phone {
        width: 190px;
        height: 380px; /* 1:2 ratio */
    }

    .landing-page .device-laptop__screen {
        max-height: 240px;
    }
}

/* === Testimonials Section === */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .testimonials .section-label,
.landing-page .testimonials .section-title,
.landing-page .testimonials .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .testimonials .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .testimonials .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-page .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 3px;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
    flex-shrink: 0;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 2px;
}

.landing-page .testimonial-quote::after {
    content: '\201D';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-left: 2px;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: auto;
    }
}

/* === features.css === */
/* Features Section */
.landing-page .features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .features .section-label,
.landing-page .features .section-title,
.landing-page .features .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .features .section-title {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .features .section-subtitle {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;  /* feature-showcase padding handles the gap */
}

.landing-page .section-title {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

/* â”€â”€ Section label pill â”€â”€ */
.landing-page .section-label {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

/* â”€â”€ Feature showcase (alternating) â”€â”€ */
.landing-page .feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
}

.landing-page .feature-showcase:last-child {
    border-bottom: none;
}

.landing-page .feature-showcase--reverse .feature-showcase__text {
    order: 2;
}

.landing-page .feature-showcase--reverse .feature-showcase__screen {
    order: 1;
}

.landing-page .feature-tag-pill {
    display: inline-block;
    background: rgba(99, 102, 241, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text h3 {
    font-size: clamp(1.4rem, 2.5vw, 1.9rem);
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 1rem;
}

.landing-page .feature-showcase__text p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.landing-page .feature-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.landing-page .feature-check-list li {
    padding-left: 1.6rem;
    position: relative;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.landing-page .feature-check-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* â”€â”€ Payment method logo badges â”€â”€ */
.landing-page .pay-logos {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.landing-page .pay-logos--pricing {
    justify-content: center;
    margin-top: 0;
    margin-bottom: 1rem;
    gap: 0.4rem;
}

.landing-page .pay-logos__label {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .pay-logo {
    border-radius: 5px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
    display: block;
    flex-shrink: 0;
}


/* === devices.css === */
/* â”€â”€ Browser frame wrapper â”€â”€ */
/* â”€â”€ Device: Phone frame â”€â”€ */
.landing-page .device-phone {
    width: 230px;
    height: 460px; /* 1:2 ratio â€” mismo que .phone-mockup */
    background: #1a1a2e;
    border-radius: 36px;
    padding: 14px 10px;
    overflow: hidden;
    box-shadow:
        0 30px 70px rgba(0,0,0,0.4),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(255,255,255,0.04);
    position: relative;
    margin: 0 auto;
}

/* Side power button */
.landing-page .device-phone::before {
    content: '';
    position: absolute;
    right: -4px;
    top: 90px;
    width: 4px;
    height: 44px;
    background: #2a2a40;
    border-radius: 0 3px 3px 0;
}

/* Volume buttons */
.landing-page .device-phone::after {
    content: '';
    position: absolute;
    left: -4px;
    top: 70px;
    width: 4px;
    height: 28px;
    background: #2a2a40;
    border-radius: 3px 0 0 3px;
    box-shadow: 0 38px 0 #2a2a40;
}

.landing-page .device-phone__notch {
    width: 72px;
    height: 20px;
    background: #0d0d1a;
    border-radius: 0 0 14px 14px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.landing-page .device-phone__screen {
    background: #fff;
    border-radius: 26px;
    overflow: hidden;
    height: 100%;
    padding: 0.8rem 0.75rem 0.6rem;
}

/* â”€â”€ Device: Laptop frame â”€â”€ */
.landing-page .device-laptop {
    position: relative;
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.22));
}

.landing-page .device-laptop__lid {
    background: #1e1e2e;
    border-radius: 12px 12px 0 0;
    padding: 10px 10px 0;
}

.landing-page .device-laptop__topbar {
    background: #2d2d44;
    border-radius: 6px 6px 0 0;
    padding: 7px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.landing-page .device-laptop__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.landing-page .device-laptop__dot:nth-child(1) { background: #ff5f56; }
.landing-page .device-laptop__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .device-laptop__dot:nth-child(3) { background: #27c93f; }

.landing-page .device-laptop__url {
    flex: 1;
    text-align: center;
    font-size: 0.68rem;
    color: #aaa;
    background: rgba(255,255,255,0.07);
    border-radius: 4px;
    padding: 2px 8px;
}

.landing-page .device-laptop__screen {
    background: #fff;
    overflow: hidden;
    max-height: 300px;
}

.landing-page .device-laptop__base {
    height: 12px;
    background: linear-gradient(to bottom, #2a2a40, #1a1a2e);
    border-radius: 0 0 6px 6px;
    margin: 0 -10px;
}

.landing-page .device-laptop__base::after {
    content: '';
    display: block;
    width: 35%;
    height: 10px;
    background: #141422;
    border-radius: 0 0 8px 8px;
    margin: 0 auto;
}

/* â”€â”€ Catalog screen (phone â€” client side) â”€â”€ */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.landing-page .sc-cat {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.4rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.1rem; }
.landing-page .sc-product-name { font-size: 0.78rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.65rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.5rem; }
.landing-page .sc-product-price { font-size: 0.78rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active { background: var(--secondary-color); }

.landing-page .sc-footer {
    margin-top: 0.75rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 8px;
    padding: 0.55rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* â”€â”€ Kitchen screen (laptop â€” merchant side, light theme matching app) â”€â”€ */
.landing-page .screen-kitchen {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sk-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.landing-page .sk-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sk-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.68rem;
    color: #198754;
    font-weight: 600;
    background: rgba(25,135,84,0.1);
    padding: 2px 8px;
    border-radius: 999px;
}

.landing-page .sk-live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #198754;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #fff;
}

.landing-page .sk-page-icon { font-size: 0.85rem; }
.landing-page .sk-page-title { font-size: 0.8rem; font-weight: 700; color: #fff; }

.landing-page .sk-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 0.55rem;
}

.landing-page .sk-col-header {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.5rem;
    background: #f8f9fa;
    border-bottom: 3px solid;
    border-left: 4px solid;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.4rem;
    border-radius: 4px 4px 0 0;
}

.landing-page .sk-col-header--nuevo { border-color: #ffc107; border-left-color: #ffc107; }
.landing-page .sk-col-header--proceso { border-color: #fd7e14; border-left-color: #fd7e14; }

.landing-page .sk-col-count {
    margin-left: auto;
    border-radius: 999px;
    min-width: 16px;
    height: 16px;
    font-size: 0.6rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    font-weight: 700;
}

.landing-page .sk-col-header--nuevo .sk-col-count { background: #ffc107; color: #333; }
.landing-page .sk-col-header--proceso .sk-col-count { background: #fd7e14; color: #fff; }

.landing-page .sk-order-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid #ffc107;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    margin-bottom: 0.35rem;
}

.landing-page .sk-order-card--proceso { border-left-color: #fd7e14; }

.landing-page .sk-card-row {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.35rem;
    flex-wrap: wrap;
}

.landing-page .sk-dest-badge {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge {
    background: linear-gradient(135deg, #0d6efd, #0a58ca);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
    padding: 1px 6px;
    border-radius: 999px;
}

.landing-page .sk-area-badge--plancha { background: linear-gradient(135deg, #fd7e14, #e55c00); }

.landing-page .sk-time-badge { font-size: 0.58rem; color: #6c757d; margin-left: auto; }

.landing-page .sk-card-items { margin-bottom: 0.4rem; }
.landing-page .sk-card-item { font-size: 0.66rem; color: #495057; padding: 1px 0; }

.landing-page .sk-action-btn {
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 0.28rem;
    font-size: 0.62rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-action-btn--start { background: rgba(255,193,7,0.15); color: #856404; border: 1px solid rgba(255,193,7,0.4); }
.landing-page .sk-action-btn--done { background: rgba(25,135,84,0.12);  color: #155724; border: 1px solid rgba(25,135,84,0.3); }

/* â”€â”€ Payment screen (phone â€” client side) â”€â”€ */
.landing-page .screen-payment { background: #fff; }

.landing-page .spay-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.7rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 0.5rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.45rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-methods { display: flex; gap: 0.5rem; margin-bottom: 0.65rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.5rem;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    font-size: 0.76rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.68rem;
    color: #94a3b8;
}

/* â”€â”€ Billing screen (laptop â€” merchant side, light theme matching app) â”€â”€ */
.landing-page .screen-billing {
    background: #f8f9fa;
    font-size: 13px;
}

.landing-page .sb-navbar {
    background: #fff;
    border-bottom: 1px solid #dee2e6;
    padding: 0.45rem 0.8rem;
}

.landing-page .sb-navbar-brand {
    font-weight: 800;
    font-size: 0.8rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.landing-page .sb-page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}

.landing-page .sb-kpi-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.45rem;
    padding: 0.55rem;
}

.landing-page .sb-kpi-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    padding: 0.5rem 0.55rem;
    border-left: 4px solid;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-kpi-card--blue { border-left-color: #0d6efd; }
.landing-page .sb-kpi-card--green { border-left-color: #198754; }
.landing-page .sb-kpi-card--yellow { border-left-color: #ffc107; }

.landing-page .sb-kpi-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}

.landing-page .sb-kpi-title { font-size: 0.6rem; color: #6c757d; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.landing-page .sb-kpi-icon { font-size: 0.75rem; }

.landing-page .sb-kpi-value {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
    color: #212529;
}

.landing-page .sb-kpi-card--blue   .sb-kpi-value { color: #0d6efd; }
.landing-page .sb-kpi-card--green  .sb-kpi-value { color: #198754; }
.landing-page .sb-kpi-card--yellow .sb-kpi-value { color: #856404; }

.landing-page .sb-kpi-sub { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-chart-card {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 4px solid #198754;
    border-radius: 6px;
    padding: 0.55rem;
    margin: 0 0.55rem 0.55rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.landing-page .sb-chart-title {
    font-size: 0.64rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.45rem;
}

.landing-page .sb-chart { border-radius: 4px; padding: 0.4rem 0.4rem 0; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.35rem;
    align-items: flex-end;
    height: 70px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.58rem; color: #6c757d; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(25, 135, 84, 0.3);
    border-radius: 3px 3px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: #198754;
}

/* === flow.css === */

/* â”€â”€ Flow diagram section â”€â”€ */
.landing-page .flow-section {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .flow-section .section-label,
.landing-page .flow-section .section-title,
.landing-page .flow-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .flow-section .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .flow-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .flow-diagram {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3.5rem;
}

/* Left/right nodes */
.landing-page .flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
}

/* Mini phone mockup inside flow */
.landing-page .flow-device--phone {
    width: 165px;   /* era 130px â€” mÃ¡s grande y proporcional */
    height: 330px;  /* ratio 1:2 */
    background: #1a1a2e;
    border-radius: 28px;
    padding: 10px 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3), 0 0 0 1px rgba(255,255,255,0.06);
    position: relative;
}

.landing-page .flow-device--phone .flow-device__notch {
    width: 54px;
    height: 14px;
    background: #0d0d1a;
    border-radius: 0 0 8px 8px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.landing-page .flow-device--phone .flow-device__screen {
    background: #fff;
    border-radius: 20px;
    padding: 0.65rem 0.5rem 0.45rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
}

/* Mini screen mockup (restaurant panel) */
.landing-page .flow-device--screen {
    width: 188px;
    background: #1e1e2e;
    border-radius: 10px 10px 3px 3px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.landing-page .flow-device__bar {
    background: #2d2d44;
    padding: 5px 8px;
    display: flex;
    gap: 4px;
    align-items: center;
}

.landing-page .flow-device__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.landing-page .flow-device__dot:nth-child(1) { background: #ff5f56; }
.landing-page .flow-device__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .flow-device__dot:nth-child(3) { background: #27c93f; }

.landing-page .flow-device--screen .flow-device__screen {
    background: #f8f9fa;
    padding: 0.45rem;
}

/* Phone screen mini elements */
.landing-page .fp-header {
    font-size: 0.58rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 4px;
    padding: 3px 5px;
    margin-bottom: 0.15rem;
}

.landing-page .fp-item {
    font-size: 0.56rem;
    color: #64748b;
    background: #f8f9fa;
    border-radius: 3px;
    padding: 2px 4px;
    text-align: left;
    border: 1px solid #e5e7eb;
}

.landing-page .fp-pay {
    margin-top: auto;
    font-size: 0.58rem;
    font-weight: 700;
    background: #198754;
    color: #fff;
    border-radius: 4px;
    padding: 0.3rem;
    text-align: center;
}

/* Restaurant mini screen elements */
.landing-page .fs-col-head {
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 3px 6px;
    border-radius: 3px;
    margin-bottom: 0.3rem;
}

.landing-page .fs-order {
    background: #fff;
    border: 1px solid #dee2e6;
    border-left: 3px solid #ffc107;
    border-radius: 4px;
    padding: 0.35rem 0.4rem;
    margin-bottom: 0.3rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
    align-items: center;
}

.landing-page .fs-dest-pill {
    background: linear-gradient(135deg, #198754, #0f5132);
    color: #fff;
    font-size: 0.56rem;
    font-weight: 600;
    padding: 1px 5px;
    border-radius: 999px;
}

.landing-page .fs-time {
    font-size: 0.54rem;
    color: #6c757d;
    margin-left: auto;
}

.landing-page .fs-item {
    width: 100%;
    font-size: 0.6rem;
    color: #495057;
}

.landing-page .fs-sepa {
    font-size: 0.58rem;
    font-weight: 600;
    color: #198754;
    background: rgba(25,135,84,0.08);
    border-radius: 3px;
    padding: 3px 5px;
    text-align: center;
}

/* Center connector + cloud */
.landing-page .flow-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-width: 180px;
}

.landing-page .flow-cloud {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 16px;
    padding: 1.25rem 1.25rem;
    text-align: center;
    box-shadow: 0 16px 48px rgba(102,126,234,0.45);
    width: 100%;
}

.landing-page .flow-cloud__icon {
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.landing-page .flow-cloud__name {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
}

.landing-page .flow-cloud__tags {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.landing-page .flow-cloud__tags span {
    font-size: 0.68rem;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    padding: 2px 10px;
}

/* Animated connection arms */
.landing-page .flow-conn-arm {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.landing-page .flow-conn-label {
    font-size: 0.68rem;
    color: #64748b;
    font-weight: 500;
    white-space: nowrap;
}

.landing-page .flow-conn-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #667eea, #764ba2);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    --connector-w: 400px; /* fallback; updated via JS ResizeObserver */
}

.landing-page .flow-conn-dot {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%) translateX(-20px);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #6366f1;
    will-change: transform, opacity;
    animation: lp-flow-travel 2s linear infinite;
}

.landing-page .flow-conn-dot--right {
    animation: lp-flow-travel 2s linear infinite;
}

@keyframes lp-flow-travel {
    0%   { transform: translateY(-50%) translateX(-20px); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-50%) translateX(calc(var(--connector-w) + 20px)); opacity: 0; }
}

/* Flow node labels */
.landing-page .flow-node__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.landing-page .flow-node__steps {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.landing-page .flow-node__steps li {
    font-size: 0.875rem;
    color: var(--text-light);
    padding-left: 1.2rem;
    position: relative;
}

.landing-page .flow-node__steps li::before {
    content: 'â†’';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}


/* === sections.css === */
/* How It Works â€” duplicated how-it-works rule removed, see L365 */

/* Mode Flexibility Banner */

.landing-page .screen-browser__bar {
    background: #f1f3f5;
    padding: 0.55rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    border-bottom: 1px solid #e0e0e0;
}

.landing-page .screen-browser__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e0e0e0;
    flex-shrink: 0;
}

.landing-page .screen-browser__dot:nth-child(1) { background: #ff5f56; }
.landing-page .screen-browser__dot:nth-child(2) { background: #ffbd2e; }
.landing-page .screen-browser__dot:nth-child(3) { background: #27c93f; }

.landing-page .screen-browser__url {
    flex: 1;
    text-align: center;
    font-size: 0.72rem;
    color: #888;
    background: #fff;
    border-radius: 6px;
    padding: 0.2rem 0.5rem;
    border: 1px solid #e0e0e0;
}

.landing-page .screen-browser__body {
    padding: 1.2rem;
    min-height: 260px;
}

/* â”€â”€ Catalog screen â”€â”€ */
.landing-page .screen-catalog {
    background: #f9fafb;
}

.landing-page .sc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.landing-page .sc-title { font-weight: 700; font-size: 1rem; color: var(--text-dark); }

.landing-page .sc-table {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
}

.landing-page .sc-cat-tabs {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 0.9rem;
}

.landing-page .sc-cat {
    font-size: 0.78rem;
    padding: 0.3rem 0.7rem;
    border-radius: 999px;
    background: #e5e7eb;
    color: #555;
    font-weight: 500;
    cursor: pointer;
}

.landing-page .sc-cat--active {
    background: var(--primary-color);
    color: #fff;
}

.landing-page .sc-products { display: flex; flex-direction: column; gap: 0.5rem; }

.landing-page .sc-product {
    background: #fff;
    border-radius: 10px;
    padding: 0.65rem 0.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e5e7eb;
}

.landing-page .sc-product--selected {
    border-color: var(--secondary-color);
    background: rgba(16, 185, 129, 0.04);
}

.landing-page .sc-product-info { display: flex; flex-direction: column; gap: 0.15rem; }
.landing-page .sc-product-name { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.landing-page .sc-product-desc { font-size: 0.72rem; color: #999; }
.landing-page .sc-product-right { display: flex; align-items: center; gap: 0.6rem; }
.landing-page .sc-product-price { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }

.landing-page .sc-add {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.landing-page .sc-add--active {
    background: var(--secondary-color);
}

.landing-page .sc-footer {
    margin-top: 0.9rem;
    background: var(--secondary-color);
    color: #fff;
    text-align: center;
    border-radius: 10px;
    padding: 0.65rem;
    font-size: 0.88rem;
    font-weight: 600;
}

/* â”€â”€ Kitchen screen â”€â”€ */
.landing-page .screen-kitchen {
    background: #0f172a;
    color: #fff;
}

.landing-page .sk-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.landing-page .sk-area { font-weight: 700; font-size: 0.95rem; }

.landing-page .sk-live {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #4ade80;
}

.landing-page .sk-live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    animation: lp-pulse-green 1.5s ease-in-out infinite;
}

@keyframes lp-pulse-green {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.landing-page .sk-orders { display: flex; flex-direction: column; gap: 0.75rem; }

.landing-page .sk-order {
    border-radius: 10px;
    padding: 0.85rem;
    border: 1px solid;
}

.landing-page .sk-order--new { background: rgba(239,68,68,0.1); border-color: rgba(239,68,68,0.3); }
.landing-page .sk-order--progress { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.3); }

.landing-page .sk-order-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.landing-page .sk-mesa { font-weight: 700; font-size: 0.88rem; }

.landing-page .sk-badge {
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.landing-page .sk-badge--new { background: rgba(239,68,68,0.2); color: #f87171; }
.landing-page .sk-badge--progress { background: rgba(245,158,11,0.2); color: #fbbf24; }

.landing-page .sk-time { font-size: 0.72rem; color: #94a3b8; margin-left: auto; }

.landing-page .sk-items { margin-bottom: 0.65rem; }
.landing-page .sk-item { font-size: 0.8rem; color: #cbd5e1; padding: 0.15rem 0; }

.landing-page .sk-btn {
    width: 100%;
    border: none;
    border-radius: 7px;
    padding: 0.45rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
}

.landing-page .sk-btn--start { background: rgba(239,68,68,0.15); color: #f87171; }
.landing-page .sk-btn--done { background: rgba(74,222,128,0.15); color: #4ade80; }

/* â”€â”€ Payment screen â”€â”€ */
.landing-page .screen-payment {
    background: #fff;
}

.landing-page .spay-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.landing-page .spay-items { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0.6rem; }

.landing-page .spay-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.82rem;
    color: #555;
}

.landing-page .spay-divider { height: 1px; background: #e5e7eb; margin: 0.5rem 0; }

.landing-page .spay-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.85rem;
}

.landing-page .spay-methods { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; }

.landing-page .spay-btn {
    flex: 1;
    padding: 0.55rem;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    color: #555;
    transition: all 0.2s;
}

.landing-page .spay-btn--active {
    border-color: var(--primary-color);
    background: rgba(99,102,241,0.06);
    color: var(--primary-color);
}

.landing-page .spay-secure {
    text-align: center;
    font-size: 0.72rem;
    color: #94a3b8;
}

/* â”€â”€ Billing screen â”€â”€ */
.landing-page .screen-billing {
    background: #0f172a;
    color: #fff;
}

.landing-page .sb-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.6rem;
    margin-bottom: 1.2rem;
}

.landing-page .sb-kpi {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    padding: 0.65rem 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.landing-page .sb-kpi--accent {
    background: rgba(99,102,241,0.2);
    border-color: rgba(99,102,241,0.35);
}

.landing-page .sb-kpi-label { font-size: 0.68rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.06em; }
.landing-page .sb-kpi-value { font-size: 1rem; font-weight: 700; color: #fff; }
.landing-page .sb-kpi-sub { font-size: 0.65rem; color: #64748b; }

.landing-page .sb-chart-label { font-size: 0.72rem; color: #64748b; margin-bottom: 0.5rem; }

.landing-page .sb-chart { background: rgba(255,255,255,0.03); border-radius: 10px; padding: 0.75rem 0.75rem 0.4rem; }

.landing-page .sb-bars {
    display: flex;
    gap: 0.4rem;
    align-items: flex-end;
    height: 80px;
}

.landing-page .sb-bar-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    height: 100%;
    justify-content: flex-end;
}

.landing-page .sb-bar-wrap span { font-size: 0.62rem; color: #64748b; }

.landing-page .sb-bar {
    width: 100%;
    height: var(--h, 50%);
    background: rgba(99,102,241,0.45);
    border-radius: 4px 4px 0 0;
    transform: scaleY(0);
    transform-origin: bottom center;
    will-change: transform;
}

.landing-page .sb-bar--today {
    background: var(--primary-color);
}

/* How It Works â€” Modos de pago */
.landing-page .how-it-works {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .section-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    margin: 0 auto 3rem;
    line-height: 1.65;
}

/* â”€â”€ Mode cards grid â”€â”€ */
.landing-page .modes-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .mode-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 28px rgba(0,0,0,0.09);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.06);
}

/* Colored header */
.landing-page .mode-card__header {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.landing-page .mode-card--prepago .mode-card__header {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: #fff;
}

.landing-page .mode-card--postpago .mode-card__header {
    background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
    color: #fff;
}

.landing-page .mode-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.landing-page .mode-badge {
    display: inline-block;
    padding: 0.28rem 0.85rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    width: fit-content;
    background: rgba(255,255,255,0.22);
    color: #fff;
}

.landing-page .mode-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.25;
}

.landing-page .mode-description {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.5;
}

.landing-page .mode-ideal {
    font-size: 0.82rem;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 0.4rem 0.8rem;
    color: rgba(255,255,255,0.92);
    margin-top: 0.25rem;
    width: fit-content;
}

/* Card body */
.landing-page .mode-card__body {
    background: var(--white);
    padding: 1.75rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Vertical timeline steps */
.landing-page .mode-steps {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.landing-page .mode-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    position: relative;
    padding-bottom: 1.25rem;
}

.landing-page .mode-step:last-child {
    padding-bottom: 0;
}

/* Connector line between steps */
.landing-page .mode-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 32px;
    width: 2px;
    bottom: 0;
    background: #f1f5f9;
}

.landing-page .mode-step__num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.landing-page .mode-card--prepago .mode-step__num {
    background: #d1fae5;
    color: #059669;
}

.landing-page .mode-card--postpago .mode-step__num {
    background: #e0e7ff;
    color: #4f46e5;
}

.landing-page .mode-step__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.4rem;
}

.landing-page .mode-step__content strong {
    font-size: 0.92rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.3;
}

.landing-page .mode-step__content span {
    font-size: 0.83rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Benefit chips */
/* Mode flexibility banner */
.landing-page .mode-flexibility {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 1.5px solid #6ee7b7;
    border-radius: 16px;
    padding: 1.5rem 2.25rem;
    margin-top: 2.5rem;
    text-align: center;
}

.landing-page .flexibility-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: #fff;
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.landing-page .flexibility-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Features intro */
.landing-page .features-intro {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-top: -2rem;
    margin-bottom: 3rem;
}

/* Savings Hero Section */
/* â”€â”€ Savings Hero â”€â”€ */
.landing-page .savings-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .savings-intro {
    text-align: center;
    font-size: 1.1rem;
    margin: -0.5rem 0 2.5rem;
    opacity: 0.85;
}

/* Stats grid */
.landing-page .savings-visual {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.landing-page .savings-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.landing-page .sv-stat {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    backdrop-filter: blur(6px);
    transition: transform 0.25s;
}

.landing-page .sv-stat:hover { transform: translateY(-4px); }

.landing-page .sv-stat-icon { font-size: 1.5rem; }

.landing-page .sv-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.landing-page .sv-stat-label {
    font-size: 0.75rem;
    opacity: 0.8;
    text-align: center;
}

/* Result card */
.landing-page .savings-result-card {
    background: rgba(255,255,255,0.95);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--text-dark);
    box-shadow: 0 16px 48px rgba(0,0,0,0.15);
}

.landing-page .src-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
}

.landing-page .src-row--cost strong { color: #ef4444; }
.landing-page .src-row--saving strong { color: var(--secondary-color); }
.landing-page .src-row--net { font-size: 1.05rem; font-weight: 600; }

.landing-page .src-net {
    font-size: 1.4rem;
    color: var(--secondary-color);
}

.landing-page .src-divider { height: 1px; background: var(--border-color); margin: 0.25rem 0; }

.landing-page .src-note {
    font-size: 0.78rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.25rem;
    font-style: italic;
}

/* â”€â”€ Benefits two-col (replaces 5 pillars) â”€â”€ */
.landing-page .benefits-detailed {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .benefits-detailed .section-label,
.landing-page .benefits-detailed .section-title,
.landing-page .benefits-detailed .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .benefits-detailed .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .benefits-detailed .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .benefits-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .benefits-col {
    border-radius: 16px;
    padding: 2rem;
    background: #fff;
    border: 1px solid var(--border-color);
}

.landing-page .bcol-head {
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    display: inline-block;
    margin-bottom: 1.25rem;
}

.landing-page .bcol-head--red { background: #fee2e2; color: #dc2626; }
.landing-page .bcol-head--green { background: #dcfce7; color: #16a34a; }

.landing-page .bcol-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.landing-page .bcol-list li {
    font-size: 0.95rem;
    color: var(--text-dark);
    padding-left: 1.25rem;
    position: relative;
    line-height: 1.45;
}

.landing-page .benefits-col--out .bcol-list li::before {
    content: 'âœ—';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
}

.landing-page .benefits-col--in .bcol-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

/* â”€â”€ Example cards (recomendaciones page) â”€â”€ */
.landing-page .referral-examples {
    margin-bottom: 3rem;
}

.landing-page .referral-examples h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.landing-page .example-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid transparent;
    transition: transform 0.3s;
}

.landing-page .example-card:hover {
    transform: translateY(-5px);
}

.landing-page .example-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-color: var(--primary-color);
}

.landing-page .example-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.landing-page .example-card.highlight .example-number {
    color: var(--white);
}

.landing-page .example-card h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .example-card.highlight h5 {
    color: var(--white);
}


.landing-page .savings-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

/* Pricing */
.landing-page .pricing {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .pricing .section-label,
.landing-page .pricing .section-title,
.landing-page .pricing .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .pricing .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .pricing .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.landing-page .pricing-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.landing-page .pricing-card.featured {
    border: 3px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

.landing-page .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

.landing-page .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.landing-page .badge.enterprise {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.landing-page .pricing-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .price {
    margin-bottom: 2rem;
}

.landing-page .amount {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

.landing-page .period {
    color: var(--text-light);
    font-size: 1.25rem;
}

.landing-page .features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.landing-page .features-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-dark);
    position: relative;
}

.landing-page .features-list li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.landing-page .pricing-card .btn {
    width: 100%;
    text-align: center;
}

.landing-page .pricing-subtitle {
    display: none; /* replaced by .section-subtitle */
}

.landing-page .plus {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-top: 0.5rem;
    font-weight: 600;
}

.landing-page .pricing-explanation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.landing-page .pricing-explanation p {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.landing-page .pricing-explanation .highlight {
    margin-top: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    font-weight: 600;
    color: var(--secondary-color);
}

.landing-page .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.landing-page .pricing-benefits {
    margin-top: 4rem;
    text-align: center;
}

.landing-page .pricing-benefits h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .benefit {
    text-align: center;
    padding: 1.5rem;
}

.landing-page .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .benefit h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .benefit p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Security Section */
.landing-page .security-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .security-section .section-label,
.landing-page .security-section .section-title,
.landing-page .security-section .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .security-section .section-title {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .security-section .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.landing-page .security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.landing-page .security-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .security-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.landing-page .security-card.highlight {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(180deg, #ecfdf5 0%, var(--white) 100%);
}

.landing-page .security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.landing-page .security-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .security-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

.landing-page .payment-flow {
    max-width: 900px;
    margin: 3rem auto 0;
    text-align: center;
}

.landing-page .payment-flow h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .flow-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.landing-page .flow-step {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .flow-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.landing-page .flow-step p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

.landing-page .flow-arrow {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: bold;
}

.landing-page .flow-note {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: left;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-box {
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    border-radius: 16px;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.landing-page .transparency-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.landing-page .transparency-content h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
}

.landing-page .transparency-content p {
    margin: 0 0 0.75rem 0;
    color: var(--text-dark);
    line-height: 1.6;
}

.landing-page .transparency-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    font-style: italic;
    margin-top: 0.5rem !important;
}

/* FAQ Section */
.landing-page .faq-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.landing-page .faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .faq-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    position: relative;
}

.landing-page .faq-hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    position: relative;
    color: #fff;
}

.landing-page .faq-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.landing-page .faq-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.landing-page .faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.landing-page .faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .faq-question {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    cursor: pointer;
    user-select: none;
}

.landing-page .faq-item.collapsed .faq-question {
    margin-bottom: 0;
}

.landing-page .faq-toggle {
    margin-left: auto;
    font-size: 2rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.3s;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.landing-page .faq-item:not(.collapsed) .faq-toggle {
    transform: rotate(45deg);
}

.landing-page .faq-item.collapsed .faq-answer {
    display: none;
}

.landing-page .faq-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-page .faq-icon [data-lucide] {
    width: 1.75rem;
    height: 1.75rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .faq-question h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin: 0;
    font-weight: 700;
}

.landing-page .faq-answer {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1rem;
}

.landing-page .faq-answer p {
    margin-bottom: 1rem;
}

.landing-page .faq-process {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    flex-wrap: wrap;
}

.landing-page .process-step {
    flex: 1;
    min-width: 150px;
}

.landing-page .step-label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.landing-page .process-step p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.landing-page .process-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    flex-shrink: 0;
}

.landing-page .faq-note {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.landing-page .faq-highlight {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid var(--primary-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.landing-page .faq-highlight h4 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.15rem;
}

.landing-page .faq-highlight p {
    margin: 0.5rem 0;
}

.landing-page .faq-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.landing-page .faq-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
    line-height: 1.6;
}

.landing-page .faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
}

.landing-page .requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin: 1.25rem 0;
}

.landing-page .requirement-card {
    text-align: center;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .requirement-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.landing-page .requirement-icon {
    font-size: 3rem;
    margin-bottom: 0.75rem;
    display: flex;
    justify-content: center;
}

.landing-page .requirement-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

.landing-page .requirement-card h4 {
    font-size: 1.1rem;
    margin: 0.5rem 0;
    color: var(--text-dark);
}

.landing-page .requirement-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.landing-page .cancellation-timeline {
    margin: 2rem 0;
}

.landing-page .timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.landing-page .timeline-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    border: 3px solid var(--primary-color);
}

.landing-page .timeline-content h4 {
    margin: 0 0 0.5rem 0;
    color: var(--text-dark);
    font-size: 1.15rem;
}

.landing-page .timeline-content p {
    margin: 0;
    color: var(--text-medium);
}

.landing-page .payment-methods {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.landing-page .payment-badge {
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
}

.landing-page .faq-future {
    margin-top: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-style: italic;
}

.landing-page .update-examples {
    margin: 2rem 0;
}

.landing-page .update-examples h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.landing-page .update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.landing-page .update-card {
    background: var(--bg-light);
    padding: 1.25rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s;
}

.landing-page .update-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-3px);
}

.landing-page .update-type {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.landing-page .update-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-medium);
}

.landing-page .faq-cta {
    padding: 3rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    text-align: center;
}

.landing-page .faq-cta h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.landing-page .faq-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.landing-page .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Referral Section */
.landing-page .referral-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #d946ef 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.landing-page .referral-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.05"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
    opacity: 0.4;
}

.landing-page .referral-subtitle {
    text-align: center;
    font-size: 1.5rem;
    margin-top: -2rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.landing-page .referral-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    color: var(--text-dark);
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.landing-page .referral-hero {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 2px solid var(--border-color);
}

.landing-page .referral-amount {
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.landing-page .amount-big {
    display: block;
    font-size: 4rem;
    font-weight: bold;
    line-height: 1;
}

.landing-page .amount-label {
    display: block;
    font-size: 1.25rem;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.landing-page .referral-description h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.landing-page .referral-description p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.landing-page .referral-reward-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0 1.5rem 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.landing-page .referral-reward-list li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
}

.landing-page .referral-reward-list li::before {
    content: 'ðŸŽ';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.landing-page .highlight-text {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--text-dark);
    font-weight: 600;
    margin-top: 1.5rem;
}

.landing-page .referral-steps {
    margin-bottom: 3rem;
}

.landing-page .referral-steps h4 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.landing-page .referral-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.landing-page .referral-step {
    text-align: center;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.landing-page .step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.landing-page .referral-step h5 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.landing-page .referral-step p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.landing-page .referral-benefits {
    margin-bottom: 3rem;
}

.landing-page .referral-benefits h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.landing-page .benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.landing-page .benefit-check {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.landing-page .benefit-item span {
    line-height: 1.6;
}

.landing-page .referral-cta {
    text-align: center;
}
.landing-page .referral-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.landing-page .btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

/* Contact */
.landing-page .contact {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .contact .section-label,
.landing-page .contact .section-title,
.landing-page .contact .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .contact .section-title {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .contact .section-subtitle,
.landing-page .contact-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.landing-page .contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.landing-page .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.landing-page .form-field label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.landing-page .contact-form input,
.landing-page .contact-form select {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
    background-color: var(--white);
    color: var(--text-dark);
    width: 100%;
}

.landing-page .contact-form select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.landing-page .contact-form input:focus,
.landing-page .contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.landing-page .contact-form button {
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

/* Footer */
.landing-page .footer {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.landing-page .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.landing-page .footer-section h3,
.landing-page .footer-section h4 {
    margin-bottom: 1rem;
}

.landing-page .footer-section ul {
    list-style: none;
}

.landing-page .footer-section li {
    margin-bottom: 0.5rem;
}

.landing-page .footer-section a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.landing-page .footer-section a:hover {
    color: var(--white);
}

.landing-page .footer-section p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    line-height: 1.6;
}

.landing-page .footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


/* === enhancements.css === */
/* =========================================================
   OrderToMe â€” Enhancement styles
   Adds: professional logo, Lucide icon sizing, testimonials,
         comparison table, sticky CTA, form trust row + WhatsApp
   ========================================================= */

/* â”€â”€ Logo with icon â”€â”€ */
.landing-page .logo h1 {
    font-size: 0; /* size is handled by .logo-text span */
    line-height: 1;
}

.landing-page .logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.landing-page .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--primary-color);
}

/* â”€â”€ Lucide icon base defaults â”€â”€ */
.landing-page [data-lucide] {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
    width: 1em;
    height: 1em;
}

/* â”€â”€ Feature tag pills â”€â”€ */
.landing-page .feature-tag-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .feature-tag-pill [data-lucide] {
    width: 15px;
    height: 15px;
}

/* â”€â”€ Mode card icons & badges â”€â”€ */
.landing-page .mode-card__icon {
    display: flex;
    align-items: center;
}

.landing-page .mode-card__icon [data-lucide] {
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.95);
    stroke: rgba(255, 255, 255, 0.95);
}

.landing-page .mode-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.35rem;
}

.landing-page .mode-badge [data-lucide] {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
}

/* â”€â”€ Flexibility badge â”€â”€ */
.landing-page .flexibility-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
}

.landing-page .flexibility-badge [data-lucide] {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* â”€â”€ Flow node titles â”€â”€ */
.landing-page .flow-node__title [data-lucide] {
    width: 18px;
    height: 18px;
    vertical-align: text-bottom;
    margin-right: 2px;
}

/* â”€â”€ Benefits col heads â”€â”€ */
.landing-page .bcol-head {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-page .bcol-head [data-lucide] {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.landing-page .bcol-head--red [data-lucide] {
    color: #ef4444;
    stroke: #ef4444;
}

.landing-page .bcol-head--green [data-lucide] {
    color: #10b981;
    stroke: #10b981;
}

/* â”€â”€ Security icons â”€â”€ */
.landing-page .security-icon [data-lucide] {
    width: 38px;
    height: 38px;
}

/* â”€â”€ Savings stat icons â”€â”€ */
.landing-page .sv-stat-icon {
    font-size: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-page .sv-stat-icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: rgba(255, 255, 255, 0.9);
    stroke: rgba(255, 255, 255, 0.9);
}

/* â”€â”€ Testimonials section â”€â”€ */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--white);
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.landing-page .testimonial-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
    flex: 1;
    position: relative;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    line-height: 0;
    vertical-align: -0.65em;
    color: var(--primary-light);
    margin-right: 0.1em;
    font-family: Georgia, serif;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

/* â”€â”€ Comparison table â”€â”€ */
.landing-page .comparison {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .comparison-table-wrap {
    overflow-x: auto;
    margin-top: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.landing-page .comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    font-size: 0.93rem;
    min-width: 600px;
}

.landing-page .comparison-table thead th {
    padding: 1.1rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    background: #f8fafc;
    color: var(--text-medium);
    border-bottom: 2px solid var(--border-color);
    white-space: nowrap;
}

.landing-page .comparison-table thead th:first-child {
    text-align: left;
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-th--ours {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.landing-page .comparison-table tbody td {
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-medium);
    vertical-align: middle;
    text-align: center;
}

.landing-page .comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-right: 1px solid var(--border-color);
}

.landing-page .comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.landing-page .comparison-table tbody tr:hover td {
    background: #fafbfc;
}

.landing-page .comparison-td--ours {
    background: rgba(99, 102, 241, 0.05);
    color: var(--primary-dark) !important;
    font-weight: 600;
}

.landing-page .cmp-yes {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #10b981;
    font-weight: 600;
}

.landing-page .cmp-yes [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #10b981;
    flex-shrink: 0;
}

.landing-page .cmp-no {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #94a3b8;
}

.landing-page .cmp-no [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #94a3b8;
    flex-shrink: 0;
}

.landing-page .cmp-partial {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #f59e0b;
}

.landing-page .cmp-partial [data-lucide] {
    width: 16px;
    height: 16px;
    stroke: #f59e0b;
    flex-shrink: 0;
}

/* â”€â”€ Sticky CTA bar â”€â”€ */
.landing-page .sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    z-index: 997;
    background: #0f172a;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.9rem 0;
    transition: bottom 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.landing-page .sticky-cta.visible {
    bottom: 0;
}

.landing-page .sticky-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.landing-page .sticky-cta__text {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.landing-page .sticky-cta__text strong {
    color: #fff;
}

.landing-page .sticky-cta__btn {
    white-space: nowrap;
    padding: 0.65rem 1.5rem !important;
    font-size: 0.9rem !important;
    flex-shrink: 0;
}

/* â”€â”€ Contact form trust row â”€â”€ */
.landing-page .form-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.landing-page .form-trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--text-light);
}

.landing-page .form-trust-item [data-lucide] {
    width: 14px;
    height: 14px;
    stroke: var(--secondary-color);
    flex-shrink: 0;
}

/* â”€â”€ WhatsApp alternative â”€â”€ */
.landing-page .contact-alternative {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.landing-page .contact-alternative__sep {
    font-size: 0.82rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.landing-page .contact-alternative__sep::before,
.landing-page .contact-alternative__sep::after {
    content: '';
    width: 48px;
    height: 1px;
    background: var(--border-color);
    display: block;
}

.landing-page .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: #25d366;
    color: #fff;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
}

.landing-page .btn-whatsapp:hover {
    background: #1db954;
    transform: translateY(-1px);
}

/* â”€â”€ Responsive for new sections â”€â”€ */
@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .landing-page .logo-text {
        font-size: 1.25rem;
    }

    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .comparison-table {
        font-size: 0.82rem;
    }

    .landing-page .comparison-table thead th,
.landing-page .comparison-table tbody td {
        padding: 0.75rem 0.85rem;
    }

    .landing-page .sticky-cta__inner {
        flex-direction: column;
        gap: 0.65rem;
        text-align: center;
    }

    .landing-page .sticky-cta__text {
        font-size: 0.82rem;
    }

    .landing-page .form-trust {
        gap: 0.85rem;
    }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   NEW IMPROVEMENTS
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ Trust bar (below hero) â”€â”€ */
.landing-page .trust-bar {
    padding: 0.9rem 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

.landing-page .trust-bar__items {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.landing-page .trust-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    white-space: nowrap;
}

.landing-page .trust-bar__item [data-lucide] {
    width: 15px;
    height: 15px;
    stroke: var(--primary-color);
    flex-shrink: 0;
}

/* â”€â”€ Contact form feedback (success / error) â”€â”€ */
.landing-page .contact-feedback {
    display: none;
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.5;
}

.landing-page .contact-feedback--success {
    display: block;
    background: rgba(16, 185, 129, 0.08);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.25);
}

.landing-page .contact-feedback--error {
    display: block;
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* â”€â”€ GDPR consent checkbox â”€â”€ */
.landing-page .gdpr-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    cursor: pointer;
    text-align: left;
    padding: 0.25rem 0;
}

.landing-page .gdpr-label input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    margin-top: 2px;
    cursor: pointer;
}

.landing-page .gdpr-label a {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* â”€â”€ Contact submit loading state â”€â”€ */
.landing-page #contactSubmit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none !important;
}

/* â”€â”€ Contact submit success state â”€â”€ */
.landing-page #contactSubmit.btn--success {
    background: #059669 !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
    transform: none !important;
    transition: background 0.3s ease, color 0.3s ease;
}

/* â”€â”€ Testimonial avatar color variants â”€â”€ */
.landing-page .testimonial-avatar--1 {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
}
.landing-page .testimonial-avatar--2 {
    background: linear-gradient(135deg, #0891b2, #0e7490);
}
.landing-page .testimonial-avatar--3 {
    background: linear-gradient(135deg, #059669, #047857);
}

/* â”€â”€ Savings hero: text-white versions (remove inline styles) â”€â”€ */
.landing-page .savings-label {
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
}

.landing-page .savings-title {
    color: #fff;
}

/* â”€â”€ Benefit icon: Lucide support â”€â”€ */
.landing-page .benefit-icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.landing-page .benefit-icon [data-lucide] {
    width: 2.25rem;
    height: 2.25rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* â”€â”€ Flow cloud icon: Lucide support â”€â”€ */
.landing-page .flow-cloud__icon [data-lucide] {
    width: 2rem;
    height: 2rem;
    color: #fff;
    stroke: #fff;
}

/* â”€â”€ Transparency box icon: Lucide support â”€â”€ */
.landing-page .transparency-icon [data-lucide] {
    width: 2.5rem;
    height: 2.5rem;
    color: var(--primary-color);
    stroke: var(--primary-color);
}

/* â”€â”€ Kitchen screen: page icon Lucide support â”€â”€ */
.landing-page .sk-page-icon [data-lucide] {
    width: 0.85rem;
    height: 0.85rem;
    color: #fff;
    stroke: #fff;
    vertical-align: middle;
}

/* â”€â”€ Billing KPI icon: Lucide support â”€â”€ */
.landing-page .sb-kpi-icon [data-lucide] {
    width: 0.75rem;
    height: 0.75rem;
    color: #6c757d;
    stroke: #6c757d;
    vertical-align: middle;
}

/* â”€â”€ Payment secure badge: Lucide lock icon â”€â”€ */
.landing-page .spay-secure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.landing-page .spay-secure [data-lucide] {
    width: 0.68rem;
    height: 0.68rem;
    color: #94a3b8;
    stroke: #94a3b8;
    flex-shrink: 0;
}

/* â”€â”€ hero-badge: clean (no emoji) â”€â”€ */
.landing-page .hero-badge {
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .landing-page .trust-bar__items {
        gap: 1.25rem;
    }

    .landing-page .trust-bar__item {
        font-size: 0.78rem;
    }
}

/* === responsive.css === */
/* Responsive */
@media (max-width: 768px) {
    .landing-page .transparency-box {
        flex-direction: column;
        padding: 1.5rem;
        text-align: center;
        align-items: center;
    }
    
    .landing-page .transparency-icon {
        font-size: 2.5rem;
    }
    
    .landing-page .faq-hero h2 {
        font-size: 2rem;
    }
    
    .landing-page .faq-subtitle {
        font-size: 1rem;
    }
    
    .landing-page .faq-item {
        padding: 1.5rem;
    }
    
    .landing-page .faq-question {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .landing-page .faq-icon {
        font-size: 2rem;
    }
    
    .landing-page .faq-question h3 {
        font-size: 1.25rem;
    }
    
    .landing-page .faq-process {
        flex-direction: column;
        padding: 1.5rem;
    }
    
    .landing-page .process-arrow {
        transform: rotate(90deg);
    }
    
    .landing-page .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .update-grid {
        grid-template-columns: 1fr;
    }
    
    .landing-page .faq-cta h2 {
        font-size: 1.75rem;
    }
    
    .landing-page .cta-buttons {
        flex-direction: column;
    }
    
    .landing-page .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .landing-page .hero-content h2 {
        font-size: 2rem;
    }

    .landing-page .hero-cta {
        flex-direction: column;
    }

    .landing-page .nav {
        padding: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .landing-page .logo h1 {
        font-size: 1.25rem;
    }

    .landing-page .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 5rem 0 2rem 0;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
        justify-content: flex-start;
    }

    .landing-page .nav-menu.active {
        left: 0;
    }

    .landing-page .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .landing-page .nav-menu a {
        display: block;
        padding: 1.25rem 1.5rem;
        width: 100%;
        text-align: left;
    }

    /* Show mobile-only items in mobile */
    .landing-page .mobile-only {
        display: list-item !important;
    }

    /* Hide nav-right completely on mobile - items are now in nav-menu */
    .landing-page .nav-right {
        display: none !important;
    }

    /* Hamburger menu button */
    .landing-page .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        cursor: pointer;
        padding: 0.5rem;
        z-index: 1001;
        position: relative;
    }

    .landing-page .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        transition: all 0.3s ease;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .landing-page .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Overlay when menu is open */
    .landing-page .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
    }

    .landing-page .menu-overlay.active {
        display: block;
    }

    .landing-page .pricing-card.featured {
        transform: scale(1);
    }

    .landing-page .modes-container {
        grid-template-columns: 1fr;
    }

    .landing-page .mode-card__header {
        padding: 1.5rem 1.5rem 1.25rem;
    }

    .landing-page .mode-card__body {
        padding: 1.5rem;
    }

    .landing-page .mode-flexibility {
        padding: 1.25rem 1.5rem;
    }

    .landing-page .flexibility-text {
        font-size: 0.95rem;
    }

    .landing-page .security-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .flow-card {
        flex-direction: column;
    }

    .landing-page .flow-arrow {
        transform: rotate(90deg);
    }

    .landing-page .savings-breakdown {
        gap: 0.75rem;
    }

    .landing-page .savings-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .landing-page .benefits-two-col {
        grid-template-columns: 1fr;
    }

    .landing-page .pricing-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .phone-mockup {
        width: 220px;
        height: 440px;
    }

    .landing-page .referral-hero {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .landing-page .referral-amount {
        padding: 1.5rem 2rem;
    }

    .landing-page .amount-big {
        font-size: 3rem;
    }

    .landing-page .referral-steps-grid {
        grid-template-columns: 1fr;
    }

    .landing-page .referral-card {
        padding: 2rem 1.5rem;
    }

    .landing-page .examples-grid {
        grid-template-columns: 1fr;
    }

    /* Feature showcase responsive */
    .landing-page .feature-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 0;
    }

    .landing-page .feature-showcase--reverse .feature-showcase__text,
.landing-page .feature-showcase--reverse .feature-showcase__screen {
        order: unset;
    }

    .landing-page .sb-kpi-row {
        grid-template-columns: 1fr;
    }

    /* Flow diagram responsive */
    .landing-page .flow-diagram {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .landing-page .flow-connector {
        flex-direction: row;
        min-width: unset;
        width: 100%;
    }

    .landing-page .flow-conn-arm {
        flex: 1;
    }

    .landing-page .flow-conn-arm--in .flow-conn-label,
.landing-page .flow-conn-arm--out .flow-conn-label {
        font-size: 0.62rem;
    }

    .landing-page .device-phone {
        width: 190px;
        height: 380px; /* 1:2 ratio */
    }

    .landing-page .device-laptop__screen {
        max-height: 240px;
    }
}

/* === Testimonials Section === */
.landing-page .testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.landing-page .testimonials .section-label,
.landing-page .testimonials .section-title,
.landing-page .testimonials .section-subtitle {
    text-align: center;
    display: block;
}

.landing-page .testimonials .section-title {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0.75rem;
}

.landing-page .testimonials .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.5rem;
}

.landing-page .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.landing-page .testimonial-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.landing-page .testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.landing-page .testimonial-stars {
    display: flex;
    gap: 3px;
}

.landing-page .testimonial-stars [data-lucide] {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
    stroke: #f59e0b;
    flex-shrink: 0;
}

.landing-page .testimonial-quote {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
    font-style: italic;
}

.landing-page .testimonial-quote::before {
    content: '\201C';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-right: 2px;
}

.landing-page .testimonial-quote::after {
    content: '\201D';
    color: var(--primary-color);
    font-size: 1.4em;
    line-height: 0;
    vertical-align: -0.35em;
    margin-left: 2px;
}

.landing-page .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-color);
}

.landing-page .testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.landing-page .testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.landing-page .testimonial-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dark);
}

.landing-page .testimonial-business {
    font-size: 0.78rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .landing-page .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .landing-page .testimonial-card:last-child {
        grid-column: auto;
    }
}

