/*
Theme Name: OMEC
Description: Turto vystymas su savininkais. Premium B2B tema, skirta UAB Monvysta vystymo veiklai. Daugiakalbystė LT/EN/RU, Vario Patina paletė, Instrument Serif tipografija.
Author: UAB Monvysta
Version: 1.0
Text Domain: omec
*/

@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital,wght@0,400;1,400&family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  /* === ŠVIESI PALETĖ - psichologiškai teisinga === */
  --paper: #FAF8F2;
  --paper-soft: #F5F1E6;
  --paper-warm: #EDE6D6;
  --cream: #F2EBDA;

  /* Tamsios spalvos - tik akcentams */
  --night-soft: #2D3D3A;
  --night-deep: #1E2A28;

  /* Vario patina - akcentas */
  --patina: #7B9489;
  --patina-deep: #5C7770;
  --patina-light: #A5BAB0;

  /* Vario šiltas akcentas */
  --copper: #B86B4A;
  --copper-soft: #D89070;
  --copper-light: #E8C4A8;

  /* Tekstas */
  --ink: #1E2A28;
  --ink-soft: #4A5453;
  --stone: #6B6F6E;
  --stone-light: #9A9D9C;
  --line: #D8D2C2;
  --line-soft: #E8E2D2;

  /* Šriftai */
  --font-display: 'Instrument Serif', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Menlo', monospace;

  --container: 1280px;
  --section-pad: 120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button { cursor: pointer; font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* === HEADER === */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 248, 242, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  padding: 18px 0;
}
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .site-header { top: 46px; }
}
.header-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 60px;
}
.site-logo {
  display: flex; align-items: center;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.site-logo:hover .logo-img { opacity: 0.8; }

.main-nav {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.main-nav a:hover { color: var(--patina-deep); }
.main-nav a.current { color: var(--ink); }

.header-right {
  display: flex; align-items: center; gap: 20px;
}
.lang-switch {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--stone);
}
.lang-current {
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink);
  cursor: pointer;
  transition: 0.2s;
}
.lang-current:hover { border-color: var(--patina-deep); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  display: none;
  flex-direction: column;
  min-width: 80px;
  z-index: 10;
}
.lang-switch:hover .lang-dropdown { display: flex; }
.lang-dropdown a {
  padding: 10px 14px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
}
.lang-dropdown a:last-child { border-bottom: none; }
.lang-dropdown a:hover { background: var(--paper-warm); }
.lang-dropdown a.active { color: var(--copper); }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  background: var(--patina-deep);
  color: var(--paper);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid var(--patina-deep);
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
}
.btn:hover {
  background: var(--patina);
  border-color: var(--patina);
  transform: translateY(-1px);
}
.btn-large {
  padding: 18px 32px;
  font-size: 15px;
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: var(--paper-warm);
  border-color: var(--ink-soft);
  color: var(--ink);
  transform: none;
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* === HERO === */
.hero {
  background: var(--paper);
  padding: 200px 0 var(--section-pad);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(123, 148, 137, 0.07) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184, 107, 74, 0.05) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--patina-deep);
  margin-bottom: 32px;
  padding: 8px 16px;
  background: rgba(123, 148, 137, 0.1);
  border-radius: 100px;
}
.eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--patina);
  border-radius: 50%;
}
.hero h1, .entry-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.75rem, 6vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 36px;
}
.hero h1 em, .entry-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--patina-deep);
}
.hero h1 .accent-copper, .entry-title .accent-copper {
  font-style: italic;
  color: var(--copper);
}
.hero-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 680px;
  margin-bottom: 48px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.hero-trust {
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 900px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust-icon {
  width: 32px; height: 32px;
  color: var(--patina-deep);
  margin-bottom: 8px;
}
.trust-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
}
.trust-desc {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.5;
}

/* === SECTIONS === */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}
.section.cream { background: var(--cream); }
.section.warm { background: var(--paper-warm); }
.section.dark {
  background: var(--night-deep);
  color: var(--paper);
}

.section-intro {
  max-width: 800px;
  margin-bottom: 80px;
}
.section-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--patina-deep);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--patina);
}
.section.dark .section-label { color: var(--patina-light); }
.section.dark .section-label::before { background: var(--patina-light); }

.section-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.section.dark .section-h2 { color: var(--paper); }
.section-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--patina-deep);
}
.section.dark .section-h2 em { color: var(--patina-light); }
.section-h2 .copper {
  font-style: italic;
  color: var(--copper);
}
.section-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 640px;
}

/* === ABOUT GRID === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
  max-width: 1100px;
}
.about-card {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line-soft);
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 3px;
  background: linear-gradient(to right, var(--patina), var(--copper));
}
.about-card-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.about-card-quote::before {
  content: '„';
  font-size: 3rem;
  color: var(--copper);
  line-height: 0.5;
  display: block;
  margin-bottom: 16px;
}
.about-text p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-text p:last-child { margin-bottom: 0; }
.about-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* === TRANSFORMATION === */
.transform-grid {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  align-items: stretch;
  margin-top: 60px;
  margin-bottom: 40px;
}
.transform-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 24px rgba(30, 42, 40, 0.04);
}
.transform-card.before {
  background: linear-gradient(180deg, rgba(232, 226, 210, 0.4) 0%, var(--paper-warm) 100%);
}
.transform-card.after {
  background: linear-gradient(180deg, rgba(165, 186, 176, 0.15) 0%, var(--paper) 100%);
}
.card-svg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.card-label {
  position: absolute;
  top: 24px;
  left: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}
