/* ============================================================
   BASE
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;700&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  /* Paleta nude / rosé */
  --nude-50:   #fdf8f5;
  --nude-100:  #f7ede4;
  --nude-200:  #efd8c8;
  --nude-300:  #e4c0a8;
  --nude-400:  #d4a088;
  --nude-500:  #c07d60;
  --nude-600:  #a8603e;
  --nude-700:  #8a4a2c;

  --rose-50:   #fdf2f0;
  --rose-100:  #f9ddd8;
  --rose-200:  #f0b8ad;
  --rose-400:  #d97060;
  --rose-500:  #c4584a;

  --warm-50:   #fefcfa;
  --warm-100:  #f9f4ef;
  --warm-200:  #f0e6da;

  /* Brand – mantém os laranja originais mapeados para os tons nude */
  --brand-start: #c07d60;
  --brand-end:   #a8603e;
  --brand-gradient: linear-gradient(135deg, #c07d60 0%, #a8603e 100%);
  --brand-gradient-hover: linear-gradient(135deg, #b06e52 0%, #964f30 100%);

  /* Neutros quentes */
  --ink-900: #2c1f17;
  --ink-800: #3d2b1f;
  --ink-700: #5a3f30;
  --ink-500: #8a6655;
  --ink-400: #b08070;
  --ink-300: #cba898;
  --ink-200: #e8d5c8;
  --ink-100: #f4ece6;

  /* Utility */
  --green-500: #6a9e7a;
  --green-100: #dff0e6;
  --red-400:   #c96060;
  --red-100:   #fae8e8;
  --amber-400: #c9a25a;

  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 3px rgba(60,30,10,.06);
  --shadow-sm: 0 2px 8px rgba(60,30,10,.08);
  --shadow-md: 0 6px 24px rgba(60,30,10,.09);
  --shadow-lg: 0 16px 48px rgba(60,30,10,.11);
  --shadow-xl: 0 28px 72px rgba(60,30,10,.13);

  --font-body:    'Inter', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--warm-50);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

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

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--brand-end);
  background: var(--rose-50);
  border: 1px solid var(--nude-200);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-500);
  max-width: 580px;
  margin: 0 auto 48px;
  text-align: center;
  font-weight: 300;
  line-height: 1.75;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s ease;
  border: none;
  font-family: var(--font-body);
  letter-spacing: .02em;
}

.btn-primary {
  background: var(--brand-gradient);
  color: #fff;
  box-shadow: 0 4px 16px rgba(168,96,62,.28);
}
.btn-primary:hover {
  background: var(--brand-gradient-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(168,96,62,.36);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--ink-600, var(--ink-500));
  border: 1.5px solid var(--nude-200);
}
.btn-ghost:hover {
  background: var(--nude-50);
  border-color: var(--nude-300);
}

.btn.full-width { width: 100%; justify-content: center; }
.btn-icon { width: 15px; height: 15px; flex-shrink: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 108px 0 88px;
  text-align: center;
  overflow: hidden;
  background: var(--warm-50);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -5%, rgba(192,125,96,.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(212,160,136,.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero .badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-end);
  background: var(--rose-50);
  border: 1px solid var(--nude-200);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--ink-900);
  margin-bottom: 22px;
}

.hero h1 span {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink-500);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 20px 36px;
}

.stat { text-align: center; padding: 0 28px; }
.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat-label { display: block; font-size: 12px; color: var(--ink-400); margin-top: 3px; font-weight: 400; letter-spacing: .03em; }
.stat-divider { width: 1px; height: 36px; background: var(--nude-200); }

/* ============================================================
   WHAT IS / MOCKUP
   ============================================================ */
.what-is {
  padding: 96px 0;
  text-align: center;
  background: var(--warm-100);
}

.mockup-wrapper {
  position: relative;
  display: inline-block;
  max-width: 880px;
  width: 100%;
  margin-top: 16px;
}

