/* ============================================================
   Bütçen Kolay - landing.css
   Premium fintech landing page - plain custom CSS
   ============================================================ */

.landing-page {
  --bg: #f6f7fb;
  --bg-soft: #eef1f7;
  --surface: #ffffff;
  --ink: #0e1526;
  --ink-soft: #4a5468;
  --ink-muted: #838da0;
  --line: #e4e8f0;
  --brand: #2f6bff;
  --brand-strong: #1f52d8;
  --cyan: #16c7d6;
  --purple: #7b5cff;
  --up: #16a86b;
  --down: #e0533d;
  --dark: #0d1324;
  --dark-soft: #161d33;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 20px 50px -24px rgba(20, 33, 66, 0.28);
  --shadow-card: 0 12px 30px -18px rgba(20, 33, 66, 0.35);

  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}

.landing-page *,
.landing-page *::before,
.landing-page *::after {
  box-sizing: border-box;
}

.landing-page a {
  text-decoration: none;
  color: inherit;
}

.landing-page h1,
.landing-page h2,
.landing-page h3,
.landing-page p {
  margin: 0;
}

.landing-container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.landing-btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(47, 107, 255, 0.6);
}
.landing-btn-primary:hover {
  background: var(--brand-strong);
  transform: translateY(-2px);
}

.landing-btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-color: var(--line);
  backdrop-filter: blur(8px);
}
.landing-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: #cdd4e2;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.landing-navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 247, 251, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(228, 232, 240, 0.7);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.landing-page .brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  text-decoration: none;
}

.landing-page .brand-mark {
  position: relative;
  isolation: isolate;
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.55), transparent 24%),
    linear-gradient(145deg, #3478ff 0%, #1f5cff 48%, #19c7a6 100%);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 14px 32px -18px rgba(31, 92, 255, 0.85),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.landing-page .brand-mark::after {
  content: "";
  position: absolute;
  inset: auto -18% -42% 22%;
  height: 70%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transform: rotate(-18deg);
  z-index: -1;
}

.landing-page .brand-mark-letter {
  position: relative;
  z-index: 1;
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  transform: translate(-0.08rem, -0.03rem);
}

.landing-page .brand-mark-signal {
  position: absolute;
  right: 0.36rem;
  bottom: 0.35rem;
  z-index: 1;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.08rem;
}

.landing-page .brand-mark-signal span {
  display: block;
  width: 0.12rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
}

.landing-page .brand-mark-signal span:nth-child(1) { height: 0.18rem; }
.landing-page .brand-mark-signal span:nth-child(2) { height: 0.31rem; }
.landing-page .brand-mark-signal span:nth-child(3) { height: 0.48rem; }

.landing-page .brand-name {
  font-weight: 750;
  letter-spacing: -0.02em;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-link:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
}
.nav-link-quiet {
  color: var(--ink);
}

