/* HostFlowLab — design system del sitio de marketing.
   Tokens por tema en body.dark / body.light (mismo ADN que la app). */

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

:root {
  --accent: #059669;
  --accent-strong: #10b981;
  --accent-dim-dark: #0d1f1a;
  --accent-dim-light: #e8f5ef;
  --airbnb: #ef4444; --booking: #3b82f6; --vrbo: #8b5cf6; --expedia: #f59e0b;
  --transition: 0.3s ease;
  --radius: 16px;
  --maxw: 1080px;
}

html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', system-ui, sans-serif;
  transition: background var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
}
body.dark { background: #000; color: #f5f5f7;
  --bg: #000; --bg-alt: #050505; --bg-card: #0f0f1a; --border: #1e1e2e; --border-soft: #1d1d1f;
  --text: #f5f5f7; --text-soft: #86868b; --text-dim: #48484a; --accent-dim: var(--accent-dim-dark);
  --nav-bg: rgba(0,0,0,0.82); --shadow: 0 24px 60px rgba(0,0,0,0.55);
}
body.light { background: #fff; color: #1d1d1f;
  --bg: #fff; --bg-alt: #f5f5f7; --bg-card: #fff; --border: #e5e5e5; --border-soft: #e5e5e5;
  --text: #1d1d1f; --text-soft: #6e6e73; --text-dim: #a1a1a6; --accent-dim: var(--accent-dim-light);
  --nav-bg: rgba(255,255,255,0.85); --shadow: 0 24px 60px rgba(29,29,31,0.12);
}
a { text-decoration: none; color: inherit; }
img, video { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; }

/* ---------- NAV ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 14px 40px; border-bottom: 0.5px solid var(--border-soft);
  position: sticky; top: 0; z-index: 200; backdrop-filter: blur(14px); background: var(--nav-bg); }
.nav-brand { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; letter-spacing: -0.4px; color: var(--text); }
.nav-brand img { width: 28px; height: 28px; border-radius: 7px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-link { font-size: 13.5px; color: var(--text-soft); cursor: pointer; position: relative; padding: 8px 0; transition: color 0.15s; }
.nav-link:hover, .nav-link.active { color: var(--text); }
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link::after { content: ' ▾'; font-size: 10px; }
.nav-menu { position: absolute; top: 100%; left: -14px; min-width: 250px; padding: 8px;
  background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.18s ease; }
.nav-dropdown:hover .nav-menu, .nav-dropdown:focus-within .nav-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-menu a { display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px; font-size: 13.5px; color: var(--text-soft); }
.nav-menu a:hover { background: var(--accent-dim); color: var(--text); }
.nav-menu a i { color: var(--accent); font-size: 17px; }
.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-cta { font-size: 13px; background: var(--accent); color: #fff; padding: 9px 18px; border-radius: 20px; cursor: pointer; border: none; font-weight: 500; transition: opacity 0.15s; }
.nav-cta:hover { opacity: 0.88; }
.toggle-group { display: flex; align-items: center; gap: 2px; border-radius: 20px; padding: 3px; background: var(--bg-alt); border: 0.5px solid var(--border-soft); }
body.dark .toggle-group { background: #1d1d1f; border-color: transparent; }
.toggle-btn { font-size: 11.5px; padding: 4px 9px; border-radius: 16px; cursor: pointer; border: none; background: transparent; color: var(--text-soft); transition: all 0.15s; }
body.dark .toggle-btn.active { background: #fff; color: #000; font-weight: 600; }
body.light .toggle-btn.active { background: #000; color: #fff; font-weight: 600; }
.theme-btn { width: 32px; height: 32px; border-radius: 50%; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 15px; background: var(--bg-alt); color: var(--text); }
body.dark .theme-btn { background: #1d1d1f; }
.nav-burger { display: none; width: 36px; height: 36px; border: none; background: transparent; color: var(--text); font-size: 22px; cursor: pointer; }

/* drawer móvil */
.mobile-menu { display: none; }
.mobile-menu.open { display: block; position: fixed; inset: 61px 0 0 0; background: var(--bg); z-index: 190; padding: 20px 24px; overflow-y: auto; }
.mobile-menu a { display: block; padding: 13px 4px; font-size: 16px; color: var(--text); border-bottom: 0.5px solid var(--border-soft); }
.mobile-menu .mm-sub { font-size: 14px; color: var(--text-soft); padding-left: 18px; }

