/* Nisan ve Kina Atmosferi */

:root {
  --bg-deep: #080d1a;
  --bg-section: #0c1225;
  --bg-card: #111a30;
  --bg-cream: #faf6ef;
  --bg-cream-alt: #f3ece0;
  --gold: #d4aa40;
  --gold-light: #ecd580;
  --gold-glow: rgba(212, 170, 64, 0.15);
  --gold-dim: #9a7a2e;
  --amber: #c78c30;
  --text-light: #ede8df;
  --text-soft: #b8b0a2;
  --text-dark: #2a2014;
  --text-dark-soft: #5e5244;
  --warm: #c46e2e;
  --border-gold: rgba(212, 170, 64, 0.18);
  --border-faint: rgba(255, 255, 255, 0.04);
  --overlay: rgba(8, 13, 26, 0.88);
  --heading: "Georgia", "Palatino Linotype", "Book Antiqua", serif;
  --body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --max-w: 1100px;
  --radius: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--body);
  background: var(--bg-deep);
  color: var(--text-light);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--gold-light);
  text-decoration: none;
  transition: color 0.4s var(--ease);
}
a:hover, a:focus { color: #fff; }

ul, ol { list-style: none; }

::selection { background: var(--gold); color: var(--bg-deep); }

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--gold); color: var(--bg-deep);
  padding: 0.75rem 1.5rem; z-index: 10000;
  font-weight: 700; border-radius: 0 0 var(--radius) var(--radius);
  transition: top 0.3s var(--ease);
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* -------- HEADER -------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  width: 100%;
  background: rgba(8, 13, 26, 0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(212, 170, 64, 0.1);
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.header--scrolled {
  background: rgba(8, 13, 26, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--max-w); width: 100%;
  margin: 0 auto; padding: 0 1rem 0 1.5rem; height: 68px;
  min-width: 0; overflow: hidden;
}

.header__logo {
  font-family: var(--heading);
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.06em;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.header__logo:hover { color: var(--gold); opacity: 0.85; }
.header__logo span { color: var(--text-soft); font-size: 0.78rem; margin-left: 0.4rem; }

.nav__list {
  display: flex; gap: 0.15rem; align-items: center;
  min-width: 0; flex-shrink: 1;
}

.nav__link {
  display: block; padding: 0.45rem 0.75rem;
  font-size: 0.82rem; font-weight: 500;
  color: #d0c9bc;
  border-radius: 6px;
  transition: color 0.35s var(--ease), background 0.35s var(--ease);
  white-space: nowrap; position: relative;
}

.nav__link::after {
  content: ""; position: absolute; bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--gold); border-radius: 1px;
  transition: width 0.4s var(--ease), left 0.4s var(--ease);
}

.nav__link:hover, .nav__link:focus {
  color: #fff;
  background: rgba(212, 170, 64, 0.08);
}

.nav__link--active {
  color: var(--gold-light);
}
.nav__link--active::after {
  width: 60%; left: 20%;
}

.nav__toggle {
  display: none; background: none;
  border: 1px solid rgba(212, 170, 64, 0.3);
  border-radius: 6px; padding: 0.45rem 0.55rem;
  cursor: pointer; color: var(--gold);
  font-size: 1.3rem; line-height: 1;
  transition: border-color 0.3s, transform 0.3s var(--ease);
  margin-left: auto; flex-shrink: 0;
}
.nav__toggle:hover { border-color: var(--gold); }
.nav__toggle--open { transform: rotate(90deg); }

/* -------- PARTICLES CANVAS -------- */
.particles-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* -------- CONTAINER / SECTION -------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

.section {
  padding: 6rem 1.5rem; position: relative; overflow: hidden; z-index: 1;
}

.section--dark { background: var(--bg-section); }

.section--cream {
  background: var(--bg-cream); color: var(--text-dark);
}
.section--cream-alt {
  background: var(--bg-cream-alt); color: var(--text-dark);
}

.section__header { text-align: center; margin-bottom: 3.5rem; }

.section__title {
  font-family: var(--heading);
  font-size: 2.4rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.section--cream .section__title,
.section--cream-alt .section__title { color: var(--warm); }

.section__subtitle {
  font-size: 1.02rem; color: var(--text-soft);
  max-width: 600px; margin: 0 auto; line-height: 1.65;
}
.section--cream .section__subtitle,
.section--cream-alt .section__subtitle { color: var(--text-dark-soft); }

/* Gold divider */
.gold-divider {
  width: 70px; height: 1px; border: none; margin: 1.2rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: relative;
}
.gold-divider::before {
  content: ""; position: absolute; left: 50%; top: -3px;
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%; transform: translateX(-50%);
  box-shadow: 0 0 12px var(--gold-glow);
}

/* -------- HERO -------- */
.hero {
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 1.5rem 5rem;
  position: relative; z-index: 1; overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, rgba(212, 170, 64, 0.06) 0%, transparent 55%),
              linear-gradient(175deg, var(--bg-deep) 0%, #0a1020 50%, var(--bg-section) 100%);
}

.hero__glow {
  position: absolute; width: 500px; height: 500px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(212, 170, 64, 0.08) 0%, transparent 70%);
  top: 20%; left: 50%; transform: translateX(-50%);
  animation: heroGlow 6s ease-in-out infinite alternate;
}

@keyframes heroGlow {
  0% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  100% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.hero__content { position: relative; z-index: 2; max-width: 720px; }

.hero__tagline {
  font-size: 0.85rem; color: var(--gold-dim);
  text-transform: uppercase; letter-spacing: 0.3em;
  margin-bottom: 1.8rem; font-weight: 500;
}

.hero__title {
  font-family: var(--heading);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--text-light); line-height: 1.15;
  margin-bottom: 1.8rem;
}
.hero__title em {
  font-style: normal; color: var(--gold);
  text-shadow: 0 0 40px rgba(212, 170, 64, 0.3);
}

.hero__desc {
  font-size: 1.08rem; color: var(--text-soft);
  max-width: 560px; margin: 0 auto 3rem; line-height: 1.75;
}

.hero__cta {
  display: inline-block; padding: 0.9rem 2.6rem;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: var(--radius); font-size: 0.92rem;
  letter-spacing: 0.06em; font-weight: 500;
  transition: all 0.5s var(--ease);
  position: relative; overflow: hidden;
}
.hero__cta::before {
  content: ""; position: absolute; inset: 0;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.5s var(--ease);
  z-index: -1;
}
.hero__cta:hover { color: var(--bg-deep); border-color: var(--gold); }
.hero__cta:hover::before { transform: scaleX(1); }
.hero__cta--secondary {
  background: var(--gold); color: var(--bg-deep); font-weight: 600;
}
.hero__cta--secondary::before { background: var(--gold-light); }
.hero__cta--secondary:hover { color: var(--bg-deep); }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%); display: flex; flex-direction: column;
  align-items: center; gap: 0.5rem;
}
.hero__scroll-line {
  width: 1px; height: 40px; background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* -------- DECORATIVE PANELS -------- */
.atmo-panel {
  background: linear-gradient(135deg, var(--bg-card), rgba(212, 170, 64, 0.04));
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 2.5rem 2rem; display: flex; align-items: center;
  justify-content: center; min-height: 180px;
  position: relative; overflow: hidden;
  transition: border-color 0.5s var(--ease);
}
.atmo-panel:hover { border-color: rgba(212, 170, 64, 0.35); }

.atmo-panel--cream {
  background: linear-gradient(135deg, var(--bg-cream-alt), rgba(196, 110, 46, 0.04));
  border-color: rgba(196, 110, 46, 0.15);
}
.atmo-panel--cream:hover { border-color: rgba(196, 110, 46, 0.3); }

.atmo-panel__inner { text-align: center; position: relative; z-index: 2; }

.atmo-panel__label {
  font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.18em; color: var(--gold-dim); margin-top: 1rem;
}
.section--cream .atmo-panel__label,
.section--cream-alt .atmo-panel__label { color: var(--text-dark-soft); }

/* -------- CONTENT BLOCKS -------- */
.content-block { margin-bottom: 2.5rem; }

.content-block__title {
  font-family: var(--heading); font-size: 1.35rem;
  color: var(--gold-light); margin-bottom: 0.7rem;
}
.section--cream .content-block__title,
.section--cream-alt .content-block__title { color: var(--warm); }

.content-block p { margin-bottom: 1rem; line-height: 1.85; }

/* Content with image */
.content-with-image {
  display: grid; grid-template-columns: 1fr 280px;
  gap: 2.5rem; align-items: start; margin-bottom: 2.5rem;
}
.content-with-image--reverse { grid-template-columns: 280px 1fr; }

.content-image {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-gold);
  transition: border-color 0.4s var(--ease), transform 0.6s var(--ease);
}
.content-image:hover {
  border-color: rgba(212, 170, 64, 0.4);
  transform: translateY(-3px);
}

