html { scroll-behavior: smooth; }

.editable.is-translation-empty {
  display: none !important;
}

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

:root {
  --navy: #0A1628;
  --navy-2: #12233A;
  --navy-3: #1A3352;
  --blue: #0B3A6E;
  --blue-soft: #E8F0F8;
  --accent: #FF6B2C;
  --accent-2: #E85A1F;
  --accent-soft: #FFF0E9;
  --bg: #F5F7FA;
  --surface: #FFFFFF;
  --text: #0A1628;
  --text-2: #1E2F45;
  --muted: #5A6B7F;
  --muted-2: #7A8B9E;
  --border: rgba(10, 22, 40, 0.08);
  --border-2: rgba(10, 22, 40, 0.14);
  --nav-h: 72px;
  --radius: 14px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  overflow-x: hidden;
  line-height: 1.5;
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-3); border-radius: 3px; }

.logo-mark {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 2px;
  display: inline-block;
  transform: rotate(45deg);
  flex-shrink: 0;
}
.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-media img.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10,22,40,0.94) 0%, rgba(10,22,40,0.78) 42%, rgba(10,22,40,0.45) 100%),
    linear-gradient(to top, rgba(10,22,40,0.9) 0%, transparent 45%);
  z-index: 1;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: calc(var(--nav-h) + 48px) 24px 56px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero-brand {
  font-family: 'Bricolage Grotesque', var(--font-display), sans-serif;
  font-size: clamp(3.2rem, 12vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #fff;
  animation: fadeUp 0.8s ease both;
}
.hero-brand span {
  color: var(--accent);
}

.hero-copy {
  max-width: 560px;
  animation: fadeUp 0.8s ease 0.12s both;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.95);
}
.hero-copy p {
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: fadeUp 0.8s ease 0.22s both;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent);
  color: #fff !important;
  padding: 15px 28px;
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
}
.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,107,44,0.35);
}
.btn-accent svg {
  width: 18px; height: 18px;
  stroke: currentColor; fill: none; stroke-width: 2.2;
}

.btn-ghost-light {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  color: #fff !important;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.btn-ghost-light:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
}

.hero-process {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.32s both;
  margin-top: 8px;
}
.hero-process-step {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.hero-process-num {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,107,44,0.2);
  border: 1px solid rgba(255,107,44,0.5);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.hero-process-arrow {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.25);
  margin: 0 14px;
  position: relative;
}
.hero-process-arrow::after {
  content: '';
  position: absolute;
  right: 0; top: -3px;
  border: 4px solid transparent;
  border-left-color: rgba(255,255,255,0.35);
}

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

/* ===================== SECTIONS SHARED ===================== */
.section {
  padding: 88px 24px;
}
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 14px;
  max-width: 640px;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 520px;
  margin-bottom: 48px;
}
.section-header {
  margin-bottom: 48px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-title,
.section-header.centered .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.hidden { opacity: 0; transform: translateY(28px); }

/* ===================== PROBLEMS ===================== */
.problems-section {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.problem-item {
  padding: 8px 0;
}
.problem-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.3;
}
.problem-problem {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.problem-solution {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.6;
  font-weight: 500;
}
.problem-solution strong {
  color: var(--blue);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===================== PROCESS ===================== */
.process-section {
  background:
    radial-gradient(ellipse 80% 60% at 10% 0%, rgba(255,107,44,0.06), transparent 50%),
    var(--bg);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.process-card:hover {
  border-color: rgba(255,107,44,0.35);
  box-shadow: 0 16px 40px rgba(10,22,40,0.06);
  transform: translateY(-3px);
}
.process-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.process-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}
.process-card-free {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 4px 10px;
  border-radius: 6px;
}

/* ===================== PROOF / VIDEO ===================== */
.proof-section {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.proof-section .section-label { color: var(--accent); }
.proof-section .section-title { color: #fff; }
.proof-section .section-lead { color: rgba(255,255,255,0.65); }

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}
.proof-video {
  position: relative;
  z-index: 1;
  grid-column: 1;
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy-2);
  aspect-ratio: 16 / 10;
  min-height: 280px;
  min-width: 0;
  isolation: isolate;
}
.proof-video iframe,
.proof-video video,
.proof-video-el {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: var(--navy-2);
}
.proof-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background:
    linear-gradient(135deg, rgba(18,35,58,0.9), rgba(10,22,40,0.95)),
    url("https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?auto=format&fit=crop&w=1200&q=70") center/cover;
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 24px;
}
.proof-video-placeholder .play-btn {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(255,107,44,0.4);
}
.proof-video-placeholder .play-btn svg {
  width: 24px; height: 24px;
  fill: #fff;
  margin-left: 3px;
}
.proof-video-placeholder p {
  font-size: 0.95rem;
  max-width: 260px;
  line-height: 1.5;
}

.proof-side {
  display: grid;
  grid-column: 2;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-width: 0;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.proof-shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 140px;
  min-width: 0;
  height: 100%;
}
.proof-shot img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.proof-shot:hover img { transform: scale(1.04); }
.proof-shot-label {
  position: absolute;
  left: 14px;
  bottom: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(10,22,40,0.65);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 8px;
}

/* ===================== WHY US ===================== */
.why-section {
  background: var(--surface);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color .2s, box-shadow .2s;
}
.why-card:hover {
  border-color: rgba(11,58,110,0.25);
  box-shadow: 0 10px 30px rgba(10,22,40,0.05);
}
.why-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none; stroke-width: 1.8;
}
.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.why-card p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ===================== ECOSYSTEM ===================== */
.eco-section {
  background:
    linear-gradient(180deg, var(--bg) 0%, #EEF2F7 100%);
}
.eco-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.eco-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(10,22,40,0.08);
  border-color: rgba(255,107,44,0.3);
}
.eco-icon {
  width: 44px; height: 44px;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.eco-icon svg {
  width: 22px; height: 22px;
  stroke: currentColor; fill: none; stroke-width: 1.8;
}
.eco-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.eco-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  margin-bottom: 20px;
}
.eco-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  transition: color .2s, gap .2s;
}
.eco-btn:hover {
  color: var(--accent);
  gap: 10px;
}
.eco-btn svg {
  width: 16px; height: 16px;
  stroke: currentColor; fill: none; stroke-width: 2;
}