/* ---------- LAYOUT ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }
section.tight { padding: 56px 0; }
.section-tag { font-size: 11px; color: var(--accent); text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 12px; font-weight: 600; }
.section-h2 { font-size: clamp(30px, 4.6vw, 42px); font-weight: 700; letter-spacing: -1.6px; margin-bottom: 14px; line-height: 1.08; color: var(--text); }
.section-sub { font-size: 16.5px; line-height: 1.65; color: var(--text-soft); max-width: 620px; }
.center { text-align: center; }
.center .section-sub { margin: 0 auto; }

/* ---------- HERO ---------- */
.hero { padding: 84px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -220px; left: 50%; transform: translateX(-50%);
  width: 720px; height: 480px; background: radial-gradient(ellipse, rgba(5,150,105,0.16), transparent 65%); pointer-events: none; }
.hero-tag { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; color: var(--accent); border: 0.5px solid var(--accent); padding: 5px 15px; border-radius: 20px; margin-bottom: 26px; letter-spacing: 0.4px; font-weight: 500; }
.hero-h1 { font-size: clamp(38px, 7vw, 64px); font-weight: 700; line-height: 1.04; letter-spacing: -2.6px; margin-bottom: 20px; color: var(--text); }
.hero-h1 .grad { background: linear-gradient(100deg, var(--accent), var(--accent-strong)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18px; max-width: 560px; margin: 0 auto 34px; line-height: 1.62; color: var(--text-soft); }
.hero-btns { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 60px; flex-wrap: wrap; }

.btn-primary { background: var(--accent); color: #fff; padding: 14px 30px; border-radius: 26px; font-size: 15px; font-weight: 500; cursor: pointer; border: none; transition: all 0.15s; display: inline-block; }
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-secondary { background: transparent; padding: 14px 30px; border-radius: 26px; font-size: 15px; font-weight: 500; cursor: pointer; transition: all 0.15s; color: var(--text); border: 0.5px solid; display: inline-block; }
body.dark .btn-secondary { border-color: #3d3d3f; }
body.light .btn-secondary { border-color: #c7c7cc; }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- BROWSER FRAME (screenshots) ---------- */
.frame { border-radius: 16px; overflow: hidden; border: 0.5px solid var(--border); background: var(--bg-card); box-shadow: var(--shadow); }
.frame-bar { display: flex; align-items: center; gap: 6px; padding: 11px 14px; border-bottom: 0.5px solid var(--border); }
.frame-dot { width: 10px; height: 10px; border-radius: 50%; }
.frame-url { flex: 1; text-align: center; font-size: 11px; color: var(--text-dim); }
.frame img { width: 100%; }
.frame.crop img { aspect-ratio: 16/9.4; object-fit: cover; object-position: top; }

/* ---------- GRIDS / CARDS ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.card { border-radius: var(--radius); padding: 24px; border: 0.5px solid var(--border); background: var(--bg-card); transition: border-color 0.2s, transform 0.2s; }
a.card:hover { border-color: var(--accent); transform: translateY(-2px); }
.card-icon { width: 42px; height: 42px; border-radius: 12px; background: var(--accent-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card-icon i { color: var(--accent); font-size: 21px; }
.card-title { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.card-desc { font-size: 13px; line-height: 1.55; color: var(--text-soft); }

/* feature split (texto + visual alternado) */
.feat-inner { display: flex; align-items: center; gap: 56px; }
.feat-inner.rev { flex-direction: row-reverse; }
.feat-text { flex: 1; min-width: 0; }
.feat-visual { flex: 1.15; min-width: 0; }
.feat-h3 { font-size: 27px; font-weight: 700; letter-spacing: -1px; margin-bottom: 12px; color: var(--text); line-height: 1.15; }
.feat-p { font-size: 15.5px; line-height: 1.7; color: var(--text-soft); }
.feat-list { margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.feat-list li { list-style: none; display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text-soft); line-height: 1.5; }
.feat-list li i { color: var(--accent); font-size: 16px; margin-top: 1px; }

/* ---------- STATS / TRUST ---------- */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; }
.stat-num { font-size: 38px; font-weight: 700; letter-spacing: -1.5px; color: var(--text); }
.stat-num span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-soft); margin-top: 4px; }
.badges-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.badge-chip { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-soft); border: 0.5px solid var(--border); border-radius: 20px; padding: 7px 15px; background: var(--bg-card); }
.badge-chip .dot { width: 8px; height: 8px; border-radius: 50%; }

