*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --ink: #0d0d0b;
  --bg: #fafaf6;
  --surface: #f2f0eb;
  --orange: #ff5c2b;
  --teal: #00c7a0;
  --yellow: #ffe040;
  --purple: #7c5cfc;
  --muted: #7a7870;
  --border: rgba(13,13,11,0.1);
  --white: #ffffff;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 5vw; }
.section { padding: 7rem 0; }
.tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--surface); border: 1px solid var(--border);
  padding: 0.35rem 0.9rem; border-radius: 50px;
  margin-bottom: 1.25rem;
}
.tag-orange { background: rgba(255,92,43,0.1); border-color: rgba(255,92,43,0.25); color: var(--orange); }
.tag-teal   { background: rgba(0,199,160,0.1);  border-color: rgba(0,199,160,0.25);  color: var(--teal); }
.tag-purple { background: rgba(124,92,252,0.1); border-color: rgba(124,92,252,0.25); color: var(--purple); }
.dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

h1,h2,h3,h4 { font-family: 'Syne', sans-serif; line-height: 1.05; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 1rem 2rem; border-radius: 50px;
  font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 0.95rem;
  cursor: pointer; text-decoration: none; border: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 20px rgba(255,92,43,0.35); }
.btn-primary:hover { box-shadow: 0 8px 30px rgba(255,92,43,0.45); }
.btn-outline { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
.btn-white { background: #fff; color: var(--ink); }
.btn-arrow::after { content: '→'; font-size: 1.1em; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(250,250,246,0.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.nav-logo span { color: var(--orange); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-link { font-size: 0.88rem; color: var(--muted); text-decoration: none; }
.nav-link:hover { color: var(--ink); }

/* ── HERO ── */
.hero { padding: 5.5rem 0 4.5rem; position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 1.5rem;
}
.hero-eyebrow .bar { width: 28px; height: 2px; background: var(--orange); border-radius: 2px; }
h1.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.0; margin-bottom: 1.5rem;
}
h1.hero-title em { font-style: normal; color: var(--orange); }
h1.hero-title .underline-teal {
  text-decoration: underline; text-decoration-color: var(--teal);
  text-decoration-thickness: 4px; text-underline-offset: 5px;
}
.hero-sub {
  font-size: 1.05rem; color: var(--muted); max-width: 490px;
  margin-bottom: 2.25rem; font-weight: 300; line-height: 1.7;
}
.hero-meta { display: flex; align-items: center; gap: 1.5rem; margin-top: 1.5rem; flex-wrap: wrap; }
.hero-meta-item { font-size: 0.82rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.hero-meta-item strong { color: var(--ink); font-weight: 500; }
.hero-meta-item::before { content: '✓'; color: var(--teal); font-weight: 700; }

.hero-card {
  background: var(--white); border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0,0,0,0.07);
  padding: 1.75rem; position: relative;
}
.hero-card-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: white;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 1rem; border-radius: 50px; white-space: nowrap;
}
.hero-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.hero-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.25rem; }
.mission-preview { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.5rem; }
.mission-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border-radius: 10px;
  padding: 0.7rem 0.85rem; font-size: 0.84rem;
}
.mission-icon {
  width: 28px; height: 28px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.mi-orange { background: rgba(255,92,43,0.12); }
.mi-teal   { background: rgba(0,199,160,0.12); }
.mi-purple { background: rgba(124,92,252,0.12); }
.mission-item span { font-weight: 400; color: var(--ink); line-height: 1.3; }

.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.12; pointer-events: none; z-index: 0; }
.blob-1 { width: 500px; height: 500px; background: var(--orange); top: -150px; right: -100px; }
.blob-2 { width: 400px; height: 400px; background: var(--teal); bottom: -100px; left: -100px; }
.hero .container { position: relative; z-index: 1; }

/* ── PROBLEM ── */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.pain-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem; position: relative; overflow: hidden;
}
.pain-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--orange);
}
.pain-emoji { font-size: 2rem; margin-bottom: 1rem; display: block; }
.pain-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.pain-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.55; }
.problem-lead { max-width: 620px; }
.problem-lead h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; margin-bottom: 1rem; letter-spacing: -0.02em; }
.problem-lead p { font-size: 1.05rem; color: var(--muted); font-weight: 300; }