.section--cream .content-image,
.section--cream-alt .content-image { border-color: rgba(196, 110, 46, 0.15); }

.content-image img { width: 100%; height: auto; display: block; object-fit: cover; }

/* -------- GRIDS -------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

/* -------- CARDS -------- */
.card {
  background: linear-gradient(145deg, var(--bg-card), rgba(212, 170, 64, 0.02));
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 2rem; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(212, 170, 64, 0.08);
  border-color: rgba(212, 170, 64, 0.3);
}
.card:hover::before { opacity: 1; }

.section--cream .card, .section--cream-alt .card {
  background: #fff; border-color: rgba(196, 110, 46, 0.1);
}
.section--cream .card:hover, .section--cream-alt .card:hover {
  box-shadow: 0 12px 40px rgba(196, 110, 46, 0.06);
  border-color: rgba(196, 110, 46, 0.25);
}

.card__icon { width: 44px; height: 44px; margin-bottom: 1.2rem; color: var(--gold); }

.card__title {
  font-family: var(--heading); font-size: 1.1rem;
  color: var(--gold-light); margin-bottom: 0.55rem;
}
.section--cream .card__title,
.section--cream-alt .card__title { color: var(--warm); }

.card__text { font-size: 0.93rem; color: var(--text-soft); line-height: 1.75; }
.section--cream .card__text,
.section--cream-alt .card__text { color: var(--text-dark-soft); }