/* ---------- PRICING ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: stretch; }
.plan { border-radius: 20px; padding: 26px; text-align: left; border: 0.5px solid var(--border); background: var(--bg-card); display: flex; flex-direction: column; position: relative; transition: border-color 0.25s, box-shadow 0.25s; }
.plan.featured, .plan.recommended { border: 1.5px solid var(--accent); box-shadow: 0 0 0 4px rgba(5,150,105,0.08); }
.plan-badge { font-size: 10.5px; background: var(--accent-dim); color: var(--accent); padding: 3px 10px; border-radius: 10px; display: inline-block; margin-bottom: 12px; font-weight: 600; letter-spacing: 0.4px; text-transform: uppercase; width: fit-content; }
.plan-name { font-size: 19px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.plan-price { font-size: 34px; font-weight: 700; letter-spacing: -1px; color: var(--text); }
.plan-price span { font-size: 14px; font-weight: 400; color: var(--text-soft); }
.plan-per { font-size: 12px; color: var(--accent); margin: 2px 0 8px; min-height: 15px; }
.plan-desc { font-size: 13px; margin-bottom: 16px; color: var(--text-dim); }
.plan-features { flex: 1; }
.plan-feature { font-size: 13px; padding: 5.5px 0; display: flex; align-items: flex-start; gap: 8px; color: var(--text-soft); line-height: 1.45; }
.plan-feature i { color: var(--accent); font-size: 15px; margin-top: 1px; }
.plan-btn { width: 100%; margin-top: 20px; padding: 12px; border-radius: 12px; font-size: 14px; font-weight: 500; cursor: pointer; transition: opacity 0.15s; border: 0.5px solid var(--border); background: transparent; color: var(--text); text-align: center; }
.plan-btn.featured-btn { background: var(--accent); border-color: var(--accent); color: #fff; }
.plan-btn:hover { opacity: 0.85; }

/* calculadora */
.calc { border-radius: 20px; border: 0.5px solid var(--border); background: var(--bg-card); padding: 30px; }
.calc-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.calc-label { font-size: 15px; font-weight: 600; color: var(--text); }
.calc-value { font-size: 15px; color: var(--accent); font-weight: 700; min-width: 120px; }
input[type="range"].calc-slider { flex: 1; min-width: 200px; height: 40px; cursor: pointer;
  -webkit-appearance: none; appearance: none; background: transparent;
  touch-action: pan-y; /* el drag horizontal es del slider; el scroll vertical sigue vivo (iOS) */ }