.nav-btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  box-shadow: 0 12px 26px -14px rgba(47, 107, 255, 0.7);
  transition: transform 0.2s ease, background 0.2s ease;
}
.nav-btn:hover {
  background: var(--brand-strong);
  transform: translateY(-1px);
}
.nav-btn-block {
  display: block;
  text-align: center;
  margin-top: 4px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 24px 22px;
  background: rgba(246, 247, 251, 0.96);
  border-bottom: 1px solid var(--line);
}
.mobile-link {
  padding: 12px 10px;
  border-radius: 12px;
  font-weight: 500;
  color: var(--ink-soft);
}
.mobile-link:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: 90px 0 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(20, 33, 66, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(20, 33, 66, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 40%, transparent 100%);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
.glow-blue {
  width: 520px;
  height: 520px;
  background: rgba(47, 107, 255, 0.45);
  top: 120px;
  left: 50%;
  transform: translateX(-60%);
}
.glow-cyan {
  width: 360px;
  height: 360px;
  background: rgba(22, 199, 214, 0.4);
  top: 240px;
  right: 8%;
}
.glow-purple {
  width: 420px;
  height: 420px;
  background: rgba(123, 92, 255, 0.4);
  top: 180px;
  left: 6%;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  color: var(--brand-strong);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 16ch;
  text-wrap: balance;
}

.hero-subtitle {
  margin-top: 22px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 60ch;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 34px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ---------- Hero product shell ---------- */
.hero-product-shell {
  width: 100%;
  max-width: 1080px;
  margin-top: 64px;
  perspective: 1600px;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.finance-dashboard {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px);
  overflow: hidden;
  text-align: left;
}
.finance-dashboard[data-float] {
  animation: floaty 7s ease-in-out infinite;
}

.landing-page .hero-product-shell::before,
.landing-page .finance-dashboard::before {
  content: none !important;
  display: none !important;
}

.landing-page .finance-dashboard {
  position: relative;
  display: block;
  grid-template-columns: none;
  grid-template-areas: none;
  gap: 0;
  padding: 0;
  color: var(--ink);
}

.landing-page .finance-dashboard > * {
  position: static;
  z-index: auto;
}

.landing-page .finance-dashboard span,
.landing-page .finance-dashboard small {
  color: inherit;
  font-weight: inherit;
}

.landing-page .dash-dot,
.landing-page .mini-chart span,
.landing-page .cat-bar,
.landing-page .cat-bar i,
.landing-page .inst-bar span,
.landing-page .di-bar span {
  display: block;
}

.landing-page .dash-chip,
.landing-page .panel-tag,
.landing-page .upc-date {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.landing-page .stmt-ico {
  display: grid;
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}
.dash-topbar-left {
  display: flex;
  gap: 7px;
}
.dash-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #d5dbe7;
}
.dash-dot:nth-child(1) { background: #ff6159; }
.dash-dot:nth-child(2) { background: #ffbd2e; }
.dash-dot:nth-child(3) { background: #28c840; }
.dash-topbar-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
}
.dash-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

.dash-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  padding: 22px;
}

.dashboard-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.panel-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
}
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.panel-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  color: var(--ink-soft);
}

/* Net panel */
.panel-net {
  grid-column: span 4;
  background: linear-gradient(150deg, #ffffff, #f2f6ff);
}
.panel-net-value {
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0 18px;
}
.panel-net-value span {
  font-size: 1.1rem;
  color: var(--ink-muted);
  font-weight: 600;
}
.net-stats {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.net-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.net-stat-label {
  font-size: 12px;
  color: var(--ink-muted);
}
.net-stat-value {
  font-size: 17px;
  font-weight: 700;
}
.net-stat-value.up { color: var(--up); }
.net-stat-value.down { color: var(--down); }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 74px;
}
.mini-chart span {
  flex: 1;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--brand), rgba(47, 107, 255, 0.35));
}

/* Goal panel */
.panel-goal {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.progress-ring {
  position: relative;
  display: block;
  width: 120px;
  height: 120px;
  margin: 12px 0 10px;
  border-radius: 0;
  background: transparent;
}
.progress-ring svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.ring-bg {
  fill: none;
  stroke: var(--bg-soft);
  stroke-width: 12;
}
.ring-fg {
  fill: none;
  stroke: url(#g) var(--brand);
  stroke: var(--brand);
  stroke-width: 12;
  stroke-linecap: round;
  stroke-dasharray: 327;
  stroke-dashoffset: 105;
}
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.landing-page .progress-ring .ring-pct {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 24px;
  font-weight: 700;
}
.landing-page .progress-ring .ring-sub {
  width: auto;
  height: auto;
  border-radius: 0;
  background: transparent;
  font-size: 12px;
  color: var(--ink-muted);
}
.goal-meta {
  font-size: 15px;
  font-weight: 700;
}
.goal-target {
  color: var(--ink-muted);
  font-weight: 500;
}

/* Card statement */
.panel-card {
  grid-column: span 3;
}
.stmt-amount {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 14px;
}
.stmt-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stmt-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.stmt-ico {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-strong);
  background: rgba(47, 107, 255, 0.12);
}
.stmt-name { flex: 1; color: var(--ink-soft); }
.stmt-val { font-weight: 600; }

/* Installments */
.panel-installments {
  grid-column: span 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.installment { display: flex; flex-direction: column; gap: 7px; }
.inst-top {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}
.inst-count { color: var(--ink-muted); font-weight: 500; }
.inst-bar {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}
.inst-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--brand));
}

