:root {
  --bg-start: #53524d;
  --bg-end: #484844;
  --panel: rgba(0, 0, 0, 0.14);
  --panel-strong: rgba(0, 0, 0, 0.22);
  --border: rgba(255, 255, 255, 0.10);
  --border-soft: rgba(255, 255, 255, 0.08);
  --text: #ece7dc;
  --muted: #cfc8ba;
  --accent: #f0c940;
  --link: #7fe3d7;
  --link-hover: #a7efe6;
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,0.04), transparent 26%),
    linear-gradient(180deg, var(--bg-start) 0%, var(--bg-end) 100%);
  color: var(--text);
  font-family: 'Roboto Serif', serif;
  line-height: 1.65;
  padding: clamp(16px, 2.6vw, 34px);
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

a:hover {
  color: var(--link-hover);
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: var(--container);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.back-link {
  font-weight: 700;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow);
  font-size: 0.95rem;
  font-weight: 700;
}

.lang-switch a {
  opacity: 0.78;
}

.lang-switch a.active {
  color: #ffffff;
  opacity: 1;
}

.hero,
.hero-main,
.hero-side,
.card,
.content,
.footer {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero {
  padding: clamp(24px, 3vw, 42px);
  margin-bottom: 24px;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  margin-bottom: 28px;
}

.hero-main {
  padding: clamp(24px, 3vw, 42px);
}

.hero-side {
  padding: clamp(20px, 2.6vw, 28px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.logo-box {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 10px;
}

.logo-box img {
  width: min(220px, 70%);
  height: auto;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.16));
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(240, 201, 64, 0.12);
  border: 1px solid rgba(240, 201, 64, 0.24);
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

h1 {
  margin: 0 0 12px;
  font-size: clamp(2.1rem, 4.6vw, 4rem);
  line-height: 1.05;
  color: var(--accent);
  letter-spacing: 0.01em;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(1.2rem, 2vw, 1.72rem);
  font-weight: 500;
  color: #f3eee2;
  line-height: 1.3;
}

h3 {
  margin: 0 0 14px;
  font-size: 1.26rem;
  color: #fff5d0;
}

.lead {
  max-width: 65ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.muted {
  color: var(--muted);
  margin: 0;
}

.card,
.content {
  padding: 24px;
}

.grid,
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}

.services,
.process,
.content ul,
.card ul {
  margin: 0;
  padding-left: 20px;
}

li {
  margin-bottom: 10px;
}

p,
li {
  color: var(--muted);
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.96rem;
}

.mini-points li::before {
  content: "•";
  color: var(--accent);
  margin-right: 8px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-item,
.contact-item,
.price-highlight,
.contact-box {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-soft);
}

.trust-item strong,
.contact-item strong,
.price-highlight strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 0.98rem;
}

.trust-item span,
.contact-item a,
.contact-item span {
  color: var(--muted);
  word-break: break-word;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.96rem;
  text-align: center;
  transform: translateY(0);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--accent);
  color: #2e2b22;
}

.btn-primary:hover {
  color: #2e2b22;
  opacity: 0.95;
}

.btn-secondary {
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
  color: var(--text);
}

.note {
  margin-top: 16px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer {
  margin-top: 24px;
  padding: 18px 22px;
  font-size: 0.92rem;
  color: var(--muted);
  text-align: center;
}

.footer a {
  color: var(--link);
}

@media (max-width: 980px) {
  .hero-split,
  .grid,
  .grid-2,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-side {
    order: -1;
  }

  .logo-box {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  body {
    padding: 14px;
  }

  .hero,
  .hero-main,
  .hero-side,
  .card,
  .content,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .mini-points {
    grid-template-columns: 1fr;
  }

  .cta-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}
