﻿:root {
  --bg: #f3f3f1;
  --surface: #ffffff;
  --text: #1f2328;
  --muted: #667085;
  --line: #dde2e8;
  --accent: #c5a15d;
  --accent-dark: #9a7738;
  --dark: #23262b;
  --dark-2: #2d3238;
  --container: 1240px;
  --radius: 22px;
  --shadow: 0 12px 34px rgba(20, 25, 32, 0.07);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-dark);
  outline-offset: 3px;
}

.container {
  width: min(100% - 80px, var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(243, 243, 241, 0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 35, 40, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  gap: 24px;
}

.logo {
  position: relative;
  display: inline-block;
  width: 84px;
  height: auto;
  overflow: hidden;
  object-fit: contain;
}

.logo img {
  height: 80px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.logo::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 140%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.10), transparent);
  animation: logoShine 6s infinite;
}

.logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 140%;
  height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.10), transparent 70%);
  animation: logoShimmer 9s ease-in-out infinite;
}

@keyframes logoShine {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

@keyframes logoShimmer {
  0% { left: -120%; }
  40% { left: 120%; }
  100% { left: 120%; }
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 500;
}

.site-nav a {
  color: var(--muted);
  transition: color .2s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.lang-switch {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.hero {
  padding: 72px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 400px);
  gap: 48px;
  align-items: start;
}

.hero-copy { min-width: 0; }

.eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: .98;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(40px, 5vw, 64px);
  max-width: 11ch;
  margin-bottom: 20px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 600;
}

h2 {
  font-size: clamp(22px, 1.8vw, 30px);
  margin-bottom: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.lead {
  max-width: 50ch;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: .2s ease;
}

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

.btn-primary:hover {
  background: #d4b06c;
}

.btn-secondary {
  border: 1px solid var(--line);
  background: var(--surface);
}

.btn-secondary:hover {
  border-color: #c7ced8;
}

.hero-card, .card, .contact-card {
  background: var(--surface);
  border: 1px solid rgba(31, 35, 40, 0.06);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card { padding: 34px; }
.hero-card ul {
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.section { padding: 84px 0; }

.section-head {
  max-width: 760px;
  margin-bottom: 30px;
}

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

.card { padding: 28px; }

.card p, .step p, .contact-section p, .about-grid p {
  color: var(--muted);
}

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-dark .eyebrow, .section-dark p {
  color: rgba(255,255,255,.72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.step {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 24px;
}

.step span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
}

.about-grid, .contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
}

.contact-card { padding: 28px; }

.site-footer {
  padding: 22px 0 40px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .cards-3,
  .steps,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 84px;
    right: 20px;
    left: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .hero { padding: 52px 0 40px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand .logo { width: 72px; }
}








.hero-card ul {
  font-size: 15px;
  line-height: 1.55;
}

.step h3 { color: #ffffff; }