.card-label.before-label {
  background: var(--ink-soft);
  color: var(--paper);
}
.card-label.after-label {
  background: var(--copper);
  color: var(--paper);
}
.card-bottom {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  align-items: end;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone);
  z-index: 2;
}
.card-bottom .value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.card-bottom .value.copper { color: var(--copper); }
.transform-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
}
.arrow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--copper), transparent);
  position: relative;
}
.arrow-line::after {
  content: '→';
  position: absolute;
  right: -4px;
  top: -10px;
  color: var(--copper);
  font-size: 20px;
}
.arrow-label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.transform-disclaimer {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--stone);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* === HOW (process) === */
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.how-step {
  background: var(--paper);
  padding: 40px 32px;
  border: 1px solid var(--line-soft);
  position: relative;
  transition: 0.3s;
}
.how-step:hover {
  border-color: var(--patina);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 42, 40, 0.06);
}
.how-step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 4rem;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 20px;
}
.how-step-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
}
.how-step-desc {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.how-step-time {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--patina-deep);
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
}

/* === SITUATIONS === */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.situation {
  background: var(--paper);
  padding: 40px;
  position: relative;
  border: 1px solid var(--line-soft);
  border-left: 3px solid var(--copper);
  transition: 0.3s;
}
.situation:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(30, 42, 40, 0.06);
}
.situation-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--patina-deep);
}
.situation h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 16px;
}
.situation p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.situation-link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.situation-link:hover { gap: 12px; }

/* === WHY === */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.why-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-soft);
}
.why-point:last-child { border-bottom: none; padding-bottom: 0; }
.why-point-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2rem;
  color: var(--copper);
  line-height: 1;
}
.why-point h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.375rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.why-point p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* === FAQ === */
.faq-list {
  max-width: 900px;
  margin-top: 60px;
}
.faq-cat {
  margin-bottom: 60px;
}
.faq-cat-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--patina-deep);
  margin-bottom: 20px;
}
.faq-item {
  border-top: 1px solid var(--line-soft);
  padding: 28px 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line-soft); }
.faq-summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 1.375rem;
  line-height: 1.3;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: start;
}
.faq-summary::-webkit-details-marker { display: none; }
.faq-toggle {
  color: var(--copper);
  font-size: 1.5rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}
details[open] .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  margin-top: 16px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* === CONTACT === */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}
.contact-info-block {
  margin-bottom: 32px;
}
.contact-info-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--patina-deep);
  margin-bottom: 8px;
}
.contact-info-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 400;
}
.contact-info-value a:hover { color: var(--copper); }

/* Form */
.form-wrap {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line-soft);
}
.form-wrap h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-wrap > p {
  font-size: 0.9375rem;
  color: var(--stone);
  margin-bottom: 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 8px;
}
.form-control {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  background: var(--paper-soft);
  border: 1px solid var(--line);
  color: var(--ink);
  outline: none;
  transition: 0.2s;
  width: 100%;
}
.form-control:focus {
  border-color: var(--patina-deep);
  background: var(--paper);
}
textarea.form-control {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-body);
}
select.form-control {
  cursor: pointer;
}

/* === CTA === */
.cta-section {
  background: var(--paper);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(184, 107, 74, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(123, 148, 137, 0.08) 0%, transparent 50%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-content .quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--copper);
  margin-bottom: 24px;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 24px;
}
.cta-content h2 em {
  font-style: italic;
  color: var(--copper);
}
.cta-content p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

/* === BREADCRUMB === */
.breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 24px;
}
.breadcrumb a:hover { color: var(--copper); }

/* === ENTRY HEADER === */
.entry-header {
  padding: 200px 0 80px;
  background: var(--paper);
  position: relative;
}
.entry-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--patina-deep);
  display: inline-block;
  margin-bottom: 24px;
}

/* === FOOTER === */
.site-footer {
  background: var(--night-soft);
  color: var(--paper-soft);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo .logo-img {
  height: 40px;
}
.footer-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(245, 241, 230, 0.6);
  max-width: 280px;
  line-height: 1.5;
}
.site-footer h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--patina-light);
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(245, 241, 230, 0.7);
}
.footer-links a:hover { color: var(--patina-light); }

.footer-legal {
  padding-top: 40px;
  border-top: 1px solid rgba(245, 241, 230, 0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  margin-bottom: 24px;
}
.footer-legal-info {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(245, 241, 230, 0.5);
}
.footer-legal-info strong {
  color: rgba(245, 241, 230, 0.8);
  font-weight: 500;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(245, 241, 230, 0.05);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: rgba(245, 241, 230, 0.4);
}
.footer-bottom a:hover { color: rgba(245, 241, 230, 0.7); }

/* === ALERTS === */
.alert {
  padding: 16px 20px;
  border-left: 3px solid var(--copper);
  background: var(--paper-warm);
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.6;
}
.alert.success {
  border-color: var(--patina-deep);
  background: rgba(123, 148, 137, 0.1);
}
.alert.error {
  border-color: var(--copper);
  background: rgba(184, 107, 74, 0.08);
}

/* === LEGAL PAGES === */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.875rem;
  line-height: 1.3;
  color: var(--ink);
  margin-top: 56px;
  margin-bottom: 20px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.legal-content ul {
  margin: 16px 0;
  padding-left: 24px;
}
.legal-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--copper);
  border-bottom: 1px solid var(--copper-soft);
}
.legal-content code {
  font-family: var(--font-mono);
  font-size: 13px;
  background: var(--paper-warm);
  padding: 2px 6px;
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .header-grid { grid-template-columns: auto auto; }
  .main-nav { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .transform-grid { grid-template-columns: 1fr; }
  .transform-arrow { transform: rotate(90deg); padding: 20px 0; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .situations-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-trust { grid-template-columns: 1fr; gap: 24px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-legal { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  :root { --section-pad: 80px; }
  .container { padding: 0 20px; }
  .hero, .entry-header { padding: 140px 0 60px; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-wrap { padding: 32px 24px; }
}
