:root {
  --navy: #2F4454;
  --navy-dark: #1C3334;
  --navy-mid: #376E6F;
  --rose: #C4714A;
  --burgundy: #2E151B;
  --cream: #F7F4EF;
  --white: #FFFFFF;
  --gray: #8A8F99;
  --light: #EEE9E1;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--navy-dark);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(47,68,84,0.08);
}

.logo {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: var(--navy);
  letter-spacing: 0.02em;
  text-decoration: none;
}

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

nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
}

nav a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0.75;
  transition: opacity 0.2s;
}

nav a:hover { opacity: 1; }

.nav-lang {
  display: flex;
  gap: 8px;
}

.lang-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid var(--navy);
  border-radius: 2px;
  cursor: pointer;
  background: transparent;
  color: var(--navy);
  letter-spacing: 0.06em;
  transition: all 0.2s;
  text-decoration: none;
}

.lang-btn.active, .lang-btn:hover {
  background: var(--navy);
  color: var(--white);
}

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

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 48px 80px 48px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 32px;
}

.hero-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--rose);
}

h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.08;
  color: var(--navy-dark);
  margin-bottom: 28px;
}

h1 em {
  font-style: italic;
  color: var(--navy-mid);
}

.hero-sub {
  font-size: 17px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 48px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.btn-primary .arrow {
  transition: transform 0.2s;
}

.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  opacity: 0.6;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: opacity 0.2s, border-color 0.2s;
}

.btn-ghost:hover {
  opacity: 1;
  border-color: var(--navy);
}

.hero-right {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}

.hero-right::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--navy-mid);
  opacity: 0.25;
}

.hero-right::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--rose);
  opacity: 0.08;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 32px;
  position: relative;
  z-index: 2;
}

.hero-card-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.case-list { display: flex; flex-direction: column; gap: 12px; }

.case-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.case-item:last-child { border-bottom: none; }

.case-num {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
  width: 40px;
}

.case-name {
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
  flex: 1;
}

.case-status {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
}

.status-done { background: rgba(196,113,74,0.15); color: #C4714A; }
.status-progress { background: rgba(218,123,147,0.2); color: var(--rose); }
.status-review { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.5); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 24px;
  position: relative;
  z-index: 2;
}

.stat {
  background: var(--navy);
  padding: 20px 16px;
  text-align: center;
}

.stat-num {
  font-family: 'DM Serif Display', serif;
  font-size: 28px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
}

/* ── SERVICES ── */
.section {
  padding: 100px 48px;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.section-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 12px;
}

h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  color: var(--navy-dark);
}

h2 em { font-style: italic; color: var(--navy-mid); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(47,68,84,0.12);
}

.service-card {
  background: var(--cream);
  padding: 40px 36px;
  transition: background 0.2s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover { background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--rose);
  margin-bottom: 20px;
  display: block;
}

.service-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  margin-top: 24px;
  letter-spacing: 0.04em;
  opacity: 0.7;
  transition: opacity 0.2s, gap 0.2s;
}

.service-link:hover { opacity: 1; gap: 10px; }

/* ── PROCESS ── */
.process-section {
  background: var(--navy-dark);
  padding: 100px 48px;
  color: var(--white);
}

.process-section .section-tag { color: var(--rose); }
.process-section h2 { color: var(--white); }
.process-section h2 em { color: rgba(218,123,147,0.8); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  margin-top: 56px;
}

.process-step {
  background: var(--navy-dark);
  padding: 36px 28px;
  position: relative;
}

.step-num {
  font-family: 'DM Serif Display', serif;
  font-size: 48px;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: 16px;
}

.process-step h4 {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}

.process-step p {
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
}

/* ── PRICING ── */
.pricing-section { padding: 100px 48px; background: var(--white); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.price-card {
  border: 1px solid rgba(47,68,84,0.12);
  padding: 40px 32px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}

.price-card:hover {
  border-color: var(--navy-mid);
  transform: translateY(-4px);
}

.price-card.featured {
  background: var(--navy);
  border-color: var(--navy);
}

.price-card.featured * { color: var(--white) !important; }
.price-card.featured .price-label { color: var(--rose) !important; }
.price-card.featured .price-divider { background: rgba(255,255,255,0.15) !important; }
.price-card.featured li::before { color: var(--rose) !important; }

.price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
  display: block;
}

.price-card h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  color: var(--navy-dark);
  margin-bottom: 8px;
}

.price-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 40px;
  color: var(--navy-dark);
  line-height: 1;
  margin: 16px 0 4px;
}

.price-period {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
}

.price-divider {
  height: 1px;
  background: rgba(47,68,84,0.1);
  margin-bottom: 24px;
}

.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}

.price-card li {
  font-size: 13.5px;
  color: var(--gray);
  font-weight: 300;
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.price-card li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 11px;
}

/* ── FAQ ── */
.faq-section { padding: 100px 48px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(47,68,84,0.1);
  margin-top: 56px;
}

.faq-item {
  background: var(--cream);
  padding: 32px 36px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-item:hover { background: var(--white); }

.faq-q {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-dark);
  margin-bottom: 12px;
  line-height: 1.4;
}

.faq-a {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gray);
  font-weight: 300;
}

/* ── CONTACT ── */
.contact-section {
  background: var(--navy);
  padding: 100px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.contact-section h2 { color: var(--white); }
.contact-section h2 em { color: rgba(218,123,147,0.9); }
.contact-section .section-tag { color: var(--rose); }

.contact-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  margin-top: 20px;
}

.contact-form { display: flex; flex-direction: column; gap: 16px; }

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

input, textarea, select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 14px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
}

input::placeholder, textarea::placeholder { color: rgba(255,255,255,0.3); }
input:focus, textarea:focus { border-color: var(--rose); }

select option { background: var(--navy-dark); color: var(--white); }

textarea { resize: none; height: 100px; }

.form-status {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  font-weight: 300;
  min-height: 18px;
}

.form-status.success { color: #9DD9A8; }
.form-status.error { color: #E89B8B; }

/* ── FOOTER ── */
footer {
  background: var(--navy-dark);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 17px;
  color: rgba(255,255,255,0.6);
}

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

.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.footer-links a {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.7); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

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

.hero-tag { animation: fadeUp 0.6s ease both; }
h1 { animation: fadeUp 0.6s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.6s 0.2s ease both; }
.hero-actions { animation: fadeUp 0.6s 0.3s ease both; }
.hero-card { animation: fadeUp 0.7s 0.2s ease both; }
.hero-stats { animation: fadeUp 0.7s 0.35s ease both; }