/* -------- AKIS TASARLAYICI -------- */
.akis-tool {
  background: linear-gradient(145deg, var(--bg-card), rgba(212, 170, 64, 0.03));
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 2.5rem; max-width: 800px; margin: 0 auto;
}

.akis-tool__group { margin-bottom: 2rem; }

.akis-tool__label {
  display: block; font-size: 0.88rem; color: var(--gold-light);
  margin-bottom: 0.75rem; font-weight: 600;
}

.akis-tool__options { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.akis-tool__option { position: relative; }
.akis-tool__option input[type="radio"] { position: absolute; opacity: 0; width: 0; height: 0; }

.akis-tool__option-label {
  display: block; padding: 0.55rem 1.3rem;
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  cursor: pointer; font-size: 0.88rem; color: var(--text-soft);
  transition: all 0.4s var(--ease);
}
.akis-tool__option input:checked + .akis-tool__option-label {
  border-color: var(--gold); color: var(--gold);
  background: rgba(212, 170, 64, 0.1);
  box-shadow: 0 0 20px rgba(212, 170, 64, 0.08);
}
.akis-tool__option input:focus-visible + .akis-tool__option-label {
  outline: 2px solid var(--gold); outline-offset: 2px;
}
.akis-tool__option-label:hover { border-color: var(--gold-dim); color: var(--gold-dim); }

.akis-tool__slider-wrap { display: flex; align-items: center; gap: 1rem; }

.akis-tool__slider {
  flex: 1; -webkit-appearance: none; appearance: none;
  height: 3px; background: var(--border-gold);
  border-radius: 2px; outline: none;
}
.akis-tool__slider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px;
  border-radius: 50%; background: var(--gold); cursor: pointer;
  border: 2px solid var(--bg-card);
  box-shadow: 0 0 12px rgba(212, 170, 64, 0.3);
}
.akis-tool__slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  border: 2px solid var(--bg-card);
}