.calc-slider::-webkit-slider-runnable-track { height: 6px; border-radius: 3px; background: var(--border); }
.calc-slider::-webkit-slider-thumb { -webkit-appearance: none; width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff; box-shadow: 0 2px 10px rgba(0,0,0,0.3); margin-top: -11px; }
body.dark .calc-slider::-webkit-slider-thumb { border-color: #1d1d1f; }
.calc-slider::-moz-range-track { height: 6px; border-radius: 3px; background: var(--border); }
.calc-slider::-moz-range-thumb { width: 28px; height: 28px; border: 3px solid #fff; border-radius: 50%;
  background: var(--accent); box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
body.dark .calc-slider::-moz-range-thumb { border-color: #1d1d1f; }
.calc-out { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 22px; }
.calc-chip { border-radius: 14px; border: 0.5px solid var(--border); padding: 14px 20px; background: var(--bg-alt); }
body.dark .calc-chip { background: #0a0a12; }
.calc-chip .k { font-size: 11px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-dim); margin-bottom: 3px; }
.calc-chip .v { font-size: 21px; font-weight: 700; color: var(--text); }
.calc-chip .v.acc { color: var(--accent); }
.calc-addons { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.calc-addon { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-soft); cursor: pointer; }
.calc-addon input { accent-color: var(--accent); width: 17px; height: 17px; cursor: pointer; }
.bill-toggle { display: inline-flex; border-radius: 22px; padding: 3px; background: var(--bg-alt); border: 0.5px solid var(--border); gap: 2px; }
body.dark .bill-toggle { background: #0a0a12; }
.bill-toggle button { border: none; background: transparent; color: var(--text-soft); font-size: 13px; padding: 7px 16px; border-radius: 18px; cursor: pointer; }
.bill-toggle button.active { background: var(--accent); color: #fff; font-weight: 600; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 0.5px solid var(--border); }
.faq-q { width: 100%; text-align: left; background: none; border: none; padding: 19px 4px; font-size: 15.5px; font-weight: 600; color: var(--text); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-q::after { content: '+'; font-size: 21px; color: var(--accent); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-item.open .faq-a { max-height: 400px; }
.faq-a p { padding: 0 4px 19px; font-size: 14.5px; line-height: 1.65; color: var(--text-soft); }

/* ---------- CTA FINAL ---------- */
.cta-final { text-align: center; border-top: 0.5px solid var(--border-soft); }
.cta-h2 { font-size: clamp(34px, 6vw, 52px); font-weight: 700; letter-spacing: -2.2px; margin-bottom: 14px; line-height: 1.05; color: var(--text); }
.cta-h2 span { color: var(--accent); }
.cta-sub { font-size: 17px; margin-bottom: 36px; color: var(--text-soft); }

/* ---------- FOOTER ---------- */
footer { border-top: 0.5px solid var(--border-soft); padding: 52px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 9px; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.footer-brand img { width: 24px; height: 24px; border-radius: 6px; }
.footer-tagline { font-size: 13px; color: var(--text-dim); line-height: 1.6; max-width: 240px; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.8px; color: var(--text-dim); margin-bottom: 13px; font-weight: 600; }
.footer-col a { display: block; font-size: 13.5px; color: var(--text-soft); padding: 4.5px 0; }
.footer-col a:hover { color: var(--text); }
.footer-bottom { border-top: 0.5px solid var(--border-soft); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; color: var(--text-dim); }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; bottom: 18px; left: 18px; right: 18px; max-width: 480px; margin: 0 auto; z-index: 400;
  background: var(--bg-card); border: 0.5px solid var(--border); border-radius: 16px; padding: 20px; box-shadow: var(--shadow); display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 13px; line-height: 1.55; color: var(--text-soft); margin-bottom: 14px; }
.cookie-banner a { color: var(--accent); }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.cookie-actions button { flex: 1; min-width: 110px; padding: 10px 12px; border-radius: 10px; font-size: 13px; font-weight: 500; cursor: pointer; }
.ck-accept { background: var(--accent); color: #fff; border: none; }
.ck-reject { background: transparent; color: var(--text); border: 0.5px solid var(--border); }

/* ---------- THEME DEMO SLIDER (interactivo) ---------- */
.theme-demo { position: relative; }
.theme-demo .frame { position: relative; }
.theme-demo .td-light { position: absolute; inset: 0; overflow: hidden; width: 50%; border-right: 2px solid var(--accent); }
.theme-demo .td-light img { width: 200%; max-width: none; height: 100%; object-fit: cover; object-position: left top; }
.theme-demo input[type="range"] { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: ew-resize; margin: 0; }
.td-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 17px; pointer-events: none; box-shadow: 0 4px 14px rgba(0,0,0,0.35); }

/* ---------- TABLA COMPARATIVA ---------- */
.tbl-wrap { overflow-x: auto; border: 0.5px solid var(--border); border-radius: 14px; }
table.cmp { width: 100%; border-collapse: collapse; font-size: 13.5px; background: var(--bg-card); min-width: 640px; }
.cmp th, .cmp td { padding: 12px 16px; text-align: left; border-bottom: 0.5px solid var(--border); color: var(--text-soft); }
.cmp th { font-size: 12px; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-dim); }
.cmp td:first-child { color: var(--text); font-weight: 500; }
.cmp tr:last-child td { border-bottom: none; }
.cmp i.ti-check { color: var(--accent); }
.cmp i.ti-x { color: var(--text-dim); }

/* ---------- UTILIDADES ---------- */
.divider { height: 0.5px; background: var(--border-soft); }
.alt { background: var(--bg-alt); }
.muted { color: var(--text-dim); }
.acc { color: var(--accent); }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; } .mb-40 { margin-bottom: 40px; } .mb-56 { margin-bottom: 56px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .nav { padding: 12px 18px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  .nav-right > .nav-link { display: none; }
  .nav-right { gap: 8px; }
  .nav-right .toggle-group { padding: 2px; }
  .nav-right .toggle-btn { font-size: 10px; padding: 3px 7px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .feat-inner, .feat-inner.rev { flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-band { grid-template-columns: 1fr; gap: 26px; }
  section { padding: 60px 0; }
}
@media (max-width: 560px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 44px; }
}

@media (max-width: 640px) {
  .nav-right .nav-cta { display: none; }
}
@media (max-width: 370px) {
  .nav-brand { font-size: 0; gap: 0; }
}
/* extras del menú móvil */
.mm-langs { display: flex; gap: 8px; padding: 16px 4px 4px; }
.mm-langs .toggle-btn { border: 0.5px solid var(--border); padding: 8px 16px; font-size: 13px; border-radius: 18px; background: var(--bg-alt); color: var(--text-soft); }
body.dark .mm-langs .toggle-btn { background: #14141c; }
.mm-langs .toggle-btn.active { background: var(--accent); color: #fff; font-weight: 600; }
.mobile-menu .mm-cta { display: block; text-align: center; background: var(--accent); color: #fff; border-radius: 12px; margin-top: 16px; padding: 14px; font-weight: 600; font-size: 15px; border-bottom: none; }
a.plan { cursor: pointer; }
a.plan:hover { border-color: var(--accent); transform: translateY(-2px); }

/* ---------- CARRUSEL DE PLANTILLAS (compartido home + sitios-web) ---------- */

    /* carrusel de plantillas */
    .tc { position: relative; max-width: 1180px; margin: 0 auto; padding: 0 64px; }
    .tc-track { display: flex; gap: 26px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: 6px 0 10px; }
    .tc-track::-webkit-scrollbar { display: none; }
    .tc-card { flex: 0 0 86%; max-width: 900px; scroll-snap-align: center; border-radius: 26px; border: 0.5px solid var(--border); background: var(--bg-card); overflow: hidden; box-shadow: var(--shadow); }
    .tc-shot { display: block; overflow: hidden; }
    .tc-shot img { width: 100%; display: block; transition: transform 0.5s ease; }
    .tc-card:hover .tc-shot img { transform: scale(1.015); }
    .tc-meta { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px 24px 20px; border-top: 0.5px solid var(--border); }
    .tc-info h3 { font-size: 19px; font-weight: 700; color: var(--text); margin-bottom: 3px; letter-spacing: -0.3px; }
    .tc-info p { font-size: 13px; color: var(--text-soft); line-height: 1.5; max-width: 520px; }
    .tc-link { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--accent); border: 1px solid var(--accent); border-radius: 999px; padding: 9px 18px; transition: all 0.15s; }
    .tc-link:hover { background: var(--accent); color: #fff; }
    .tc-nav { position: absolute; top: 42%; z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 0.5px solid var(--border); background: var(--bg-card); color: var(--text); font-size: 19px; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); transition: all 0.15s; }
    .tc-nav:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
    .tc-prev { left: 8px; } .tc-next { right: 8px; }
    .tc-dots { display: flex; justify-content: center; gap: 9px; margin-top: 22px; }
    .tc-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: var(--border); cursor: pointer; transition: all 0.2s; }
    .tc-dots button.on { background: var(--accent); transform: scale(1.35); }
    @media (max-width: 760px) { .tc { padding: 0 10px; } .tc-nav { display: none; } .tc-card { flex-basis: 94%; } .tc-meta { flex-direction: column; align-items: flex-start; } }

