
:root {
  --bg-light: #ffffff;
  --bg-accent: rgba(150,200,255,0.15);
  --text-main: #111111;
  --border-soft: #e0e0e0;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Arial, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(90deg, var(--bg-light) 45%, var(--bg-accent) 50%, var(--bg-light) 55%);
  color: var(--text-main);
}
a { color: inherit; }
header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  border-bottom: 1px solid var(--border-soft);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(6px);
}
.brand {
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 16px;
}
nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
}
nav a {
  text-decoration: none;
  position: relative;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #111;
  transition: width .2s ease;
}
nav a:hover::after {
  width: 100%;
}
nav a.active::after {
  width: 100%;
}
.lang-switch span {
  cursor: pointer;
  opacity: .5;
  font-size: 13px;
}
.lang-switch span.active {
  font-weight: 600;
  opacity: 1;
}
main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 32px 16px 48px;
}
section {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-soft);
}
section:last-of-type {
  border-bottom: none;
}
h1, h2, h3 {
  margin: 0 0 12px;
}
h1 { font-size: 32px; }
h2 { font-size: 24px; }
h3 { font-size: 18px; }
p { margin: 0 0 10px; line-height: 1.5; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 32px;
  align-items: center;
}
.hero-image {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.hero-image img {
  display: block;
  width: 100%;
  height: auto;
}
.hero-meta {
  font-size: 13px;
  opacity: .7;
  margin-bottom: 6px;
}
.hero-quote {
  font-style: italic;
  margin-top: 10px;
}
.btn {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  cursor: pointer;
  margin-top: 10px;
}
.btn.outline {
  background: transparent;
  color: #111;
}
.btn + .btn { margin-left: 8px; }
.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 16px;
}
.card {
  border-radius: 8px;
  border: 1px solid var(--border-soft);
  padding: 14px 16px;
  background: rgba(255,255,255,0.9);
}
.card h3 {
  margin-bottom: 6px;
}
.card-meta {
  font-size: 12px;
  opacity: .7;
  margin-bottom: 6px;
}
.tag {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 999px;
  background: #f3f3f3;
  font-size: 11px;
  margin-right: 4px;
  margin-top: 2px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  font-size: 13px;
}
th, td {
  padding: 6px 8px;
  text-align: left;
  border-bottom: 1px solid var(--border-soft);
}
th {
  background: rgba(0,0,0,0.03);
  font-weight: 600;
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
  gap: 24px;
  margin-top: 16px;
}
.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 4px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid var(--border-soft);
  font-family: inherit;
  font-size: 13px;
  margin-bottom: 10px;
}
.contact-form textarea { min-height: 120px; resize: vertical; }
footer {
  max-width: 1080px;
  margin: 0 auto;
  padding: 24px 16px 40px;
  font-size: 11px;
  opacity: .6;
  border-top: 1px solid var(--border-soft);
}
@media(max-width: 900px){
  .hero {
    grid-template-columns: 1fr;
  }
  .grid, .grid-2 {
    grid-template-columns: 1fr;
  }
  header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 8px;
  }
  main {
    padding: 24px 16px 32px;
  }
}
.card-image {
  margin: -6px -6px 10px -6px;
  border-radius: 6px;
  overflow: hidden;
}

.card-image img {
  display: block;
  width: 100%;
  height: auto;
}

.btn.small {
  padding: 6px 10px;
  font-size: 12px;
}