.mockup-browser {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--nude-200);
}

.browser-bar {
  background: var(--warm-100);
  border-bottom: 1px solid var(--nude-200);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--nude-200); }
.browser-dots span:nth-child(1) { background: #e8836e; }
.browser-dots span:nth-child(2) { background: var(--amber-400); }
.browser-dots span:nth-child(3) { background: var(--green-500); }

.browser-url {
  background: #fff;
  border: 1px solid var(--nude-200);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--ink-400);
  font-family: monospace;
  flex: 1;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}

.browser-content { padding: 0; }

/* Dashboard preview */
.dashboard-preview {
  display: flex;
  min-height: 320px;
  width: 100%;
  overflow: hidden;
}

.dash-sidebar {
  width: 172px;
  background: var(--ink-900);
  padding: 24px 0;
  flex-shrink: 0;
}

.dash-logo {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--nude-200);
  padding: 0 18px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  margin-bottom: 10px;
  letter-spacing: .04em;
}

.dash-nav-item {
  padding: 9px 18px;
  font-size: 12px;
  color: rgba(255,255,255,.45);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
}
.dash-nav-item:hover { background: rgba(255,255,255,.06); color: rgba(255,255,255,.75); }
.dash-nav-item.active { background: var(--brand-gradient); color: #fff; }

.badge-alert {
  background: var(--red-400);
  color: #fff;
  border-radius: 100px;
  padding: 1px 6px;
  font-size: 9px;
  font-weight: 600;
}

.dash-main { flex: 1 1 0; min-width: 0; width: 0; padding: 20px; background: var(--nude-50); overflow: hidden; }

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dash-header h4 { font-size: 13px; font-weight: 500; color: var(--ink-800); font-family: var(--font-display); }
.dash-date { font-size: 11px; color: var(--ink-400); }

.dash-cards { display: flex; gap: 10px; margin-bottom: 16px; }

.dash-card {
  flex: 1;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 12px;
  border: 1px solid var(--nude-200);
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-xs);
}
.alert-card { border-color: var(--red-100); background: #fdf5f5; }

.dash-card-icon { width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.dash-card-icon.green { background: var(--green-100); }
.dash-card-icon.blue  { background: var(--rose-50); }
.dash-card-icon.red   { background: var(--red-100); }

.dash-card-value { font-size: 18px; font-weight: 600; color: var(--ink-800); line-height: 1; font-family: var(--font-display); }
.dash-card-label { font-size: 10px; color: var(--ink-400); margin-top: 2px; }

.dash-chart-area {
  background: #fff;
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: var(--shadow-xs);
}
.chart-title { font-size: 11px; font-weight: 500; color: var(--ink-500); margin-bottom: 14px; }

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
}
.chart-bar-wrap { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px; height: 100%; justify-content: flex-end; }
.chart-bar {
  width: 100%;
  background: var(--nude-100);
  border-radius: 3px 3px 0 0;
  transition: height .5s ease;
}
.chart-bar.highlight { background: var(--brand-gradient); }
.chart-bar-label { font-size: 9px; color: var(--ink-400); }

/* Floating form card */
.float-form {
  position: absolute;
  right: -52px;
  top: 50%;
  transform: translateY(-50%);
  width: 230px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--nude-200);
  overflow: hidden;
}

.float-form-header {
  background: var(--brand-gradient);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.float-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}

.float-name { font-size: 12px; font-weight: 600; color: #fff; }
.float-day  { font-size: 10px; color: rgba(255,255,255,.75); }

.float-form-body { padding: 14px 16px; }

.form-question { font-size: 11px; font-weight: 500; color: var(--ink-700); margin-bottom: 8px; }

.form-scale { display: flex; gap: 4px; margin-bottom: 4px; }
.scale-dot {
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--nude-100); cursor: pointer; transition: background .15s;
}
.scale-dot.active { background: var(--brand-gradient); }