/* ── SOLUTION ── */
.solution-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-bottom: 5rem; }
.solution-intro h2 { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 1.25rem; }
.solution-intro p { font-size: 1rem; color: var(--muted); line-height: 1.7; margin-bottom: 1.25rem; font-weight: 300; }
.sol-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill { padding: 0.35rem 0.9rem; border-radius: 50px; font-size: 0.82rem; font-weight: 500; border: 1.5px solid; }
.pill-orange { background: rgba(255,92,43,0.08); border-color: rgba(255,92,43,0.3); color: var(--orange); }
.pill-teal   { background: rgba(0,199,160,0.08);  border-color: rgba(0,199,160,0.3);  color: #009e7e; }
.pill-purple { background: rgba(124,92,252,0.08); border-color: rgba(124,92,252,0.3); color: var(--purple); }
.pill-yellow { background: rgba(255,224,64,0.15); border-color: rgba(200,170,0,0.35); color: #7a6400; }

.vs-box {
  background: var(--ink); border-radius: 20px; padding: 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden;
}
.vs-col { padding: 0 1rem; }
.vs-col:first-child { border-right: 1px solid rgba(255,255,255,0.1); padding-right: 1.5rem; }
.vs-col:last-child { padding-left: 1.5rem; }
.vs-label { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 500; }
.vs-label.bad  { color: #ff6b6b; }
.vs-label.good { color: var(--teal); }
.vs-item { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; margin-bottom: 0.65rem; line-height: 1.4; }
.vs-item.bad  { color: rgba(255,255,255,0.45); }
.vs-item.bad::before  { content: '✕'; color: #ff6b6b; flex-shrink: 0; font-weight: 700; }
.vs-item.good { color: rgba(255,255,255,0.9); }
.vs-item.good::before { content: '✓'; color: var(--teal); flex-shrink: 0; font-weight: 700; }

/* ── PROGRAMS ── */
.programs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.prog-card {
  border-radius: 20px; padding: 2rem; border: 1px solid var(--border);
  background: var(--white); display: flex; flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.prog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.08); }
.prog-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 1.25rem; flex-shrink: 0;
}
.prog-icon-orange { background: rgba(255,92,43,0.1); }
.prog-icon-teal   { background: rgba(0,199,160,0.1); }
.prog-icon-purple { background: rgba(124,92,252,0.1); }
.prog-card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.prog-card .prog-sub { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 1rem; }
.sub-orange { color: var(--orange); }
.sub-teal   { color: var(--teal); }
.sub-purple { color: var(--purple); }
.prog-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.5rem; font-weight: 300; flex: 1; }
.result-box { background: var(--surface); border-radius: 10px; padding: 0.9rem 1rem; margin-top: auto; }
.result-box .result-label { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; font-weight: 500; }
.result-box p { font-size: 0.88rem; font-weight: 500; color: var(--ink); line-height: 1.4; }
.section-header { max-width: 620px; }
.section-header h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.75rem; }
.section-header p { font-size: 1.05rem; color: var(--muted); font-weight: 300; }

/* ── HOW IT WORKS ── */
.steps-row {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1rem; margin-top: 3.5rem; position: relative;
}
.steps-row::before {
  content: ''; position: absolute; top: 28px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, var(--teal), var(--purple), var(--orange));
  opacity: 0.3;
}
.step-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem 1.25rem;
  text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1rem;
  margin: 0 auto 1rem; border: 2px solid;
}
.sn-1 { background: rgba(255,92,43,0.1);  border-color: var(--orange);  color: var(--orange); }
.sn-2 { background: rgba(0,199,160,0.1);  border-color: var(--teal);    color: var(--teal); }
.sn-3 { background: rgba(124,92,252,0.1); border-color: var(--purple);  color: var(--purple); }
.sn-4 { background: rgba(255,224,64,0.2); border-color: #c8a800;        color: #7a6400; }
.sn-5 { background: rgba(255,92,43,0.1);  border-color: var(--orange);  color: var(--orange); }
.step-card h4 { font-size: 0.92rem; margin-bottom: 0.4rem; }
.step-card p { font-size: 0.8rem; color: var(--muted); line-height: 1.5; }

/* ── RESULTS ── */
.results-section { background: var(--ink); color: var(--bg); }
.results-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.result-item {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 1.5rem;
}
.result-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.ri-orange { background: rgba(255,92,43,0.2); }
.ri-teal   { background: rgba(0,199,160,0.2); }
.ri-purple { background: rgba(124,92,252,0.2); }
.ri-yellow { background: rgba(255,224,64,0.2); }
.result-item h4 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.3rem; color: #fff; }
.result-item p { font-size: 0.85rem; color: rgba(255,255,255,0.5); line-height: 1.5; font-weight: 300; }
.results-section .section-header h2 { color: #fff; }
.results-section .section-header p { color: rgba(255,255,255,0.5); }

/* ── TRUST ── */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.trust-card {
  text-align: center; padding: 2rem 1.25rem;
  background: var(--white); border: 1px solid var(--border); border-radius: 16px;
}
.trust-num { font-family: 'Syne', sans-serif; font-size: 2.5rem; font-weight: 800; margin-bottom: 0.25rem; color: var(--orange); }
.trust-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
.guarantees { margin-top: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.guarantee-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 1.25rem; background: var(--surface); border-radius: 12px;
}
.g-icon { font-size: 20px; flex-shrink: 0; margin-top: 2px; }
.guarantee-item h4 { font-size: 0.92rem; margin-bottom: 0.25rem; }
.guarantee-item p { font-size: 0.83rem; color: var(--muted); line-height: 1.5; }

/* ── PROJECT SHOWCASE ── */
.proj-showcase { background: var(--surface); overflow: hidden; }

.proj-header { display: flex; flex-direction: column; margin-bottom: 0; }
.proj-header-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 2rem; margin-bottom: 1rem;
}
.proj-header-inner h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.0;
}
.proj-header-sub {
  font-size: 1rem; color: var(--muted); font-weight: 300;
  max-width: 340px; text-align: right; line-height: 1.6; padding-bottom: 0.35rem;
}

