/* Hesabım Cebimde — kurumsal site (uygulama markası ile uyumlu) */

:root {
  --primary: #5b5bd6;
  --primary-dark: #4343b0;
  --primary-light: #ededfc;
  --accent: #7c3aed;
  --income: #10b981;
  --expense: #f43f5e;
  --bg: #f4f6fb;
  --bg-dark: #0f1117;
  --card: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e8ecf4;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(17, 24, 39, 0.08);
  --shadow-lg: 0 24px 80px rgba(91, 91, 214, 0.18);
  --max: 1140px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 246, 251, 0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.06);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--text); }

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 16px rgba(91, 91, 214, 0.35);
}

.logo-icon-fallback {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(91, 91, 214, 0.35);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-desktop a:not(.btn) {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s;
}

.nav-desktop a:not(.btn):hover { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  text-decoration: none;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(91, 91, 214, 0.4);
}

.btn-primary:hover { color: #fff; box-shadow: 0 8px 28px rgba(91, 91, 214, 0.5); }

.btn-outline {
  background: var(--card);
  color: var(--text);
  border: 1.5px solid var(--border);
}

.btn-outline:hover { color: var(--primary); border-color: var(--primary); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 16px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 12px 0;
  color: var(--text);
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 12s ease-in-out infinite;
}

.blob-1 {
  width: 480px;
  height: 480px;
  background: rgba(91, 91, 214, 0.25);
  top: -120px;
  right: -80px;
}

.blob-2 {
  width: 360px;
  height: 360px;
  background: rgba(124, 58, 237, 0.2);
  bottom: 0;
  left: -100px;
  animation-delay: -4s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: rgba(16, 185, 129, 0.15);
  top: 40%;
  left: 45%;
  animation-delay: -8s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--card);
  color: var(--primary-dark);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.hero-badge img {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  object-fit: cover;
}

.hero h1 {
  font-size: clamp(2.35rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.hero h1 span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  margin: 0 0 28px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 36px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: var(--bg-dark);
  color: #fff;
  border-radius: 12px;
  font-size: 0.85rem;
}

.store-badge strong { display: block; font-size: 0.95rem; }

.store-badge.soon {
  background: var(--card);
  color: var(--text-muted);
  border: 1.5px dashed var(--border);
}

.hero-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.stat strong {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.stat span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Hero phones */
.hero-phones {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.device {
  position: absolute;
  background: #1a1d27;
  border-radius: 40px;
  padding: 10px;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.device::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 24px;
  background: #0f1117;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}

.device-screen {
  border-radius: 32px;
  overflow: hidden;
  background: var(--bg);
  line-height: 0;
  aspect-ratio: 390 / 844;
}

.device-screen img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.device-main {
  width: 260px;
  z-index: 3;
  transform: translateY(0);
}

.device-left {
  width: 210px;
  z-index: 1;
  left: 0;
  top: 50%;
  transform: translateY(-46%) rotate(-8deg) translateX(-8%);
  opacity: 0.92;
}

.device-right {
  width: 210px;
  z-index: 2;
  right: 0;
  top: 50%;
  transform: translateY(-54%) rotate(8deg) translateX(8%);
  opacity: 0.92;
}

.hero-phones:hover .device-main { transform: translateY(-6px) scale(1.02); }
.hero-phones:hover .device-left { transform: translateY(-46%) rotate(-10deg) translateX(-12%); }
.hero-phones:hover .device-right { transform: translateY(-54%) rotate(10deg) translateX(12%); }

.glow-ring {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(91, 91, 214, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.glow-ring::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px dashed rgba(91, 91, 214, 0.2);
}

/* Marquee */
.marquee-wrap {
  overflow: hidden;
  padding: 20px 0;
  background: var(--card);
  border-block: 1px solid var(--border);
}

.marquee {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee:hover { animation-play-state: paused; }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.marquee-item span { font-size: 1rem; }

/* Showcase */
.showcase {
  padding: 96px 0;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.showcase-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.showcase-tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.showcase-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.showcase-tab.active {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(91, 91, 214, 0.35);
}

.showcase-content h3 {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}

.showcase-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 24px;
}

.showcase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.showcase-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
}

.showcase-list li::before {
  content: '✓';
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.showcase-phone {
  display: flex;
  justify-content: center;
  position: relative;
}

.showcase-device {
  width: 300px;
  background: #1a1d27;
  border-radius: 44px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.showcase-device::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 26px;
  background: #0f1117;
  border-radius: 0 0 16px 16px;
  z-index: 2;
}

.showcase-panels { position: relative; }

.showcase-panels .showcase-panel img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  display: block;
}

.showcase-panel {
  display: none;
  animation: fadeIn 0.45s ease;
}

.showcase-panel.active { display: block; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Sections */
.section { padding: 96px 0; }
.section-alt { background: #fff; }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-header .eyebrow {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0;
}

/* Bento features */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  overflow: hidden;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.bento-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.bento-card.span-4 { grid-column: span 4; }
.bento-card.span-6 { grid-column: span 6; }
.bento-card.span-8 { grid-column: span 8; }

.bento-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.bento-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: 0;
  line-height: 1.6;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.bento-mini-screen {
  margin-top: 20px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  max-height: 280px;
}

.bento-mini-screen img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.bento-split {
  display: grid;
  grid-template-columns: 1fr minmax(148px, 200px);
  gap: 28px;
  align-items: center;
}

.bento-split-compact {
  grid-template-columns: 1fr minmax(120px, 156px);
  gap: 20px;
}

.bento-copy {
  min-width: 0;
}

.bento-copy .bento-icon {
  margin-bottom: 14px;
}

.bento-phone {
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.bento-phone-frame {
  width: 156px;
  background: #1a1d27;
  border-radius: 22px;
  padding: 7px;
  box-shadow: 0 16px 40px rgba(17, 24, 39, 0.14);
  position: relative;
}

.bento-phone-frame::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 14px;
  background: #0f1117;
  border-radius: 0 0 10px 10px;
  z-index: 1;
  pointer-events: none;
}

.bento-phone-frame img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
}

.bento-phone-lg .bento-phone-frame {
  width: 188px;
  border-radius: 26px;
  padding: 8px;
}

.bento-phone-lg .bento-phone-frame::before {
  width: 62px;
  height: 16px;
  top: 10px;
}

.bento-phone-lg .bento-phone-frame img {
  border-radius: 18px;
}

.bento-card.has-shot {
  display: block;
}

.bento-card.has-shot .bento-mini-screen {
  margin-top: auto;
}

.bento-highlight {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 60%);
  border-color: rgba(91, 91, 214, 0.2);
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.step {
  text-align: center;
  padding: 32px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(91, 91, 214, 0.35);
}

.step h3 { font-size: 1.1rem; margin: 0 0 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

.step-shot {
  width: 148px;
  margin: 0 auto 20px;
  background: #1a1d27;
  border-radius: 22px;
  padding: 6px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.12);
}

.step-shot img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  display: block;
}

/* Trust visuals */
.trust-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.trust-shot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 16px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.trust-shot:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.trust-shot-frame {
  background: #1a1d27;
  border-radius: 24px;
  padding: 8px;
  margin-bottom: 14px;
  box-shadow: 0 12px 32px rgba(17, 24, 39, 0.1);
}

.trust-shot-frame img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  display: block;
}

.trust-shot strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trust-shot span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* App gallery */
.app-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.gallery-item {
  background: #1a1d27;
  border-radius: 18px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.1);
  transition: transform 0.25s;
}

.gallery-item:hover { transform: translateY(-4px) scale(1.02); }

.gallery-item img {
  width: 100%;
  aspect-ratio: 390 / 844;
  object-fit: cover;
  object-position: top center;
  border-radius: 14px;
  display: block;
}

.gallery-item figcaption {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 10px;
  padding: 0 4px 4px;
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.trust-item {
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform 0.2s;
}

.trust-item:hover { transform: translateY(-2px); }

.trust-item .icon { font-size: 2rem; margin-bottom: 12px; }
.trust-item h3 { font-size: 0.95rem; margin: 0 0 6px; }
.trust-item p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* CTA */
.cta { padding: 80px 0; }

.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  border-radius: var(--radius-lg);
  padding: 72px 48px;
  text-align: center;
  color: #fff;
  box-shadow: 0 24px 80px rgba(91, 91, 214, 0.4);
}

.cta-box::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.cta-box h2 {
  position: relative;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  margin: 0 0 16px;
}

.cta-box p {
  position: relative;
  font-size: 1.1rem;
  opacity: 0.92;
  margin: 0 0 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .btn {
  position: relative;
  background: #fff;
  color: var(--primary-dark);
}

.cta-app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  margin: 0 auto 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Footer */
.site-footer {
  background: var(--bg-dark);
  color: #94a3b8;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { color: #fff; margin-bottom: 16px; }
.footer-brand p { font-size: 0.95rem; line-height: 1.7; margin: 0; max-width: 320px; }

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  font-size: 0.95rem;
  padding: 6px 0;
  transition: color 0.15s;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.85rem;
}

/* Legal pages */
.page-hero {
  padding: 48px 0 32px;
  background: linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 8px;
}

.page-hero .updated { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

.legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-content h2 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.legal-content p, .legal-content li { color: #334155; line-height: 1.7; }
.legal-content ul { padding-left: 1.25rem; }

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-phones { height: 480px; margin-top: 20px; }
  .device-main { width: 220px; }
  .device-left, .device-right { width: 175px; }
  .showcase-layout { grid-template-columns: 1fr; gap: 48px; }
  .showcase-phone { order: -1; }
  .trust-visuals { grid-template-columns: 1fr; max-width: 280px; margin-left: auto; margin-right: auto; }
  .app-gallery { grid-template-columns: repeat(3, 1fr); }
  .bento-card.span-4, .bento-card.span-6, .bento-card.span-8 { grid-column: span 6; }
  .bento-split, .bento-split-compact {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bento-phone { justify-content: flex-start; }
  .bento-phone-lg .bento-phone-frame { width: 168px; }
}

@media (max-width: 768px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .bento-card.span-4, .bento-card.span-6, .bento-card.span-8 { grid-column: span 12; }
  .bento-phone-frame { width: 140px; }
  .bento-phone-lg .bento-phone-frame { width: 152px; }
  .device-left, .device-right { display: none; }
  .device-main { position: relative; left: auto; right: auto; top: auto; transform: none; width: 240px; }
  .hero-phones { height: auto; padding: 20px 0; }
}

@media (max-width: 640px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .hero { padding: 48px 0 64px; }
  .section { padding: 64px 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .app-gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-box { padding: 48px 24px; }
}