/* Categories */
.panel-categories {
  grid-column: span 3;
}
.cat-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cat-list li {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.cat-name {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-weight: 500;
}
.cat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: inline-block;
}
.dot-blue { background: var(--brand); }
.dot-cyan { background: var(--cyan); }
.dot-purple { background: var(--purple); }
.dot-slate { background: #94a0b8; }
.cat-bar {
  height: 7px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
}
.cat-bar i {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
}
.cat-val { font-weight: 600; color: var(--ink); }

/* Upcoming */
.panel-upcoming {
  grid-column: span 3;
}
.upc-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.upc-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
}
.upc-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand-strong);
  background: rgba(47, 107, 255, 0.1);
  padding: 5px 10px;
  border-radius: 8px;
  min-width: 58px;
  text-align: center;
}
.upc-name { flex: 1; color: var(--ink-soft); }
.upc-val { font-weight: 600; }

/* ============================================================
   PRODUCT TOUR
   ============================================================ */
.landing-page .product-tour-section {
  position: relative;
  overflow: hidden;
  padding: 86px 0 96px;
  background:
    radial-gradient(circle at 14% 8%, rgba(47, 107, 255, 0.12), transparent 34%),
    radial-gradient(circle at 88% 16%, rgba(22, 199, 214, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(238, 241, 247, 0.72));
  border-top: 1px solid rgba(228, 232, 240, 0.72);
  border-bottom: 1px solid rgba(228, 232, 240, 0.72);
}

.landing-page .section-subtitle {
  max-width: 68ch;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 1.04rem;
  text-wrap: pretty;
}

.landing-page .product-tour-shell {
  display: grid;
  grid-template-columns: clamp(236px, 20vw, 292px) minmax(0, 1fr);
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 28px 70px -34px rgba(20, 33, 66, 0.42);
  backdrop-filter: blur(22px);
}

.landing-page .tour-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 251, 0.76)),
    radial-gradient(circle at 10% 0%, rgba(47, 107, 255, 0.12), transparent 42%);
  border-right: 1px solid var(--line);
}

.landing-page .tour-tab {
  appearance: none;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 64px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 18px;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing-page .tour-tab:hover,
.landing-page .tour-tab:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(228, 232, 240, 0.9);
}

.landing-page .tour-tab:focus-visible {
  outline: 3px solid rgba(47, 107, 255, 0.18);
  outline-offset: 2px;
}

.landing-page .tour-tab.is-active {
  color: var(--ink);
  background: #fff;
  border-color: rgba(47, 107, 255, 0.18);
  box-shadow: 0 14px 30px -22px rgba(20, 33, 66, 0.42);
  transform: translateX(2px);
}

.landing-page .tour-tab-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(47, 107, 255, 0.09);
  color: var(--brand);
  font-size: 17px;
  font-weight: 800;
}

.landing-page .tour-tab strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
}

.landing-page .tour-tab small {
  display: block;
  margin-top: 3px;
  color: var(--ink-muted);
  font-size: 11px;
  line-height: 1.35;
}

.landing-page .tour-screen {
  min-height: 560px;
  min-width: 0;
  overflow: hidden;
  padding: clamp(18px, 2vw, 26px);
}

.landing-page .tour-panel {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 1.7vw, 22px);
  align-items: stretch;
  height: 100%;
  min-width: 0;
}

.landing-page .tour-panel[hidden],
.landing-page .tour-panel:not(.is-active) {
  display: none;
}