.akis-tool__slider-value {
  min-width: 3.5rem; text-align: center;
  font-size: 0.95rem; color: var(--gold-light); font-weight: 600;
}

.akis-tool__btn {
  display: inline-block; padding: 0.7rem 2rem;
  background: var(--gold); color: var(--bg-deep);
  border: none; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600; cursor: pointer;
  transition: all 0.4s var(--ease);
}
.akis-tool__btn:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(212, 170, 64, 0.25); }

.akis-result {
  margin-top: 2rem; padding: 2rem;
  background: rgba(212, 170, 64, 0.04);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  display: none;
}
.akis-result--visible { display: block; animation: fadeSlideUp 0.6s var(--ease); }

.akis-result__title { font-family: var(--heading); font-size: 1.15rem; color: var(--gold); margin-bottom: 1rem; }

.akis-result__step {
  padding: 0.7rem 0; border-bottom: 1px solid var(--border-gold);
  display: flex; gap: 1rem; align-items: flex-start;
}
.akis-result__step:last-child { border-bottom: none; }

.akis-result__step-num {
  flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold); color: var(--bg-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
}
.akis-result__step-text { font-size: 0.93rem; color: var(--text-light); line-height: 1.6; }

.akis-result__tip {
  margin-top: 1.5rem; padding: 1rem 1.2rem;
  background: rgba(212, 170, 64, 0.06);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.88rem; color: var(--text-soft); line-height: 1.65;
}

/* -------- FAQ -------- */
.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid rgba(196, 110, 46, 0.12); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 0; background: none; border: none; cursor: pointer;
  text-align: left; font-family: var(--heading);
  font-size: 1.02rem; color: var(--text-dark); line-height: 1.4;
  transition: color 0.35s var(--ease);
}
.faq-question:hover { color: var(--warm); }

.faq-question__icon {
  flex-shrink: 0; width: 22px; height: 22px; margin-left: 1rem;
  transition: transform 0.45s var(--ease); color: var(--warm);
}
.faq-item--open .faq-question__icon { transform: rotate(45deg); }

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.faq-answer__inner {
  overflow: hidden;
}
.faq-item--open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item--open .faq-answer__inner {
  padding-bottom: 1.2rem;
}

.faq-answer p { font-size: 0.93rem; color: var(--text-dark-soft); line-height: 1.85; }

/* -------- FOOTER -------- */
.footer {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border-gold);
  padding: 0 1.5rem 0; position: relative; z-index: 1;
  overflow: hidden;
}

.footer::before {
  content: ""; position: absolute; top: 0; left: 50%;
  transform: translateX(-50%); width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(212, 170, 64, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.footer__top {
  max-width: var(--max-w); margin: 0 auto;
  padding: 3.5rem 0 2.5rem;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; text-align: center;
  border-bottom: 1px solid var(--border-faint);
}

.footer__brand {
  font-family: var(--heading); font-size: 1.35rem;
  color: var(--gold); margin-bottom: 0.6rem;
  letter-spacing: 0.04em;
}
.footer__desc {
  font-size: 0.88rem; color: var(--text-soft);
  line-height: 1.7; max-width: 440px;
}

.footer__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; padding: 2.5rem 0;
}

.footer__heading {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.2em; color: var(--gold);
  margin-bottom: 1rem; font-weight: 600;
  position: relative; padding-bottom: 0.6rem;
}
.footer__heading::after {
  content: ""; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 1px; background: var(--gold-dim);
}

.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
  font-size: 0.88rem; color: var(--text-soft);
  position: relative; padding-left: 0;
  transition: color 0.35s var(--ease), padding-left 0.35s var(--ease);
}
.footer__links a::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
  transform: translateY(-50%);
}
.footer__links a:hover {
  color: var(--gold-light); padding-left: 14px;
}
.footer__links a:hover::before { width: 8px; }