.scale-labels {
  display: flex; justify-content: space-between;
  font-size: 9px; color: var(--ink-400);
  margin-bottom: 10px;
}

.form-input-mock {
  background: var(--warm-100);
  border: 1px solid var(--nude-200);
  border-radius: 6px;
  padding: 8px 10px;
  font-size: 10px;
  color: var(--ink-400);
  margin-bottom: 10px;
  min-height: 38px;
}

.form-submit-btn {
  width: 100%;
  background: var(--brand-gradient);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 8px;
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .03em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 96px 0;
  text-align: center;
  background: var(--warm-50);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: left;
  transition: all .22s ease;
  position: relative;
}

.feature-card:hover {
  border-color: var(--nude-300);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card.featured {
  border-color: var(--nude-300);
  background: var(--rose-50);
  box-shadow: 0 0 0 1px var(--nude-200), var(--shadow-sm);
}

.feature-badge {
  position: absolute;
  top: -10px;
  left: 22px;
  background: var(--brand-gradient);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 100px;
}

.feature-icon {
  width: 42px; height: 42px;
  background: var(--warm-100);
  border: 1px solid var(--nude-200);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  color: var(--brand-end);
}
.feature-icon svg { width: 18px; height: 18px; }
.feature-card.featured .feature-icon { background: var(--rose-100); border-color: var(--nude-300); }

.feature-card h3 { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--ink-900); }
.feature-card p  { font-size: 13px; color: var(--ink-500); line-height: 1.7; font-weight: 300; }

/* ============================================================
   HOW IT WORKS / TIMELINE
   ============================================================ */
.how-it-works {
  padding: 96px 0;
  background: var(--warm-100);
  text-align: center;
}

.how-it-works h2 { margin-bottom: 56px; }

.timeline {
  display: flex;
  gap: 0;
  position: relative;
  max-width: 860px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(33.33% - 1px);
  right: calc(33.33% - 1px);
  height: 1px;
  background: linear-gradient(90deg, var(--nude-200), var(--nude-400));
}

.timeline-item { flex: 1; padding: 0 16px; text-align: center; }

.timeline-number {
  width: 52px; height: 52px;
  background: var(--brand-gradient);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--rose-100);
}

.timeline-phase {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-start);
  margin-bottom: 6px;
}

.timeline-content h3 { font-family: var(--font-display); font-size: 17px; font-weight: 500; margin-bottom: 8px; color: var(--ink-900); }
.timeline-content p  { font-size: 13px; color: var(--ink-500); line-height: 1.7; font-weight: 300; }

.timeline-duration {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--brand-end);
  background: #fff;
  border: 1px solid var(--nude-200);
  padding: 4px 12px;
  border-radius: 100px;
  margin-top: 12px;
}
.timeline-duration svg { width: 13px; height: 13px; }

/* ============================================================
   REQUIREMENTS + INVESTMENT
   ============================================================ */
.requirements { padding: 96px 0; background: var(--warm-50); }

.requirements-text p {
  color: var(--ink-500);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.75;
  font-weight: 300;
}

.req-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }

.req-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-700);
  font-weight: 400;
}
.req-list li svg {
  width: 17px; height: 17px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 3px;
}

.investment-card {
  background: #fff;
  border: 1px solid var(--nude-300);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.investment-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

.investment-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brand-end);
  margin-bottom: 10px;
}

.investment-price {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1;
  margin-bottom: 6px;
}
.investment-price span { font-size: 30px; }

.investment-desc { font-size: 13px; color: var(--ink-500); margin-bottom: 20px; font-weight: 300; }
.investment-divider { height: 1px; background: var(--nude-100); margin: 18px 0; }

.investment-extra { font-size: 14px; font-weight: 500; color: var(--ink-800); }
.investment-extra-desc { font-size: 12px; color: var(--ink-500); margin-top: 4px; margin-bottom: 4px; font-weight: 300; }

