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

:root {
  --white:   #ffffff;
  --off:     #f8f7f4;
  --ink:     #111110;
  --mid:     #6b6760;
  --line:    #e4e1da;
  --accent:  #1a1a1a;
  --green:   #2c5f4a;
  --green-l: #eef4f0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
}

/* ── LOGO BAR ── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 56px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.logo {
  font-family: 'Italiana', serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--ink);
  text-decoration: none;
}

.logo-dot { color: var(--green); }

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-tag {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
}

.lang-switch {
  display: flex; gap: 4px;
}

.lang-switch a {
  font-size: 11px;
  font-weight: 400;
  padding: 3px 8px;
  text-decoration: none;
  color: var(--mid);
  transition: all 0.2s;
  letter-spacing: 1px;
}

.lang-switch a.active {
  background: var(--ink);
  color: white;
}

.lang-switch a:hover:not(.active) {
  color: var(--ink);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* LEFT */
.hero-l {
  background: var(--off);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  position: relative;
}

.hero-l::before {
  content: 'D';
  position: absolute;
  bottom: -40px; right: -20px;
  font-family: 'Italiana', serif;
  font-size: 320px;
  color: rgba(0,0,0,0.025);
  pointer-events: none;
  line-height: 1;
}

.eyebrow {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 400;
  margin-bottom: 36px;
  display: flex; align-items: center; gap: 12px;
}

.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--green);
  display: block;
}

h1 {
  font-family: 'Italiana', serif;
  font-size: clamp(38px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--ink);
}

.h1-italic {
  font-style: italic;
  color: var(--green);
}

.subtitle {
  font-size: 15px;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 56px;
  line-height: 1.6;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-bottom: 56px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.step-n {
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--green);
  font-weight: 500;
  margin-top: 2px;
  min-width: 24px;
}

.step-text {
  font-size: 13px;
  color: var(--mid);
  line-height: 1.6;
}

.step-text strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

/* Messengers */
.messengers {
  display: flex; gap: 12px;
}

.msg-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s;
}

.msg-btn:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-l);
}

/* RIGHT — FORM */
.hero-r {
  background: var(--white);
  padding: 100px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-label-top {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.fg {
  margin-bottom: 24px;
}

.fl {
  display: block;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 400;
  margin-bottom: 10px;
}

.fi, .fs, .fta {
  width: 100%;
  padding: 14px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.25s;
  appearance: none;
  border-radius: 0;
}

.fi::placeholder, .fta::placeholder { color: rgba(107,103,96,0.4); }
.fi:focus, .fs:focus, .fta:focus { border-bottom-color: var(--green); }

.fta { resize: none; height: 72px; line-height: 1.6; }

.fs {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6760' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}

.fs option { background: white; }

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

/* Channel pick */
.ch-row {
  display: flex; gap: 8px;
}

.ch {
  flex: 1;
  padding: 11px 6px;
  background: transparent;
  border: 1px solid var(--line);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: var(--mid);
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all 0.2s;
}

.ch.on, .ch:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-l);
}

/* Submit */
.fsub {
  width: 100%;
  padding: 18px;
  background: var(--ink);
  color: white;
  border: none;
  font-family: 'Italiana', serif;
  font-size: 17px;
  letter-spacing: 2px;
  cursor: pointer;
  margin-top: 12px;
  transition: background 0.25s;
  display: flex; align-items: center; justify-content: center; gap: 12px;
}

.fsub:hover { background: var(--green); }

.fnote {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: rgba(107,103,96,0.55);
  letter-spacing: 0.5px;
  line-height: 1.6;
}

/* ── BOTTOM STRIP ── */
.strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.strip-item {
  padding: 40px 48px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 6px;
}

.strip-item:last-child { border-right: none; }

.strip-num {
  font-family: 'Italiana', serif;
  font-size: 36px;
  color: var(--green);
  line-height: 1;
}

.strip-label {
  font-size: 12px;
  color: var(--mid);
  font-weight: 300;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  padding: 28px 56px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off);
}

.f-logo {
  font-family: 'Italiana', serif;
  font-size: 18px;
  letter-spacing: 3px;
}

.f-logo span { color: var(--green); }

footer p {
  font-size: 11px;
  color: var(--mid);
  letter-spacing: 0.5px;
}

/* ── ANIMATIONS ── */
@keyframes up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-l > * { animation: up 0.8s ease both; }
.hero-l > *:nth-child(1) { animation-delay: .05s; }
.hero-l > *:nth-child(2) { animation-delay: .12s; }
.hero-l > *:nth-child(3) { animation-delay: .18s; }
.hero-l > *:nth-child(4) { animation-delay: .24s; }
.hero-l > *:nth-child(5) { animation-delay: .30s; }
.hero-l > *:nth-child(6) { animation-delay: .36s; }

.hero-r { animation: up 0.9s .2s ease both; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  header { padding: 0 24px; }
  .header-tag { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-l { padding: 72px 28px 56px; border-right: none; border-bottom: 1px solid var(--line); }
  .hero-l::before { display: none; }
  .hero-r { padding: 56px 28px 72px; }
  .fr { grid-template-columns: 1fr; gap: 0; }
  .strip { grid-template-columns: 1fr 1fr; }
  .strip-item { padding: 28px 24px; }
  .strip-item:nth-child(2) { border-right: none; }
  footer { padding: 24px; flex-direction: column; gap: 12px; text-align: center; }
}
