:root {
  --bg: #0a0a0a;
  --white: #f0ede8;
  --teal: #00FFEC;
  --yellow: #F5E642;
  --gray: #1a1a1a;
  --border: #252525;
  --mid: #555;
  --light: #888;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  overflow-x: hidden;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 60px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

nav.scrolled {
  background: rgba(10,10,10,0.95);
  border-color: var(--border);
  backdrop-filter: blur(12px);
}

.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span { color: var(--teal); }
.nav-logo img { height: 18px; display: block; }

.nav-cta {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--yellow);
  padding: 10px 22px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--teal); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,255,236,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,255,236,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { transform: translateY(0); }
  100% { transform: translateY(80px); }
}

.hero-timer {
  position: absolute;
  top: 140px; right: 60px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--mid);
  letter-spacing: 0.15em;
  text-align: right;
  animation: fadeIn 1.2s ease both;
  animation-delay: 0.8s;
}

.hero-timer .clock {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--border);
  letter-spacing: -0.03em;
  display: block;
  margin-top: 8px;
}

.hero-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.1s;
}

.hero h1 {
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 900px;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.2s;
}

.hero h1 em {
  font-style: normal;
  color: var(--yellow);
}

.hero h1 .teal { color: var(--teal); }

.hero-sub {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 400;
  color: var(--light);
  max-width: 600px;
  line-height: 1.7;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.35s;
}

.hero-meta {
  margin-top: 48px;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.5s;
}

.hero-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  color: var(--light);
  letter-spacing: 0.08em;
}

.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--yellow);
  color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s, gap 0.2s;
}

.hero-btn:hover {
  background: var(--teal);
  gap: 18px;
}

.hero-btn .arrow { font-size: 18px; }

