/* Drobem — paylaşılan stil */
* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0A0A0F;
  --bg-2: #14141C;
  --surface: #1A1A24;
  --border: #2A2A38;
  --text: #E8E8F0;
  --text-dim: #9B9BB0;
  --gold: #D4AF37;
  --gold-soft: #E8C766;
  --max: 760px;
}

html, body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 22px 64px;
  width: 100%;
  flex: 1;
}

header.top {
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #0E0E15 0%, var(--bg) 100%);
}

header.top .wrap {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #0A0A0F;
  font-size: 20px;
  letter-spacing: -1px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.5px;
}

nav.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

nav.top-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.15s;
}

nav.top-nav a:hover, nav.top-nav a.active {
  color: var(--gold);
}

.lang-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.lang-toggle button {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-family: inherit;
  font-weight: 700;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.lang-toggle button.active {
  background: var(--gold);
  color: #0A0A0F;
}

h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 5vw, 44px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: var(--text);
}

h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.4px;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--gold);
}

h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 16px;
  margin-top: 22px;
  margin-bottom: 8px;
  color: var(--text);
}

p, li {
  font-size: 15.5px;
  color: var(--text);
  margin-bottom: 12px;
}

p.meta {
  color: var(--text-dim);
  font-size: 13.5px;
  margin-bottom: 28px;
  letter-spacing: 0.2px;
}

ul, ol {
  margin: 0 0 12px 22px;
}

li { margin-bottom: 6px; }

a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 22px 0;
}

.contact {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 18px;
  margin: 18px 0;
}

.contact .ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.contact a {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: #0A0A0F;
  font-weight: 800;
  font-size: 15px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.20);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(212, 175, 55, 0.30);
  color: #0A0A0F;
}

footer {
  border-top: 1px solid var(--border);
  background: #06060B;
  padding: 26px 0;
  text-align: center;
}

footer .wrap {
  padding-top: 0;
  padding-bottom: 0;
}

footer p {
  color: var(--text-dim);
  font-size: 13px;
  margin: 4px 0;
}

footer .links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

footer .links a {
  color: var(--text-dim);
  font-size: 13px;
  text-decoration: none;
  font-weight: 600;
}

footer .links a:hover { color: var(--gold); }

.lang-content[hidden] { display: none; }

@media (max-width: 520px) {
  .wrap { padding: 22px 16px 48px; }
  h2 { font-size: 19px; }
  p, li { font-size: 15px; }
  header.top .wrap { flex-direction: column; align-items: flex-start; gap: 14px; }
  nav.top-nav { width: 100%; }
}

/* Home page hero */
.hero {
  text-align: center;
  padding: 32px 0 18px;
}

.hero .tagline {
  font-size: 17px;
  color: var(--text-dim);
  margin: 8px auto 24px;
  max-width: 520px;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}

@media (min-width: 600px) {
  .feature-grid { grid-template-columns: 1fr 1fr; }
}

.feature {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}

.feature h3 { margin-top: 0; color: var(--gold); }
.feature p { color: var(--text-dim); margin: 0; font-size: 14.5px; }