/* ===================== FORM ===================== */
.form-section {
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.form-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,107,44,0.08);
  top: -120px; right: -100px;
  pointer-events: none;
}
.form-section .section-label { color: var(--accent); }
.form-section .section-title { color: #fff; }
.form-section .section-lead { color: rgba(255,255,255,0.65); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.form-aside-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 8px;
}
.form-aside-points li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}
.form-aside-points li svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

.inquiry-form {
  background: var(--surface);
  color: var(--text);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.inquiry-form h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.inquiry-form .form-sub {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.sform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.sform-field { display: flex; flex-direction: column; }
.sform-field--full { grid-column: 1 / -1; }

.sform-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}
.sform-required { color: var(--accent); }

.sform-input {
  padding: 13px 16px;
  border: 1.5px solid var(--border-2);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  resize: vertical;
}
.sform-input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255,107,44,0.12);
}
.sform-textarea { min-height: 110px; }

.sform-upload-area {
  border: 2px dashed var(--border-2);
  border-radius: 12px;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background: var(--bg);
  transition: border-color 0.2s, background 0.2s;
  text-align: center;
}
.sform-upload-area:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}
.sform-upload-area svg {
  width: 28px; height: 28px;
  stroke: var(--muted-2);
  stroke-width: 1.5;
  fill: none;
}
.sform-upload-area span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}
.sform-upload-hint {
  font-size: 0.78rem !important;
  color: var(--muted-2) !important;
  font-weight: 400 !important;
}
.sform-upload-area.has-file {
  border-color: #16a34a;
  background: #f0fdf4;
}
.sform-upload-area.has-file svg { stroke: #16a34a; }

.sform-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  margin-top: 8px;
}
.sform-submit-btn:hover {
  background: var(--accent-2);
  box-shadow: 0 12px 32px rgba(255,107,44,0.3);
}
.sform-submit-btn:disabled {
  background: #f0a888;
  cursor: not-allowed;
  box-shadow: none;
}
.sform-submit-btn svg {
  width: 18px; height: 18px;
  stroke: #fff; fill: none; stroke-width: 2;
}

.sform-error {
  display: none;
  color: #dc2626;
  font-size: 0.88rem;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: #fef2f2;
  border-radius: 8px;
  border: 1px solid #fecaca;
}

.sform-success {
  text-align: center;
  padding: 40px 12px;
  display: none;
}
.sform-success.is-visible { display: block; }
.sform-success-icon {
  width: 64px; height: 64px;
  background: var(--accent-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.sform-success-icon svg {
  width: 28px; height: 28px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
}
.sform-success h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.sform-success p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--navy-2);
  color: rgba(255,255,255,0.7);
  padding: 56px 24px 32px;
}
.footer-inner { max-width: 1120px; margin: 0 auto; }
.footer-row-1 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo .logo-text { color: #fff; }
.footer-socials { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-social-link:hover {
  color: #fff;
  border-color: var(--accent);
  background: rgba(255,107,44,0.12);
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 24px 0;
}
.footer-row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 10px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a:empty { display: none; }
.footer-row-3 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }
.footer-legal-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .problems-grid { grid-template-columns: 1fr; gap: 36px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid { grid-template-columns: minmax(0, 1fr); }
  .proof-video { grid-column: 1; }
  .proof-side {
    grid-column: 1;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .form-layout { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 64px 20px; }
  .hero-inner { padding: calc(var(--nav-h) + 36px) 20px 44px; }
  .hero-process { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero-process-arrow { display: none; }
  .process-steps { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .eco-grid { grid-template-columns: 1fr; }
  .proof-side { grid-template-columns: 1fr; }
  .sform-grid { grid-template-columns: 1fr; }
  .sform-field--full { grid-column: 1; }
  .inquiry-form { padding: 28px 20px; }
  .footer-row-2 { grid-template-columns: 1fr; gap: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-accent, .btn-ghost-light { width: 100%; justify-content: center; }
}