.landing-page .tour-copy,
.landing-page .tour-mini-app {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.landing-page .tour-copy {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "eyebrow"
    "title"
    "text"
    "kpis";
  row-gap: clamp(10px, 1.25vw, 16px);
  align-items: start;
  padding: clamp(20px, 2.35vw, 30px);
}

.landing-page .tour-eyebrow {
  grid-area: eyebrow;
  display: inline-flex;
  align-self: flex-start;
  justify-self: start;
  margin-bottom: 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(47, 107, 255, 0.09);
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .tour-copy h3 {
  grid-area: title;
  max-width: 24ch;
  font-size: clamp(2rem, 3.05vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.landing-page .tour-copy p {
  grid-area: text;
  margin-top: 2px;
  max-width: 64ch;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
}

.landing-page .tour-kpi-grid {
  grid-area: kpis;
  display: grid;
  grid-template-columns: repeat(3, minmax(172px, 1fr));
  gap: 14px;
  margin-top: clamp(4px, 0.8vw, 10px);
  min-width: 0;
}

.landing-page .tour-kpi {
  min-width: 0;
  min-height: 88px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid rgba(228, 232, 240, 0.86);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff, rgba(246, 247, 251, 0.72));
  overflow: hidden;
}

.landing-page .tour-kpi span {
  display: block;
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: normal;
}

.landing-page .tour-kpi strong {
  display: block;
  margin-top: 8px;
  color: var(--up);
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
  overflow-wrap: normal;
  word-break: normal;
  white-space: nowrap;
}

.landing-page .tour-kpi strong.tour-danger,
.landing-page .tour-danger {
  color: var(--down);
}

.landing-page .tour-mini-app {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  min-height: clamp(300px, 31vw, 380px);
  padding: clamp(18px, 1.8vw, 22px);
  background:
    radial-gradient(circle at 80% 4%, rgba(22, 199, 214, 0.16), transparent 32%),
    radial-gradient(circle at 20% 16%, rgba(47, 107, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
}

.landing-page .tour-window-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 40px;
  margin: -2px -2px 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 700;
}

.landing-page .tour-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.landing-page .tour-window-bar span:nth-child(1) { background: #ff6159; }
.landing-page .tour-window-bar span:nth-child(2) { background: #ffbd2e; }
.landing-page .tour-window-bar span:nth-child(3) { background: #28c840; }
.landing-page .tour-window-bar strong {
  min-width: 0;
  margin-left: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-page .tour-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: 14px;
}

.landing-page .tour-card {
  min-width: 0;
  min-height: 150px;
  padding: clamp(14px, 1.4vw, 18px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.landing-page .tour-card-wide {
  grid-row: span 2;
}

.landing-page .tour-card span,
.landing-page .tour-card small {
  display: block;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 700;
}

.landing-page .tour-card strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: clamp(1.22rem, 2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  overflow-wrap: anywhere;
}

.landing-page .tour-bars {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: clamp(82px, 8vw, 112px);
  margin-top: 24px;
}

.landing-page .tour-bars i {
  flex: 1;
  display: block;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, var(--brand), rgba(47, 107, 255, 0.22));
}

.landing-page .tour-ring {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: conic-gradient(var(--brand) 0 68%, var(--bg-soft) 68% 100%);
}

.landing-page .tour-ring b {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-size: 1.35rem;
}

.landing-page .tour-list,
.landing-page .tour-security-stack {
  display: grid;
  gap: 12px;
}

.landing-page .tour-list-compact {
  margin-top: 14px;
}

.landing-page .tour-row,
.landing-page .tour-security-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
}

.landing-page .tour-row strong,
.landing-page .tour-security-row em {
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

.landing-page .tour-status {
  width: 12px;
  height: 12px;
  border-radius: 999px;
}

.landing-page .tour-green { background: var(--up); }
.landing-page .tour-blue { background: var(--brand); }
.landing-page .tour-amber { background: #f5a300; }

.landing-page .tour-note {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(47, 107, 255, 0.08);
  color: var(--ink-soft);
  font-size: 14px;
}

.landing-page .tour-category {
  display: grid;
  grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.3fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.landing-page .tour-category:last-child {
  border-bottom: 0;
}

.landing-page .tour-category span {
  color: var(--ink-soft);
  font-weight: 700;
}

.landing-page .tour-category i {
  display: block;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--bg-soft);
}

.landing-page .tour-category b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--cyan));
}

.landing-page .tour-category strong {
  color: var(--ink);
}

.landing-page .tour-card-preview {
  display: grid;
  align-content: center;
  gap: 14px;
}

.landing-page .tour-credit-card {
  min-height: 188px;
  padding: 24px;
  border-radius: 26px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.36), transparent 24%),
    linear-gradient(135deg, #1f5cff, #7b5cff 52%, #16c7d6);
  box-shadow: 0 22px 48px -26px rgba(47, 107, 255, 0.8);
}

.landing-page .tour-credit-card span,
.landing-page .tour-credit-card small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.landing-page .tour-credit-card strong {
  display: block;
  margin: 34px 0 18px;
  font-size: 1.45rem;
  letter-spacing: 0.08em;
}

.landing-page .tour-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.landing-page .tour-timeline::before {
  content: "";
  position: absolute;
  left: 9%;
  right: 9%;
  top: 35px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--brand), var(--purple));
}

.landing-page .tour-timeline div {
  position: relative;
  min-height: 190px;
  padding: 78px 14px 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.landing-page .tour-timeline span {
  position: absolute;
  top: 18px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  color: #fff;
  background: var(--brand);
  transform: translateX(-50%);
  font-weight: 800;
}

.landing-page .tour-timeline strong,
.landing-page .tour-timeline small {
  display: block;
}

.landing-page .tour-timeline small {
  margin-top: 8px;
  color: var(--ink-muted);
  font-weight: 700;
}

.landing-page .tour-security-stack {
  margin-top: 32px;
}

.landing-page .tour-security-row span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: rgba(22, 168, 107, 0.1);
  color: var(--up);
  font-weight: 900;
}

.landing-page .tour-security-row em {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(22, 168, 107, 0.12);
  color: var(--up);
  font-size: 12px;
}

.landing-page .tour-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 22px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.landing-page .tour-cta-kicker {
  display: block;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.landing-page .tour-cta strong {
  display: block;
  margin-top: 4px;
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

/* ============================================================
   SHOWCASE SECTIONS
   ============================================================ */
.showcase-section {
  padding: 90px 0;
}
.showcase-alt {
  background: var(--bg-soft);
}
.showcase-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
}
.showcase-reverse .showcase-text { order: 2; }
.showcase-reverse .showcase-scene { order: 1; }

.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 14px;
}
.showcase-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-wrap: balance;
}
.showcase-desc {
  margin-top: 16px;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
  text-wrap: pretty;
}

.showcase-scene {
  min-width: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-soft);
  min-height: 280px;
  display: flex;
  align-items: center;
}
.showcase-alt .showcase-scene {
  background: #ffffff;
}

/* Timeline scene */
.timeline-scene {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  padding: 20px 6px;
}
.tl-track {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--cyan), var(--purple));
  border-radius: 999px;
}
.tl-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  z-index: 1;
  flex: 1;
  min-width: 0;
}
.tl-node {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px -3px rgba(20, 33, 66, 0.4);
}
.node-blue { background: var(--brand); }
.node-cyan { background: var(--cyan); }
.node-purple { background: var(--purple); }
.node-slate { background: #94a0b8; }
.tl-day {
  font-size: 12px;
  color: var(--ink-muted);
  margin-top: 6px;
}
.tl-label {
  font-size: 13px;
  font-weight: 600;
}
.tl-amt {
  font-size: 13px;
  font-weight: 700;
}
.tl-amt.up { color: var(--up); }
.tl-amt.down { color: var(--down); }

/* Dark scene (card + installments) */
.dark-scene {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.credit-card {
  background: linear-gradient(140deg, var(--dark), #23305a 60%, var(--purple));
  border-radius: 20px;
  padding: 24px;
  color: #fff;
  box-shadow: 0 22px 44px -20px rgba(13, 19, 36, 0.7);
}
.cc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.cc-bank { font-weight: 700; letter-spacing: 0.02em; }
.cc-chip {
  width: 40px;
  height: 28px;
  border-radius: 7px;
  background: linear-gradient(135deg, #f4d27a, #c79b3c);
}
.cc-number {
  font-size: 20px;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  font-variant-numeric: tabular-nums;
}
.cc-bottom {
  display: flex;
  gap: 40px;
}
.cc-label {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 4px;
}
.cc-value {
  font-size: 16px;
  font-weight: 700;
}

.dark-installments {
  background: var(--dark-soft);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.di-row {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  align-items: center;
  gap: 16px;
  color: #fff;
}
.di-info { display: flex; flex-direction: column; }
.di-name { font-size: 14px; font-weight: 600; }
.di-sub { font-size: 12px; color: rgba(255, 255, 255, 0.55); }
.di-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}
.di-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--brand));
}
.di-amt { font-size: 14px; font-weight: 700; text-align: right; }

/* Security panel scene */
.security-panel {
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sec-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}
.sec-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--purple));
}
.sec-copy { flex: 1; display: flex; flex-direction: column; }
.sec-name { font-size: 15px; font-weight: 600; }
.sec-sub { font-size: 13px; color: var(--ink-muted); }
.sec-state {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.sec-state.on {
  color: var(--up);
  background: rgba(22, 168, 107, 0.12);
}
.sec-mask {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-muted);
  letter-spacing: 0.1em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.feature-section {
  padding: 90px 0;
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  text-wrap: balance;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 44px -22px rgba(20, 33, 66, 0.4);
}
.feature-ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: var(--brand-strong);
  background: rgba(47, 107, 255, 0.1);
  margin-bottom: 18px;
}
.feature-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.feature-desc {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============================================================
   SECURITY BAND
   ============================================================ */
.security-band {
  padding: 90px 0;
  background: var(--bg-soft);
}
.security-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sec-mini {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
}
.sec-mini-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--brand-strong);
  background: rgba(47, 107, 255, 0.1);
}
.sec-mini-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section {
  padding: 90px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.how-step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-card);
}
.how-num {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--purple));
  margin-bottom: 18px;
}
.how-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.how-desc {
  font-size: 14px;
  color: var(--ink-soft);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--dark);
  color: #fff;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg .glow-blue {
  background: rgba(47, 107, 255, 0.5);
  top: -80px;
  left: 20%;
}
.cta-bg .glow-purple {
  background: rgba(123, 92, 255, 0.45);
  bottom: -120px;
  right: 15%;
  top: auto;
}
.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.cta-desc {
  margin-top: 16px;
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 52ch;
}
.final-cta .hero-actions {
  margin-top: 30px;
}
.final-cta .landing-btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}
.final-cta .landing-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

