/* ===== OYUN INCELEME ATOLYESI — CYBERPUNK THEME ===== */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #151c2c;
  --bg-card-hover: #1a2338;
  --border-color: #1e293b;
  --border-neon: #00e5ff;
  --border-neon-alt: #b026ff;
  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --accent-cyan: #00e5ff;
  --accent-magenta: #b026ff;
  --accent-pink: #ff2d7b;
  --accent-yellow: #ffd600;
  --accent-green: #39ff14;
  --gradient-neon: linear-gradient(135deg, #00e5ff 0%, #b026ff 100%);
  --gradient-card: linear-gradient(145deg, #151c2c 0%, #1a1f35 100%);
  --shadow-neon: 0 0 15px rgba(0, 229, 255, 0.15);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --font-main: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
  --font-mono: 'Consolas', 'Fira Code', 'Courier New', monospace;
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.25s ease;
  --max-width: 1200px;
  --header-h: 64px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-main);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 8px;
}

/* ===== GRID BACKGROUND ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 229, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 229, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.section:nth-child(even) {
  background: rgba(17, 24, 39, 0.5);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  color: var(--text-primary);
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gradient-neon);
  margin-top: 8px;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 700px;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(10, 14, 23, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 229, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--gradient-neon);
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.06);
}

.main-nav a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-primary);
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: auto;
    background: #0a0e17;
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 999;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .main-nav.open {
    transform: translateX(0);
  }

  .main-nav a {
    font-size: 1.05rem;
    padding: 12px 16px;
  }
}

/* ===== HERO ===== */
.hero {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 229, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(176, 38, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.3);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  line-height: 1.8;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--gradient-neon);
  color: var(--bg-primary);
}

.btn-primary:hover {
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-cyan);
  border: 1px solid rgba(0, 229, 255, 0.4);
}

.btn-secondary:hover {
  background: rgba(0, 229, 255, 0.08);
  border-color: var(--accent-cyan);
}

/* ===== CARDS / HUD PANELS ===== */
.card {
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-neon);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: var(--shadow-neon);
  transform: translateY(-2px);
}

.card:hover::before {
  opacity: 1;
}

/* ===== METHOD SECTION ===== */
.method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.method-card {
  text-align: center;
  padding: 32px 20px;
}

.method-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.15);
}

.method-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.5;
}

.method-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== NOTES SECTION ===== */
.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.note-card {
  padding: 28px;
}

.note-card h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--accent-cyan);
}

.note-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== PLATFORM SECTION ===== */
.platform-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 768px) {
  .platform-content {
    grid-template-columns: 1fr;
  }
}

.platform-text p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.platform-sidebar .card {
  padding: 24px;
}

.platform-sidebar h3 {
  color: var(--accent-cyan);
  font-size: 1rem;
  margin-bottom: 12px;
}

.platform-sidebar ul {
  list-style: none;
  padding: 0;
}

.platform-sidebar li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.9rem;
  position: relative;
  padding-left: 18px;
}

.platform-sidebar li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
  transform: translateY(-50%);
}

.platform-sidebar li:last-child {
  border-bottom: none;
}

/* ===== SAFE GAMING SECTION ===== */
.safe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.safe-card {
  padding: 28px;
  border-left: 3px solid var(--accent-green);
}

.safe-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--accent-green);
}

