/* ============================================================
   WEDINSIDE LANDING — styles.css
   Modo claro completo. Máximo contraste en todos los textos.
   ============================================================ */

:root {
  --v6: #7c3aed; --v7: #6d28d9; --v5: #8b5cf6; --v1: #ede9fe; --v05: #f5f3ff;
  --s9: #0f172a; --s8: #1e293b; --s7: #334155; --s6: #475569; --s5: #64748b;
  --s3: #94a3b8; --s2: #e2e8f0; --s1: #f1f5f9; --s0: #f8fafc;
  --e6: #059669; --e5: #10b981; --e1: #ecfdf5;
  --r5: #f43f5e; --r1: #fff1f2;
  --a5: #f59e0b; --a1: #fffbeb;
  --b6: #2563eb; --b1: #eff6ff;
  --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font); background: #fff; color: var(--s9); overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { font-family: var(--font); }

/* ============================================================ UTILS */
.t-center { text-align: center; }
.t-center .section-sub { margin: 0 auto; }
.section-label { font-size: 11px; font-weight: 700; color: var(--v6); letter-spacing: .1em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; color: var(--s9); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--s6); line-height: 1.75; max-width: 520px; }

/* ============================================================ BUTTONS */
.btn-primary { background: var(--v6); color: #fff; padding: 14px 32px; border-radius: 12px; font-size: 15px; font-weight: 700; transition: all .2s; display: inline-block; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--v7); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(124,58,237,.3); }
.btn-ghost { border: 1.5px solid var(--s2); color: var(--s9); padding: 13px 28px; border-radius: 12px; font-size: 15px; font-weight: 600; display: inline-block; transition: all .2s; }
.btn-ghost:hover { border-color: var(--v6); color: var(--v6); }

/* ============================================================ NAV */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(255,255,255,.96); backdrop-filter: blur(12px); border-bottom: 1px solid var(--s2); padding: 0 5vw; }
.nav-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.nav-logo { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--s6); transition: color .15s; }
.nav-links a:hover { color: var(--s9); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-lang { display: flex; gap: 5px; }
.lang-btn { background: transparent; border: 1px solid var(--s2); color: var(--s7); font-size: 11px; font-weight: 700; padding: 5px 9px; border-radius: 7px; cursor: pointer; transition: all .15s; letter-spacing: .03em; }
.lang-btn:hover, .lang-btn.active { background: var(--v6); border-color: var(--v6); color: #fff; }
.btn-nav-cta { background: var(--v6); color: #fff; padding: 9px 20px; border-radius: 10px; font-size: 13px; font-weight: 700; transition: background .15s; white-space: nowrap; }
.btn-nav-cta:hover { background: var(--v7); }
.hamburger { display: none; background: transparent; border: none; cursor: pointer; color: var(--s9); padding: 4px; }
.mobile-menu { display: none; position: fixed; inset: 68px 0 0 0; background: #fff; padding: 28px 5vw; z-index: 99; flex-direction: column; gap: 18px; border-top: 1px solid var(--s2); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 16px; font-weight: 600; color: var(--s9); padding: 10px 0; border-bottom: 1px solid var(--s1); }

/* ============================================================ HERO */
.hero { padding: 120px 5vw 80px; background: linear-gradient(180deg, var(--v05) 0%, #fff 100%); }
.hero-inner { max-width: 1140px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--v1); border: 1px solid rgba(124,58,237,.2); border-radius: 50px; padding: 6px 16px; font-size: 12px; font-weight: 600; color: var(--v6); margin-bottom: 28px; letter-spacing: .04em; text-transform: uppercase; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--v6); animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(38px, 5.5vw, 70px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--s9); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--v6); }
.hero-sub { font-size: clamp(16px, 2vw, 19px); color: var(--s6); line-height: 1.75; max-width: 580px; margin: 0 auto 36px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================ SHOWCASE TABS */
.showcase { background: #fff; padding: 0 5vw 100px; }
.showcase-inner { max-width: 1140px; margin: 0 auto; }
.tabs-row { display: flex; gap: 0; overflow-x: auto; scrollbar-width: none; border-bottom: 1px solid var(--s2); margin-bottom: 0; padding-top: 16px; }
.tabs-row::-webkit-scrollbar { display: none; }
.tab-btn { flex-shrink: 0; display: flex; align-items: center; gap: 7px; padding: 10px 20px; border: none; background: transparent; font-size: 13px; font-weight: 600; color: var(--s5); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all .2s; }
.tab-btn:hover { color: var(--s9); background: var(--s0); }
.tab-btn.active { color: var(--v6); border-bottom-color: var(--v6); background: transparent; }
.tab-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.tab-panel { display: none; }
.tab-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 52px 0 0; }
.tab-text { display: flex; flex-direction: column; gap: 14px; }
.tab-label { font-size: 11px; font-weight: 700; color: var(--v6); letter-spacing: .1em; text-transform: uppercase; }
.tab-text h2 { font-size: clamp(26px, 3vw, 40px); font-weight: 800; color: var(--s9); line-height: 1.2; letter-spacing: -0.02em; }
.tab-text > p { font-size: 16px; color: var(--s7); line-height: 1.75; max-width: 440px; }
.tab-features { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.tab-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--s9); font-weight: 500; }
.tf-icon { width: 22px; height: 22px; border-radius: 7px; background: var(--v1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.tf-icon svg { width: 12px; height: 12px; color: var(--v6); }

/* ============================================================ MOCKUP SHELL */
.tab-mockup { border-radius: 20px; overflow: hidden; border: 1px solid var(--s2); box-shadow: 0 20px 60px rgba(15,23,42,.1); background: var(--s0); }
.mock-header { background: #fff; border-bottom: 1px solid var(--s2); padding: 11px 14px; display: flex; align-items: center; gap: 8px; }
.mock-dots { display: flex; gap: 5px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-window-title { font-size: 10px; color: var(--s5); margin-left: 6px; font-weight: 500; }

/* ============================================================ MOCKUP CRM */
.m-kanban { display: grid; grid-template-columns: repeat(4,1fr); gap: 7px; padding: 14px; }
.m-col { background: #fff; border: 1px solid var(--s2); border-radius: 10px; padding: 10px; min-height: 170px; }
.m-col-h { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--s5); margin-bottom: 8px; padding-bottom: 6px; border-bottom: 1px solid var(--s1); }
.m-card { background: var(--s0); border: 1px solid var(--s2); border-radius: 8px; padding: 7px; margin-bottom: 5px; }
.m-card-name { font-size: 10px; font-weight: 700; color: var(--s9); margin-bottom: 3px; }
.m-card-date { font-size: 8.5px; color: var(--s5); }
.m-tag { display: inline-block; padding: 1px 6px; border-radius: 4px; font-size: 7.5px; font-weight: 700; margin-top: 4px; }
.t-rose { background: #fce7f3; color: #9d174d; }
.t-blue { background: #dbeafe; color: #1e40af; }
.t-violet { background: var(--v1); color: #5b21b6; }
.t-green { background: #d1fae5; color: #065f46; }
.t-amber { background: #fef3c7; color: #92400e; }
.t-pink { background: #fce7f3; color: #9d174d; }
.m-stripe-new  { border-left: 3px solid #8b5cf6; }
.m-stripe-cont { border-left: 3px solid #3b82f6; }
.m-stripe-pres { border-left: 3px solid #f59e0b; }
.m-stripe-book { border-left: 3px solid #10b981; }

/* ============================================================ MOCKUP CHAT */
.m-chat-wrap { display: flex; flex-direction: column; }
.m-chat-header { background: var(--v6); padding: 12px 14px; }
.m-chat-event { font-size: 12px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.m-chat-participants { font-size: 9px; color: rgba(255,255,255,.75); }
.m-chat-body { padding: 14px; display: flex; flex-direction: column; gap: 9px; background: #fff; min-height: 200px; }
.m-msg { display: flex; flex-direction: column; max-width: 82%; }
.m-msg.own { align-self: flex-end; align-items: flex-end; }
.m-msg-name { font-size: 8px; font-weight: 700; color: var(--v6); margin-bottom: 3px; }
.m-bubble { padding: 7px 11px; border-radius: 12px; font-size: 10px; line-height: 1.45; font-weight: 500; }
.m-bubble.other { background: var(--s1); color: var(--s9); border-radius: 12px 12px 12px 2px; }
.m-bubble.own { background: var(--v6); color: #fff; border-radius: 12px 12px 2px 12px; }
.m-msg-time { font-size: 7px; color: var(--s3); margin-top: 3px; }
.m-chat-input-row { border-top: 1px solid var(--s2); padding: 9px 12px; display: flex; gap: 7px; align-items: center; background: #fff; }
.m-input-fake { flex: 1; background: var(--s1); border-radius: 8px; padding: 7px 10px; font-size: 10px; color: var(--s5); }
.m-send { width: 28px; height: 28px; background: var(--v6); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-send svg { width: 13px; height: 13px; color: #fff; }

/* ============================================================ MOCKUP FICHAS */
.m-ficha-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--s2); background: var(--s0); }
.m-ftab { padding: 8px 14px; font-size: 9px; font-weight: 700; color: var(--s5); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.m-ftab.active { color: var(--v6); border-bottom-color: var(--v6); background: #fff; }
.m-ficha-body { padding: 14px; background: #fff; }
.m-ficha-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.m-ficha-icon { width: 34px; height: 34px; background: var(--v1); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-ficha-icon svg { width: 17px; height: 17px; color: var(--v6); }
.m-ficha-title { font-size: 11px; font-weight: 700; color: var(--s9); }
.m-ficha-sub { font-size: 8.5px; color: var(--s5); margin-top: 1px; }
.m-section { margin-bottom: 10px; }
.m-sec-h { font-size: 7.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--s5); margin-bottom: 5px; padding-bottom: 4px; border-bottom: 1px solid var(--s1); }
.m-field { margin-bottom: 5px; }
.m-field-lbl { font-size: 7.5px; color: var(--s5); margin-bottom: 2px; }
.m-field-val { font-size: 9.5px; font-weight: 600; color: var(--s9); background: var(--s0); padding: 4px 8px; border-radius: 6px; border: 1px solid var(--s2); }
.m-allergy { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; font-size: 8.5px; font-weight: 600; padding: 4px 8px; border-radius: 6px; margin-bottom: 4px; }
.m-options-row { display: flex; gap: 5px; flex-wrap: wrap; }

/* ============================================================ MOCKUP AGENDA */
.m-agenda-body { padding: 14px; background: #fff; }
.m-cal-month { font-size: 11px; font-weight: 700; color: var(--s9); margin-bottom: 10px; text-align: center; }
.m-cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 2px; margin-bottom: 12px; }
.m-cal-dh { font-size: 7px; font-weight: 700; color: var(--s5); text-align: center; padding: 3px 0; }
.m-cal-d { font-size: 8px; color: var(--s7); text-align: center; padding: 5px 2px; border-radius: 5px; }
.m-cal-d.today { background: var(--v6); color: #fff; font-weight: 700; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.m-cal-d.ev::after { content: ''; display: block; width: 4px; height: 4px; background: var(--v6); border-radius: 50%; margin: 1px auto 0; }
.m-cal-d.ev-green::after { background: var(--e5); }
.m-cal-d.ev-amber::after { background: var(--a5); }
.m-events { display: flex; flex-direction: column; gap: 5px; }
.m-event-row { display: flex; align-items: center; gap: 8px; padding: 6px 8px; background: var(--s0); border-radius: 7px; border: 1px solid var(--s2); }
.m-ev-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.m-ev-text { font-size: 9px; font-weight: 600; color: var(--s9); flex: 1; }
.m-ev-time { font-size: 8px; color: var(--s5); font-weight: 500; }

/* ============================================================ MOCKUP COLABORADORES */
.m-colab-body { padding: 14px; background: #fff; }
.m-colab-event-card { background: linear-gradient(135deg, var(--v6), var(--v5)); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; }
.m-ce-title { font-size: 11px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.m-ce-date { font-size: 8.5px; color: rgba(255,255,255,.75); }
.m-colab-list { display: flex; flex-direction: column; gap: 6px; }
.m-colab-row { display: flex; align-items: center; gap: 9px; padding: 8px; border: 1px solid var(--s2); border-radius: 9px; background: #fff; }
.m-avatar { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: #fff; flex-shrink: 0; }
.m-colab-info { flex: 1; }
.m-colab-name { font-size: 10px; font-weight: 700; color: var(--s9); }
.m-colab-role { font-size: 8px; color: var(--s5); }
.m-colab-time { font-size: 10px; font-weight: 700; color: var(--v6); }
.m-status { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.st-g { background: var(--e5); }
.st-a { background: var(--a5); }

/* ============================================================ MOCKUP NOTIFICACIONES */
.m-notif-body { padding: 14px; background: #fff; }
.m-notif-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.m-notif-title { font-size: 12px; font-weight: 700; color: var(--s9); }
.m-notif-unread { background: var(--r5); color: #fff; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.m-notif-mark { font-size: 8px; color: var(--v6); font-weight: 600; cursor: pointer; }
.m-notif-item { display: flex; align-items: flex-start; gap: 10px; padding: 9px 0; border-bottom: 1px solid var(--s1); }
.m-notif-item:last-child { border-bottom: none; }
.m-notif-item.unread .m-notif-icon { background: var(--v1); }
.m-notif-icon { width: 34px; height: 34px; border-radius: 10px; background: var(--s1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.m-notif-icon svg { width: 16px; height: 16px; }
.m-notif-content { flex: 1; }
.m-notif-item-title { font-size: 10px; font-weight: 700; color: var(--s9); margin-bottom: 2px; }
.m-notif-item-body { font-size: 9px; color: var(--s6); margin-bottom: 3px; line-height: 1.4; }
.m-notif-meta { display: flex; align-items: center; gap: 6px; }
.m-notif-time { font-size: 8px; color: var(--s3); }
.m-notif-section { font-size: 8px; color: var(--v6); font-weight: 600; background: var(--v05); padding: 1px 6px; border-radius: 4px; }
.m-notif-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--v6); flex-shrink: 0; margin-top: 4px; }

/* ============================================================ MOCKUP BILLING */
.m-billing-body { padding: 14px; background: #fff; }
.m-bill-kpi { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; margin-bottom: 12px; }
.m-kpi { background: var(--s0); border: 1px solid var(--s2); border-radius: 9px; padding: 8px 10px; }
.m-kpi-val { font-size: 13px; font-weight: 800; color: var(--s9); margin-bottom: 2px; }
.m-kpi-val.green { color: var(--e6); }
.m-kpi-val.amber { color: var(--a5); }
.m-kpi-lbl { font-size: 8px; color: var(--s5); font-weight: 500; }
.m-bill-table { width: 100%; border-collapse: collapse; }
.m-bill-table th { font-size: 8px; font-weight: 700; color: var(--s5); text-transform: uppercase; letter-spacing: .04em; padding: 4px 6px; text-align: left; border-bottom: 1px solid var(--s2); }
.m-bill-table td { font-size: 9px; font-weight: 500; color: var(--s9); padding: 6px 6px; border-bottom: 1px solid var(--s1); }
.m-bill-table tr:last-child td { border-bottom: none; }
.m-bill-paid { color: var(--e6); font-weight: 700; }
.m-bill-pend { color: var(--a5); font-weight: 700; }
.m-bill-dash { color: var(--s3); }

/* ============================================================ PROFESSIONAL TYPES */
.profs-section { background: var(--s0); padding: 90px 5vw; }
.profs-inner { max-width: 1140px; margin: 0 auto; }
.profs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; margin-top: 48px; }
.prof-card { background: #fff; border: 1.5px solid var(--s2); border-radius: 14px; padding: 20px 14px; text-align: center; transition: all .2s; cursor: default; }
.prof-card:hover { border-color: var(--v6); box-shadow: 0 4px 20px rgba(124,58,237,.1); transform: translateY(-2px); }
.prof-icon { width: 44px; height: 44px; background: var(--v1); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 10px; }
.prof-icon svg { width: 22px; height: 22px; color: var(--v6); }
.prof-card p { font-size: 12px; font-weight: 700; color: var(--s9); }

/* ============================================================ PRICING */
.pricing-section { padding: 100px 5vw; background: #fff; }
.pricing-inner { max-width: 1140px; margin: 0 auto; }
.toggle-row { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 40px 0 48px; }
.toggle-lbl { font-size: 14px; font-weight: 600; color: var(--s5); transition: color .2s; }
.toggle-lbl.on { color: var(--s9); }
.toggle-wrap { position: relative; width: 50px; height: 26px; cursor: pointer; }
.toggle-wrap input { opacity: 0; position: absolute; width: 0; height: 0; }
.t-track { position: absolute; inset: 0; background: var(--s2); border-radius: 13px; transition: .2s; }
.t-thumb { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: .2s; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.toggle-wrap input:checked + .t-track { background: var(--v6); }
.toggle-wrap input:checked ~ .t-thumb { left: 27px; }
.save-pill { background: #d1fae5; color: #065f46; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; border: 1px solid #a7f3d0; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.p-card { background: #fff; border: 1.5px solid var(--s2); border-radius: 20px; padding: 32px; position: relative; transition: border-color .2s; }
.p-card.featured { border-color: var(--v6); box-shadow: 0 0 0 4px var(--v05); }
.p-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--v6); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; white-space: nowrap; }
.p-plan { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--s5); margin-bottom: 8px; }
.p-price { display: flex; align-items: baseline; gap: 3px; margin-bottom: 4px; }
.p-eur { font-size: 20px; font-weight: 700; color: var(--s7); }
.p-num { font-size: 52px; font-weight: 800; color: var(--s9); line-height: 1; letter-spacing: -0.03em; }
.p-dec { font-size: 24px; font-weight: 700; color: var(--s9); }
.p-period { font-size: 13px; color: var(--s5); margin-bottom: 6px; }
.p-annual { font-size: 12px; font-weight: 600; color: var(--v6); min-height: 18px; margin-bottom: 20px; }
.p-divider { height: 1px; background: var(--s2); margin-bottom: 20px; }
.p-feats { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.p-feat { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--s9); font-weight: 500; }
.p-feat svg { width: 16px; height: 16px; color: var(--e5); flex-shrink: 0; margin-top: 2px; }
.p-feat.off svg { color: var(--s3); }
.p-feat.off span { color: var(--s5); }
.p-btn { display: block; width: 100%; text-align: center; padding: 13px; border-radius: 12px; font-size: 15px; font-weight: 700; cursor: pointer; border: none; transition: all .2s; }
.p-btn.main { background: var(--v6); color: #fff; }
.p-btn.main:hover { background: var(--v7); }
.p-btn.out { background: transparent; border: 1.5px solid var(--s2); color: var(--s9); }
.p-btn.out:hover { border-color: var(--v6); color: var(--v6); }
.p-note { font-size: 12px; color: var(--s5); text-align: center; margin-top: 10px; line-height: 1.5; }

/* ============================================================ HOW */
.how-section { background: var(--v6); padding: 100px 5vw; }
.how-inner { max-width: 1140px; margin: 0 auto; text-align: center; }
.how-inner .section-label { color: rgba(255,255,255,.65); }
.how-inner .section-title { color: #fff; }
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-top: 60px; }
.how-step { text-align: center; }
.how-num { width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.15); border: 2px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; color: #fff; margin: 0 auto 18px; }
.how-step h3 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.how-step p { font-size: 13px; color: rgba(255,255,255,.78); line-height: 1.65; }

/* ============================================================ CTA */
.cta-section { padding: 120px 5vw; text-align: center; background: var(--s0); }
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(28px, 4vw, 50px); font-weight: 800; color: var(--s9); letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: var(--s6); line-height: 1.75; margin-bottom: 36px; }

/* ============================================================ FOOTER */
footer { background: var(--s9); padding: 48px 5vw; }
.foot-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.foot-logo { height: 26px; width: auto; opacity: .55; filter: invert(1); }
.foot-links { display: flex; gap: 24px; }
.foot-links a { font-size: 13px; color: var(--s3); transition: color .15s; }
.foot-links a:hover { color: #fff; }
.foot-copy { font-size: 12px; color: var(--s6); }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  .tab-panel.active { grid-template-columns: 1fr; }
  .tab-mockup { max-width: 520px; margin: 0 auto; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .how-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-right .nav-lang { display: none; }
  .hamburger { display: block; }
  .how-grid { grid-template-columns: 1fr; }
  .profs-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .foot-inner { flex-direction: column; text-align: center; }
  .foot-links { flex-wrap: wrap; justify-content: center; }
  .m-kanban { grid-template-columns: repeat(2,1fr); }
  .tab-btn span { display: none; }
  .tab-btn { padding: 10px 14px; }
}