.proj-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 4rem;
  padding: 4.5rem 0; border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.proj-strip-2 .proj-visual { order: 2; }
.proj-strip-2 .proj-text   { order: 1; }

.proj-ghost-num {
  position: absolute;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(9rem, 18vw, 16rem);
  line-height: 1; letter-spacing: -0.06em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(13,13,11,0.06);
  pointer-events: none; user-select: none;
  top: 50%; transform: translateY(-50%);
  right: -1.5rem; z-index: 0;
}
.proj-strip-2 .proj-ghost-num { right: auto; left: -1.5rem; }

.proj-visual { position: relative; z-index: 1; }

.proj-frame {
  position: relative; border-radius: 20px; aspect-ratio: 4 / 3; overflow: hidden;
  transform: rotate(-1.5deg);
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 24px 60px rgba(0,0,0,0.1);
}
.proj-strip-2 .proj-frame { transform: rotate(1.5deg); }
.proj-strip:hover .proj-frame, .proj-strip-2:hover .proj-frame { transform: rotate(0deg) scale(1.02); }

.proj-frame-orange { background: linear-gradient(145deg, #fff5f2 0%, rgba(255,224,64,0.15) 100%); border: 1px solid rgba(255,92,43,0.15); }
.proj-frame-teal   { background: linear-gradient(145deg, #f0fefb 0%, rgba(0,199,160,0.08) 100%);  border: 1px solid rgba(0,199,160,0.15); }
.proj-frame-purple { background: linear-gradient(145deg, #f5f2ff 0%, rgba(124,92,252,0.08) 100%); border: 1px solid rgba(124,92,252,0.15); }

.proj-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }

.proj-frame-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.proj-frame-badge {
  position: absolute; bottom: 1rem; right: 1rem;
  color: #fff; font-family: 'Syne', sans-serif;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em;
  padding: 0.3rem 0.75rem; border-radius: 50px;
}

.proj-text { position: relative; z-index: 1; }

.proj-index {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem;
}

.proj-text h3 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 0.95; margin-bottom: 1.25rem;
}

.proj-text p {
  font-size: 1rem; color: var(--muted); line-height: 1.7;
  font-weight: 300; max-width: 430px; margin-bottom: 1.5rem;
}

.proj-tag-row { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.proj-chip {
  font-size: 0.78rem; font-weight: 500; color: var(--muted);
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 50px; padding: 0.3rem 0.85rem;
}

@media (max-width: 900px) {
  .proj-header-inner { flex-direction: column; align-items: flex-start; }
  .proj-header-sub { text-align: left; }
  .proj-strip { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 0; }
  .proj-strip-2 .proj-visual, .proj-strip-2 .proj-text { order: 0; }
  .proj-ghost-num { font-size: 5.5rem; right: -0.5rem; top: 1rem; transform: none; }
  .proj-strip-2 .proj-ghost-num { left: auto; right: -0.5rem; }
  .proj-frame, .proj-strip-2 .proj-frame { transform: none; }
  .proj-strip:hover .proj-frame, .proj-strip-2:hover .proj-frame { transform: scale(1.02); }
  .proj-text p { max-width: 100%; }
}

/* ── FAQ ── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 0.98rem; font-weight: 500;
  background: none; border: none; text-align: left; color: var(--ink);
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%; background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--orange); color: white; }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-weight: 300; }
.faq-item.open .faq-a { display: block; }

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--ink); border-radius: 24px; margin: 0 5vw 7rem;
  padding: 5rem 5vw; text-align: center; overflow: hidden; position: relative;
}
.cta-block::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,92,43,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(0,199,160,0.12) 0%, transparent 60%);
}
.cta-block > * { position: relative; z-index: 1; }
.cta-block h2 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 1rem; }
.cta-block h2 em { font-style: normal; color: var(--orange); }
.cta-block p { font-size: 1.05rem; color: rgba(255,255,255,0.55); max-width: 500px; margin: 0 auto 2.5rem; font-weight: 300; }
.cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.25rem; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ── FORM MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  z-index: 1000; align-items: center; justify-content: center; padding: 1rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white); border-radius: 24px; padding: 2.5rem;
  width: 100%; max-width: 480px; position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25);
  max-height: 90vh; overflow-y: auto;
}
.modal-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: var(--surface); border: none; border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 18px; color: var(--muted); line-height: 1;
}
.modal-close:hover { background: #e8e5de; color: var(--ink); }
.modal h3 { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.modal > p { font-size: 0.88rem; color: var(--muted); margin-bottom: 1.75rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.78rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.07em; color: var(--muted); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1.5px solid transparent;
  border-radius: 10px; color: var(--ink);
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 400;
  padding: 0.75rem 1rem; outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); background: var(--white); }
.field select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7870' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
}
.submit-btn {
  width: 100%; padding: 1rem; background: var(--orange); color: #fff;
  border: none; border-radius: 10px; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: background 0.2s, transform 0.1s; margin-top: 0.5rem;
}
.submit-btn:hover { background: #e04d22; }
.submit-btn:active { transform: scale(0.99); }
.submit-btn:disabled { background: #d0cec8; cursor: not-allowed; }
.form-fine { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.consent-label {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--muted); cursor: pointer;
  margin-top: 0.75rem; margin-bottom: 0.25rem; line-height: 1.45;
}
.consent-label input[type="checkbox"] {
  width: 16px; height: 16px; min-width: 16px;
  accent-color: var(--orange); cursor: pointer; margin-top: 1px;
}
.consent-link {
  color: var(--orange); text-decoration: underline;
  text-underline-offset: 2px;
}
.consent-link:hover { opacity: 0.8; }
.status-msg {
  display: none; border-radius: 10px; padding: 0.85rem 1rem;
  font-size: 0.88rem; margin-bottom: 1rem; text-align: center;
}
.status-success { display: block; background: rgba(0,199,160,0.1); border: 1px solid rgba(0,199,160,0.3); color: #007a62; }
.status-error   { display: block; background: rgba(255,92,43,0.1);  border: 1px solid rgba(255,92,43,0.3);  color: var(--orange); }

/* ── LEGAL PAGES ── */
.legal-doc { line-height: 1.8; color: var(--ink); }
.legal-doc h2 {
  font-family: 'Syne', sans-serif; font-size: 1.15rem;
  margin: 2.5rem 0 0.75rem; color: var(--ink);
}
.legal-doc p { margin-bottom: 1rem; color: #3a3a38; }
.legal-meta {
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 2.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5vw 1.5rem;
  font-size: 0.85rem; color: var(--muted);
}
.footer-inner {
  display: flex; gap: 3rem; justify-content: space-between;
  flex-wrap: wrap; margin-bottom: 2rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-tagline { font-size: 0.8rem; color: var(--muted); }
.footer-contacts, .footer-legal-links {
  display: flex; flex-direction: column; gap: 0.5rem;
}
.footer-contacts-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 0.25rem;
}
.footer-link {
  color: var(--muted); text-decoration: none;
  transition: color 0.15s;
}
.footer-link:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem; font-size: 0.78rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .problem-grid { grid-template-columns: 1fr; }
  .solution-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .programs-grid { grid-template-columns: 1fr; }
  .steps-row { grid-template-columns: 1fr 1fr; }
  .steps-row::before { display: none; }
  .results-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .guarantees { grid-template-columns: 1fr; }
  .cta-block { margin: 0 0 5rem; border-radius: 0; }
  .nav-right .btn { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 4.5rem 0; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .steps-row { grid-template-columns: 1fr; }
}