.footer__bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid var(--border-faint);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: rgba(180, 175, 165, 0.5);
}
.footer__bottom a { color: rgba(180, 175, 165, 0.5); }
.footer__bottom a:hover { color: var(--gold-light); }

/* -------- COOKIE BANNER -------- */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: rgba(8, 13, 26, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: transform 0.6s var(--ease);
}
.cookie-banner--visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: flex-start; gap: 2rem; flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1; min-width: 260px;
  font-size: 0.88rem; color: var(--text-soft); line-height: 1.6;
}
.cookie-banner__text a { color: var(--gold-light); text-decoration: underline; }

.cookie-banner__actions { display: flex; gap: 0.6rem; flex-wrap: wrap; align-items: center; }

.cookie-btn {
  padding: 0.55rem 1.3rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  transition: all 0.4s var(--ease);
  border: 1px solid var(--gold); white-space: nowrap;
}
.cookie-btn--accept { background: var(--gold); color: var(--bg-deep); }
.cookie-btn--accept:hover { background: var(--gold-light); }
.cookie-btn--reject { background: transparent; color: var(--gold); }
.cookie-btn--reject:hover { background: rgba(212, 170, 64, 0.08); }
.cookie-btn--settings { background: transparent; color: var(--gold); }
.cookie-btn--settings:hover { background: rgba(212, 170, 64, 0.08); }

/* Cookie modal */
.cookie-settings-modal {
  position: fixed; inset: 0; z-index: 10000;
  display: none; align-items: center; justify-content: center;
  background: var(--overlay);
}
.cookie-settings-modal--visible { display: flex; }

.cookie-settings__box {
  background: var(--bg-section); border: 1px solid var(--border-gold);
  border-radius: var(--radius); padding: 2.5rem;
  max-width: 500px; width: 90%; max-height: 80vh; overflow-y: auto;
}
.cookie-settings__title { font-family: var(--heading); font-size: 1.25rem; color: var(--gold); margin-bottom: 1.5rem; }

.cookie-settings__group { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border-faint); }
.cookie-settings__group:last-of-type { border-bottom: none; }
.cookie-settings__group-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.5rem; }
.cookie-settings__group-name { font-weight: 600; font-size: 0.93rem; color: var(--text-light); }
.cookie-settings__group-desc { font-size: 0.83rem; color: var(--text-soft); line-height: 1.6; }

.toggle-switch { position: relative; width: 42px; height: 22px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch__slider {
  position: absolute; inset: 0; background: #2a2a3a;
  border-radius: 11px; cursor: pointer; transition: background 0.4s var(--ease);
}
.toggle-switch__slider::before {
  content: ""; position: absolute; width: 16px; height: 16px;
  left: 3px; bottom: 3px; background: #fff;
  border-radius: 50%; transition: transform 0.4s var(--ease);
}
.toggle-switch input:checked + .toggle-switch__slider { background: var(--gold); }
.toggle-switch input:checked + .toggle-switch__slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-switch__slider { opacity: 0.5; cursor: not-allowed; }
.cookie-settings__save { margin-top: 1rem; }

/* -------- CONTACT / FORM -------- */
.contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem; margin-bottom: 1rem;
}