.safe-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== REVIEWS / FILTERS ===== */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 32px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.filter-group label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.filter-group select {
  background: var(--bg-secondary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 8px 32px 8px 12px;
  font-size: 0.9rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' stroke='%2394a3b8' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  transition: border-color var(--transition);
}

.filter-group select:focus {
  outline: none;
  border-color: var(--accent-cyan);
}

.filter-reset {
  align-self: flex-end;
  background: none;
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 8px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.85rem;
  transition: all var(--transition);
}

.filter-reset:hover {
  border-color: var(--accent-pink);
  color: var(--accent-pink);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

@media (max-width: 400px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  display: flex;
  flex-direction: column;
}

.review-card[data-hidden="true"] {
  display: none;
}

.review-img-placeholder {
  height: 180px;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, #1a2240 100%);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-img-placeholder svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.review-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: var(--gradient-card);
  border: 1px solid var(--border-color);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.review-card:hover .review-body {
  border-color: rgba(0, 229, 255, 0.25);
  box-shadow: var(--shadow-neon);
}

.review-card:hover .review-img-placeholder {
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-bottom: none;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.review-title {
  font-size: 1.12rem;
  font-weight: 700;
}

.review-genre-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent-magenta);
  border: 1px solid rgba(176, 38, 255, 0.3);
  padding: 2px 8px;
  border-radius: 4px;
  white-space: nowrap;
}

.review-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.82rem;
  border-top: 1px solid var(--border-color);
  padding-top: 14px;
}

.review-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.meta-label {
  color: var(--text-muted);
}

.meta-value {
  color: var(--text-secondary);
  font-weight: 500;
}

.review-note {
  margin-top: 12px;
  padding: 12px;
  background: rgba(0, 229, 255, 0.04);
  border: 1px solid rgba(0, 229, 255, 0.1);
  border-radius: var(--radius);
  font-size: 0.82rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-note strong {
  color: var(--accent-cyan);
  font-weight: 600;
}

.review-turkey-note {
  margin-top: 8px;
  padding: 10px 12px;
  background: rgba(176, 38, 255, 0.04);
  border-left: 2px solid var(--accent-magenta);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.review-turkey-note strong {
  color: var(--accent-magenta);
  font-weight: 600;
}

.no-results-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 1rem;
  display: none;
  grid-column: 1 / -1;
}

.no-results-msg.visible {
  display: block;
}

/* ===== FAQ ACCORDION ===== */
.faq-list {
  max-width: 800px;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item:hover {
  border-color: rgba(0, 229, 255, 0.2);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: none;
  padding: 18px 20px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-card-hover);
}

.faq-question:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: -2px;
}

.faq-chevron {
  width: 20px;
  height: 20px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item[data-open="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 48px 0 24px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col h4 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer-col a:hover,
.footer-col a:focus-visible {
  color: var(--accent-cyan);
}

.footer-col a:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.82rem;
}

/* ===== INNER PAGES ===== */
.page-hero {
  padding-top: calc(var(--header-h) + 48px);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: var(--text-secondary);
  margin-top: 8px;
}

.page-content {
  padding: 48px 0 80px;
  position: relative;
  z-index: 1;
}

.page-content h2 {
  font-size: 1.4rem;
  color: var(--text-primary);
  margin-top: 40px;
  margin-bottom: 12px;
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content h3 {
  font-size: 1.1rem;
  color: var(--accent-cyan);
  margin-top: 28px;
  margin-bottom: 8px;
}

.page-content p,
.page-content li {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.page-content ul,
.page-content ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.page-content a {
  color: var(--accent-cyan);
  text-decoration: underline;
  text-decoration-color: rgba(0, 229, 255, 0.3);
  transition: text-decoration-color var(--transition);
}

.page-content a:hover {
  text-decoration-color: var(--accent-cyan);
}

.legal-text {
  max-width: 800px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.contact-info-card {
  padding: 32px;
}

.contact-info-card h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(0, 229, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-cyan);
  fill: none;
  stroke-width: 1.5;
}

.contact-item-text strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.contact-item-text span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-card {
  padding: 32px;
}

.form-card h2 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-group label .required {
  color: var(--accent-pink);
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--accent-cyan);
  flex-shrink: 0;
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit {
  width: 100%;
}

.form-message {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  display: none;
  width: fit-content;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-message.success {
  display: block;
  background: rgba(57, 255, 20, 0.08);
  border: 1px solid rgba(57, 255, 20, 0.2);
  color: var(--accent-green);
}

.form-message.error {
  display: block;
  background: rgba(255, 45, 123, 0.08);
  border: 1px solid rgba(255, 45, 123, 0.2);
  color: var(--accent-pink);
}

/* Honeypot */
.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* ===== SITEMAP PAGE ===== */
.sitemap-list {
  list-style: none;
  padding: 0;
}

.sitemap-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
}

.sitemap-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.sitemap-list a::before {
  content: '';
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent-cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

.sitemap-list a:hover {
  color: var(--accent-cyan);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(17, 24, 39, 0.98);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 20px 24px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 280px;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.6;
}

.cookie-text a {
  color: var(--accent-cyan);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}

.cookie-btn:focus-visible {
  outline: 2px solid var(--accent-cyan);
  outline-offset: 2px;
}

.cookie-btn-accept {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

.cookie-btn-accept:hover {
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.3);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--text-muted);
}

.cookie-btn-reject:hover {
  border-color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.cookie-btn-settings:hover {
  border-color: var(--accent-magenta);
  color: var(--accent-magenta);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal-overlay.visible {
  display: flex;
}

.cookie-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  max-width: 520px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 32px;
}

.cookie-modal h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.cookie-modal > p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cookie-category {
  padding: 16px 0;
  border-top: 1px solid var(--border-color);
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.cookie-category-desc {
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: background var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: var(--text-secondary);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--accent-cyan);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
  background: var(--bg-primary);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ===== UTILITIES ===== */
.text-center {
  text-align: center;
}

.mt-16 {
  margin-top: 16px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ===== ACTIVE NAV LINK ===== */
.main-nav a.active {
  color: var(--accent-cyan);
  background: rgba(0, 229, 255, 0.1);
  border-bottom: 2px solid var(--accent-cyan);
}

@media (max-width: 900px) {
  .main-nav a.active {
    border-bottom: none;
    border-left: 3px solid var(--accent-cyan);
  }
}

/* ===== IMAGE + TEXT LAYOUT ===== */
.content-with-image {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  margin: 32px 0;
}

.content-with-image img {
  width: 260px;
  max-width: 38%;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  object-fit: cover;
  flex-shrink: 0;
}

.content-with-image .text-block {
  flex: 1;
}

.content-with-image .text-block p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

@media (max-width: 600px) {
  .content-with-image {
    flex-direction: column;
  }
  .content-with-image img {
    max-width: 100%;
    width: 100%;
  }
}

/* ===== FORM STANDALONE ===== */
.form-standalone {
  max-width: 640px;
  margin: 0 auto;
}

.contact-info-block {
  margin-bottom: 48px;
}

.contact-info-block .contact-items-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