/* ============================================================
   FOOTER
   ============================================================ */
.landing-footer {
  padding: 40px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 14px;
  color: var(--ink-soft);
}
.footer-links a:hover {
  color: var(--ink);
}
.footer-copy {
  font-size: 13px;
  color: var(--ink-muted);
  width: 100%;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .finance-dashboard[data-float] { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dash-grid { grid-template-columns: repeat(4, 1fr); }
  .panel-net { grid-column: span 4; }
  .panel-goal { grid-column: span 2; }
  .panel-card,
  .panel-installments,
  .panel-categories,
  .panel-upcoming { grid-column: span 2; }

  .showcase-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .showcase-reverse .showcase-text { order: 1; }
  .showcase-reverse .showcase-scene { order: 2; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; }

}

@media (max-width: 1280px) {
  .landing-page .product-tour-shell {
    grid-template-columns: minmax(220px, 258px) minmax(0, 1fr);
  }
  .landing-page .tour-menu {
    padding: 16px;
  }
  .landing-page .tour-tab {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 10px;
    min-height: 60px;
    padding: 9px 10px;
  }
  .landing-page .tour-tab-icon {
    width: 34px;
    height: 34px;
  }
  .landing-page .tour-panel {
    grid-template-columns: 1fr;
  }
  .landing-page .tour-copy {
    grid-template-columns: 1fr;
  }
  .landing-page .tour-copy h3 {
    font-size: clamp(1.92rem, 2.75vw, 3rem);
  }
  .landing-page .tour-kpi-grid {
    grid-template-columns: repeat(3, minmax(148px, 1fr));
  }
}

@media (max-width: 900px) {
  .landing-page .product-tour-shell {
    grid-template-columns: 1fr;
  }
  .landing-page .tour-menu {
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    scroll-padding: 18px;
  }
  .landing-page .tour-tab {
    min-width: 238px;
    transform: none;
  }
  .landing-page .tour-tab.is-active {
    transform: none;
  }
  .landing-page .tour-panel {
    grid-template-columns: 1fr;
  }
  .landing-page .tour-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "text"
      "kpis";
    align-items: start;
  }
  .landing-page .tour-kpi-grid {
    grid-template-columns: repeat(auto-fit, minmax(142px, 1fr));
    margin-top: 10px;
  }
  .landing-page .tour-screen {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .navbar-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-section { padding: 60px 0 50px; }
  .hero-product-shell { margin-top: 40px; }

  .dash-grid {
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 14px;
  }
  .panel-net,
  .panel-goal,
  .panel-card,
  .panel-installments,
  .panel-categories,
  .panel-upcoming { grid-column: span 1; }

  .net-stats { gap: 18px; }
  .dash-topbar-title { display: none; }

  .timeline-scene {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .tl-track {
    left: 7px;
    right: auto;
    top: 6px;
    bottom: 6px;
    width: 3px;
    height: auto;
  }
  .tl-item {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
  }
  .tl-day { margin-top: 0; min-width: 56px; }
  .tl-label { flex: 1; }

  .cc-bottom { gap: 24px; }
  .di-row { grid-template-columns: 1fr auto; }
  .di-bar { grid-column: 1 / -1; order: 3; }

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

  .landing-page .product-tour-section {
    padding: 60px 0;
  }
  .landing-page .product-tour-shell {
    border-radius: 24px;
  }
  .landing-page .tour-menu {
    padding: 14px;
  }
  .landing-page .tour-tab {
    min-width: 210px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-height: 58px;
  }
  .landing-page .tour-tab-icon {
    width: 34px;
    height: 34px;
  }
  .landing-page .tour-screen {
    padding: 14px;
  }
  .landing-page .tour-copy,
  .landing-page .tour-mini-app {
    border-radius: 22px;
  }
  .landing-page .tour-kpi-grid,
  .landing-page .tour-dashboard-grid,
  .landing-page .tour-timeline {
    grid-template-columns: 1fr;
  }
  .landing-page .tour-card-wide {
    grid-row: auto;
  }
  .landing-page .tour-mini-app {
    min-height: 0;
  }
  .landing-page .tour-category,
  .landing-page .tour-row,
  .landing-page .tour-security-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .landing-page .tour-timeline::before {
    left: 32px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 3px;
    height: auto;
  }
  .landing-page .tour-timeline div {
    min-height: 0;
    padding: 18px 18px 18px 78px;
    text-align: left;
  }
  .landing-page .tour-timeline span {
    left: 32px;
    transform: translateX(-50%);
  }
  .landing-page .tour-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .landing-page .tour-cta .landing-btn {
    width: 100%;
  }

  .showcase-section,
  .feature-section,
  .security-band,
  .how-section { padding: 60px 0; }

  .hero-actions .landing-btn,
  .cta-inner .landing-btn { width: 100%; }
  .hero-actions,
  .final-cta .hero-actions { width: 100%; }

  .footer-inner { flex-direction: column; align-items: flex-start; }
}