.contact-card {
  background: linear-gradient(145deg, var(--bg-card), rgba(212, 170, 64, 0.03));
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  display: flex; align-items: flex-start; gap: 1rem;
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.contact-card:hover {
  border-color: rgba(212, 170, 64, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 170, 64, 0.06);
}

.contact-card__icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(212, 170, 64, 0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.contact-card__icon svg { width: 18px; height: 18px; }

.contact-card__body { min-width: 0; }

.contact-card__label {
  font-size: 0.72rem; text-transform: uppercase;
  letter-spacing: 0.16em; color: var(--gold-dim);
  margin-bottom: 0.2rem; font-weight: 600;
}
.contact-card__value {
  font-size: 0.95rem; color: var(--text-light); line-height: 1.5;
  word-break: break-word;
}
.contact-card__value a { color: var(--gold-light); }
.contact-card__value a:hover { color: #fff; }

.form-section {
  background: linear-gradient(145deg, var(--bg-card), rgba(212, 170, 64, 0.03));
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  padding: 2.5rem; max-width: 620px; margin: 3rem auto 0;
}
.form-section__title { font-family: var(--heading); font-size: 1.35rem; color: var(--gold); margin-bottom: 0.5rem; }
.form-section__desc { font-size: 0.9rem; color: var(--text-soft); margin-bottom: 2rem; line-height: 1.6; }

.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; font-size: 0.88rem; color: var(--gold-light); margin-bottom: 0.35rem; font-weight: 500; }
.form-label .required { color: var(--warm); }

.form-input, .form-textarea {
  width: 100%; padding: 0.7rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-gold); border-radius: var(--radius);
  color: var(--text-light); font-family: var(--body); font-size: 0.93rem;
  transition: border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold); outline: none;
  box-shadow: 0 0 0 3px rgba(212, 170, 64, 0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }

.form-consent { display: flex; gap: 0.7rem; align-items: flex-start; margin-bottom: 1.5rem; }
.form-consent input[type="checkbox"] { margin-top: 0.25rem; accent-color: var(--gold); flex-shrink: 0; }
.form-consent__text { font-size: 0.83rem; color: var(--text-soft); line-height: 1.5; }

.form-submit {
  display: inline-block; padding: 0.75rem 2.4rem;
  background: var(--gold); color: var(--bg-deep);
  border: none; border-radius: var(--radius);
  font-size: 0.93rem; font-weight: 600; cursor: pointer;
  transition: all 0.4s var(--ease); position: relative; overflow: hidden;
}
.form-submit:hover { background: var(--gold-light); box-shadow: 0 4px 20px rgba(212, 170, 64, 0.25); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.form-message { margin-top: 1rem; padding: 1rem; border-radius: var(--radius); font-size: 0.88rem; display: none; }
.form-message--success { display: block; background: rgba(76, 175, 80, 0.1); border: 1px solid rgba(76, 175, 80, 0.25); color: #81c784; }
.form-message--error { display: block; background: rgba(244, 67, 54, 0.1); border: 1px solid rgba(244, 67, 54, 0.25); color: #e57373; }

.form-hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* -------- LEGAL PAGES -------- */
.legal-page { padding-top: 100px; padding-bottom: 4rem; min-height: 100vh; }

.legal-page h1 { font-family: var(--heading); font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; }
.legal-page .legal-date { font-size: 0.86rem; color: var(--text-soft); margin-bottom: 2rem; }
.legal-page h2 { font-family: var(--heading); font-size: 1.25rem; color: var(--gold-light); margin-top: 2rem; margin-bottom: 0.7rem; }
.legal-page p { margin-bottom: 1rem; color: var(--text-soft); line-height: 1.85; }
.legal-page ul { margin-bottom: 1rem; padding-left: 1.5rem; }
.legal-page ul li { list-style: disc; margin-bottom: 0.4rem; color: var(--text-soft); line-height: 1.7; }

.sitemap-list { padding-left: 1.5rem; }
.sitemap-list li { list-style: disc; margin-bottom: 0.7rem; }
.sitemap-list a { font-size: 0.98rem; color: var(--gold-light); }

/* -------- 404 -------- */
.error-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 2rem;
}
.error-page__code { font-family: var(--heading); font-size: 7rem; color: var(--gold); line-height: 1; margin-bottom: 1rem; text-shadow: 0 0 60px rgba(212, 170, 64, 0.2); }
.error-page__title { font-family: var(--heading); font-size: 1.5rem; color: var(--text-light); margin-bottom: 1rem; }
.error-page__text { font-size: 0.98rem; color: var(--text-soft); margin-bottom: 2rem; }
.error-page__link {
  display: inline-block; padding: 0.7rem 2rem;
  border: 1px solid var(--gold); color: var(--gold);
  border-radius: var(--radius);
  transition: all 0.4s var(--ease);
}
.error-page__link:hover { background: var(--gold); color: var(--bg-deep); }

/* -------- ANIMATIONS -------- */
.reveal {
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal--visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left--visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right--visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0; transform: scale(0.92);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal-scale--visible { opacity: 1; transform: scale(1); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.12s; }
.stagger > *:nth-child(3) { transition-delay: 0.24s; }
.stagger > *:nth-child(4) { transition-delay: 0.36s; }

/* Section transitions */
.section::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--border-gold) 50%, transparent 90%);
}
.section:first-child::before { display: none; }
.hero::before { display: none; }

/* Glow accents on dark sections */
.section--dark::after {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 350px; height: 350px; border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 170, 64, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* -------- REDUCED MOTION -------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1; transform: none; }
  .particles-canvas { display: none; }
}