.investment-validity {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--ink-400);
  margin-bottom: 22px;
}
.investment-validity svg { width: 13px; height: 13px; flex-shrink: 0; }

/* ============================================================
   NEXT STEPS
   ============================================================ */
.next-steps {
  padding: 88px 0;
  background: var(--ink-900);
  text-align: center;
}

.next-steps .section-label {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--nude-300);
}

.next-steps h2 {
  color: var(--nude-100);
  margin-bottom: 44px;
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  width: 178px;
  text-align: center;
}

.step-num {
  width: 38px; height: 38px;
  background: var(--brand-gradient);
  color: #fff;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}

.step p { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.55; font-weight: 300; }

.step-arrow { font-size: 18px; color: rgba(255,255,255,.2); }

/* CTA WhatsApp */
.cta-whatsapp {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.cta-note {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm);
  padding: 12px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  max-width: 520px;
  text-align: left;
  font-weight: 300;
}
.cta-note svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: rgba(255,255,255,.35); }

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  background: #25d366;
  color: #fff;
  box-shadow: 0 6px 28px rgba(37,211,102,.3);
  transition: all .2s ease;
  font-family: var(--font-body);
  letter-spacing: .02em;
}
.btn-whatsapp:hover {
  background: #1fbb59;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(37,211,102,.38);
}
.btn-whatsapp:active { transform: translateY(0); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 28px 0;
  text-align: center;
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer p { font-size: 12px; color: rgba(255,255,255,.25); font-weight: 300; letter-spacing: .04em; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
  .features-grid { grid-template-columns: 1fr 1fr; }

  .mockup-wrapper { display: flex; flex-direction: column; align-items: center; gap: 20px; }

  .float-form {
    position: static;
    transform: none;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-lg);
  }

  .float-form-header { padding: 16px 20px; gap: 14px; }
  .float-avatar { width: 44px; height: 44px; font-size: 15px; }
  .float-name { font-size: 15px; }
  .float-day  { font-size: 13px; }

  .float-form-body { padding: 18px 20px; }
  .form-question { font-size: 13px; margin-bottom: 10px; }

  .form-scale { gap: 6px; margin-bottom: 6px; }
  .scale-dot { width: 24px; height: 24px; }

  .scale-labels { font-size: 11px; margin-bottom: 14px; }

  .form-input-mock {
    font-size: 13px;
    padding: 10px 12px;
    min-height: 52px;
    margin-bottom: 14px;
  }

  .form-submit-btn { font-size: 14px; padding: 12px; }
}

@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }

  .hero-stats {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .stat-divider { width: 60px; height: 1px; }
  .stat { padding: 0; }

  .features-grid { grid-template-columns: 1fr; }

  .timeline { flex-direction: column; gap: 32px; }
  .timeline::before { display: none; }
  .timeline-item { text-align: left; display: flex; align-items: flex-start; gap: 20px; }
  .timeline-number { flex-shrink: 0; margin: 0; }
  .timeline-content h3 { margin-top: 4px; }

  .steps-grid { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); }

  .cta-whatsapp { padding: 0 16px; }
  .btn-whatsapp { font-size: 15px; padding: 14px 24px; width: 100%; justify-content: center; }

  .mockup-browser { width: 100%; }
  .dashboard-preview { flex-direction: column; width: 100%; }
  .dash-sidebar {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    padding: 10px 12px;
    gap: 0;
    align-items: center;
  }
  .dash-logo { border-bottom: none; padding-bottom: 0; margin-bottom: 0; margin-right: auto; }
  .dash-nav { display: flex; flex-wrap: wrap; gap: 4px; }
  .dash-nav-item { padding: 4px 10px; font-size: 11px; border-radius: 4px; }
  .dash-main { width: 100%; flex: none; box-sizing: border-box; }
  .dash-cards { flex-wrap: wrap; }
  .dash-card { min-width: 0; flex: 1 1 100px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero { padding: 72px 0 60px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .investment-card { padding: 28px 20px; }
}