.hero-line {
  position: absolute;
  bottom: 0; left: 60px; right: 60px;
  height: 1px;
  background: linear-gradient(to right, var(--teal), transparent 60%);
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ─── SECTION BASE ─── */
section { padding: 100px 60px; }

.section-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

/* ─── MANIFESTO STRIP ─── */
.manifesto {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.manifesto-statement {
  font-weight: 900;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.manifesto-statement em {
  font-style: normal;
  color: var(--yellow);
  display: block;
}

.manifesto-body {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  font-weight: 400;
}

.manifesto-body strong {
  color: var(--white);
  font-weight: 700;
}

.manifesto--centered {
  grid-template-columns: 1fr;
  text-align: center;
  gap: 24px;
}

.manifesto-subtitle {
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--light);
  font-weight: 400;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ─── PROCESS / TIMELINE ─── */
.process-section { padding: 100px 60px; }

.process-section h2 {
  font-weight: 900;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 8px;
}

.process-section h2 span { color: var(--teal); }

.process-intro {
  font-size: 15px;
  color: var(--light);
  max-width: 560px;
  line-height: 1.7;
  margin-top: 20px;
  margin-bottom: 72px;
}

.phases {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.phase-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-top: 1px solid var(--border);
  padding: 48px 0;
  gap: 60px;
  transition: background 0.2s;
  position: relative;
}

.phase-card::before {
  content: '';
  position: absolute;
  left: -60px; right: -60px; top: 0; bottom: 0;
  background: transparent;
  transition: background 0.2s;
  pointer-events: none;
}

.phase-card:hover::before {
  background: rgba(255,255,255,0.015);
}

.phase-card:last-child { border-bottom: 1px solid var(--border); }

.phase-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.phase-num {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.2em;
}

.phase-timing {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.05em;
}

.phase-timing-bar {
  height: 3px;
  border-radius: 2px;
  margin-top: 8px;
  max-width: 120px;
}

.phase-right { display: flex; flex-direction: column; gap: 20px; }

.phase-title {
  font-weight: 900;
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

.phase-desc {
  font-size: 14px;
  color: var(--light);
  line-height: 1.75;
  max-width: 620px;
  font-weight: 400;
}

.phase-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.phase-step {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: #999;
  line-height: 1.5;
  align-items: flex-start;
}

.phase-step .arrow {
  font-family: 'IBM Plex Mono', monospace;
  color: var(--mid);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Phase colors — 6 fases: teal → yellow → #FF9500 → teal → yellow → teal */
.p1 .phase-title { color: var(--teal); }
.p1 .phase-timing-bar { background: var(--teal); }

.p2 .phase-title { color: var(--yellow); }
.p2 .phase-timing-bar { background: var(--yellow); }

.p3 .phase-title { color: #FF9500; }
.p3 .phase-timing-bar { background: #FF9500; }

.p4 .phase-title { color: var(--teal); }
.p4 .phase-timing-bar { background: var(--teal); }

.p5 .phase-title { color: var(--yellow); }
.p5 .phase-timing-bar { background: var(--yellow); }

.p6 .phase-title { color: var(--teal); }
.p6 .phase-timing-bar { background: var(--teal); }

/* ─── ORDER MATTERS ─── */
.order-section {
  background: var(--gray);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}

.order-section h2 {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 56px;
}

.order-section h2 span { color: var(--yellow); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 32px 40px 32px 0;
  border-bottom: 1px solid var(--border);
}

.benefit-card:nth-child(odd) {
  padding-right: 60px;
  border-right: 1px solid var(--border);
}

.benefit-card:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
}

.benefit-card:nth-last-child(-n+2) { border-bottom: none; }

.benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  font-weight: 700;
}

.benefit-text strong {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.benefit-text span {
  font-size: 14px;
  color: var(--light);
  line-height: 1.7;
}

/* ─── MENTORIA (destaque) ─── */
.mentoria-section {
  padding: 100px 60px;
  position: relative;
}

.mentoria-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

.mentoria-tag {
  display: inline-block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--teal);
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}

.mentoria-section h2 {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.mentoria-section h2 em {
  font-style: normal;
  color: var(--yellow);
}

.mentoria-section p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.mentoria-section p strong { color: var(--white); }

.mentoria-price {
  margin-top: 32px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--teal);
  background: rgba(0,255,236,0.03);
}

.mentoria-price .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 8px;
}

.mentoria-price .value {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.mentoria-price .value span {
  font-size: 13px;
  color: var(--light);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ─── FOR WHO ─── */
.who-section { padding: 100px 60px; background: var(--gray); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
  margin-top: 48px;
}

.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  position: sticky;
  top: 40px;
}

.about-photo-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about-photo-label {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 12px 16px;
  background: rgba(0,0,0,0.6);
  font-size: 12px;
  font-family: 'IBM Plex Mono', monospace;
  color: var(--light);
  text-align: center;
  letter-spacing: 0.05em;
}

.about-body p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.85;
  margin-bottom: 24px;
  font-weight: 400;
}

.about-closing {
  font-size: clamp(16px, 1.6vw, 20px);
  font-weight: 700;
  color: var(--teal);
  line-height: 1.5;
  padding: 28px 32px;
  border: 1px solid rgba(0,255,236,0.2);
  background: rgba(0,255,236,0.04);
  border-radius: 2px;
  margin-top: 8px;
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  padding: 100px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-section .section-label { margin-bottom: 56px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.testimonial-card {
  background: var(--gray);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  line-height: 1;
  font-weight: 900;
  color: var(--yellow);
  opacity: 0.3;
  position: absolute;
  top: 24px;
  left: 36px;
  font-family: Georgia, serif;
}

.testimonial-quote {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  padding-top: 32px;
}

.testimonial-author {
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}

.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.testimonial-author span {
  font-size: 12px;
  color: var(--teal);
  font-family: 'IBM Plex Mono', monospace;
}

/* ─── INVESTMENT (price highlight) ─── */
.invest-section {
  padding: 100px 60px;
}

.invest-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.invest-section h2 {
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 24px;
}

.invest-section h2 em {
  font-style: normal;
  color: var(--yellow);
}

.invest-section p {
  font-size: 15px;
  color: var(--light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.invest-price-card {
  background: var(--gray);
  border: 1px solid var(--border);
  padding: 48px;
  position: relative;
}

.invest-price-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--teal) 50%, var(--yellow) 50%);
}

.invest-price-card .label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid);
  display: block;
  margin-bottom: 12px;
}

.invest-price-card .total {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(42px, 5vw, 64px);
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.invest-price-card .parcel {
  font-size: 14px;
  color: var(--teal);
  font-weight: 700;
  margin-bottom: 32px;
}

.invest-price-card hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.invest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.invest-list-item {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--light);
  line-height: 1.5;
}

.invest-list-item .check-icon {
  color: var(--teal);
  flex-shrink: 0;
  font-weight: 900;
}

/* ─── FORM SECTION ─── */
.form-section {
  padding: 100px 60px;
  background: var(--gray);
  border-top: 1px solid var(--border);
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.form-left h2 {
  font-weight: 900;
  font-size: clamp(32px, 4vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 24px;
}

.form-left h2 em {
  font-style: normal;
  color: var(--yellow);
}

.form-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
}

.form-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.form-detail .fd-label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  min-width: 100px;
  margin-top: 2px;
}

.form-detail .fd-val {
  font-size: 14px;
  color: var(--white);
  font-weight: 700;
}

.form-detail .fd-val.teal { color: var(--teal); }
.form-detail .fd-val.yellow { color: var(--yellow); }

.form-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 14px 18px;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mid); }

.form-group select option {
  background: #1a1a1a;
  color: var(--white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  margin-top: 8px;
  background: var(--yellow);
  border: none;
  border-radius: 2px;
  padding: 18px 32px;
  color: var(--bg);
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s, transform 0.1s;
}

.form-submit:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.form-submit:active { transform: translateY(0); }

.form-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  text-align: center;
  letter-spacing: 0.08em;
}

.form-success {
  display: none;
  text-align: center;
  padding: 60px 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.form-success .check {
  font-size: 48px;
  margin-bottom: 24px;
  display: block;
}

.form-success h3 {
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.form-success p {
  font-size: 13px;
  color: var(--light);
  line-height: 1.6;
}

/* ─── FOOTER ─── */
footer {
  padding: 40px 60px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-logo span { color: var(--teal); }

.footer-note {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 10px;
  color: var(--mid);
  letter-spacing: 0.1em;
}

.divider-dual {
  height: 3px;
  background: linear-gradient(to right, var(--teal) 50%, var(--yellow) 50%);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 20px 24px; }
  .hero { padding: 0 24px 60px; }
  .hero-timer { display: none; }
  section, .process-section, .order-section, .who-section, .form-section, .mentoria-section, .invest-section { padding: 72px 24px; }
  .manifesto { grid-template-columns: 1fr; padding: 48px 24px; gap: 32px; }
  .phase-card { grid-template-columns: 1fr; gap: 24px; }
  .phase-left { flex-direction: row; align-items: center; }
  .phase-timing-bar { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefit-card, .benefit-card:nth-child(odd), .benefit-card:nth-child(even) { padding: 24px 0; border-right: none; }
  .benefit-card:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .benefit-card:last-child { border-bottom: none; }
  .mentoria-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .invest-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .invest-price-card { padding: 32px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-placeholder { aspect-ratio: 4/3; position: static; max-width: 320px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-wrapper { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 32px 24px; flex-direction: column; text-align: center; }
}