/* -------- RESPONSIVE -------- */
@media (max-width: 992px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav__toggle { display: block; }

  .nav__list {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(8, 13, 26, 0.97);
    backdrop-filter: blur(16px);
    flex-direction: column; padding: 0.75rem 1rem; gap: 0;
    border-bottom: 1px solid var(--border-gold);
    transform: translateY(-120%); opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.4s var(--ease);
    overflow: visible;
  }
  .nav__list--open { transform: translateY(0); opacity: 1; pointer-events: auto; }

  .nav__link { padding: 0.7rem 1rem; font-size: 0.9rem; }
  .nav__link::after { display: none; }
  .nav__link--active { background: rgba(212, 170, 64, 0.08); }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 1rem; }

  body { font-size: 0.94rem; line-height: 1.7; }

  .section__title { font-size: 1.7rem; }
  .section__subtitle { font-size: 0.93rem; }
  .hero__title { font-size: clamp(1.7rem, 5vw, 2.4rem); }
  .hero__desc { font-size: 0.95rem; }
  .hero__tagline { font-size: 0.75rem; letter-spacing: 0.2em; }
  .content-block__title { font-size: 1.15rem; }
  .content-block p { font-size: 0.92rem; }
  .card__title { font-size: 1rem; }
  .card__text { font-size: 0.88rem; }
  .faq-question { font-size: 0.93rem; }
  .faq-answer p { font-size: 0.88rem; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .content-with-image, .content-with-image--reverse { grid-template-columns: 1fr; }
  .content-image { max-width: 280px; }

  .contact-cards { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .akis-tool { padding: 1.5rem; }

  .legal-page h1 { font-size: 1.6rem; }
  .legal-page h2 { font-size: 1.1rem; }
  .legal-page p { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0.75rem; }
  body { font-size: 0.9rem; }

  .section__title { font-size: 1.45rem; }
  .hero__title { font-size: 1.6rem; }
  .hero__desc { font-size: 0.9rem; margin-bottom: 2rem; }
  .hero__cta { padding: 0.75rem 2rem; font-size: 0.85rem; }

  .cookie-banner__actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .hero { padding: 6.5rem 0.75rem 3rem; min-height: auto; }
  .form-section { padding: 1.25rem; }
  .card { padding: 1.5rem; }

  .contact-card { padding: 1.1rem 1rem; gap: 0.8rem; }
  .contact-card__icon { width: 36px; height: 36px; }
  .contact-card__value { font-size: 0.88rem; }

  .footer__brand { font-size: 1.15rem; }
  .footer__desc { font-size: 0.82rem; }
}
