/* ==========================================================================
   Potada Teknik Atolye — Premium Dark Basketball Theme
   Advanced styling: layered depth, glass effects, refined typography
   ========================================================================== */

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

:root {
  /* Palette — deep navy base, warm amber accent */
  --bg-root:        #080b12;
  --bg-primary:     #0c1019;
  --bg-elevated:    #111620;
  --bg-card:        #141a26;
  --bg-card-hover:  #181f2d;
  --bg-input:       #111620;
  --bg-glass:       rgba(18, 23, 34, 0.72);

  --border-subtle:  rgba(255,255,255,0.04);
  --border-default: rgba(255,255,255,0.07);
  --border-strong:  rgba(255,255,255,0.12);
  --border-accent:  rgba(232,126,35,0.25);

  --accent:         #e87e23;
  --accent-light:   #f5a040;
  --accent-vivid:   #ff9028;
  --accent-dim:     rgba(232,126,35,0.08);
  --accent-mid:     rgba(232,126,35,0.15);
  --accent-glow:    rgba(232,126,35,0.30);

  --text-primary:   #f0f1f5;
  --text-secondary: #b0b5c5;
  --text-tertiary:  #727a90;
  --text-heading:   #ffffff;

  --success:        #22c55e;
  --error:          #ef4444;

  /* Court decoration colors */
  --court-faint:    rgba(232,126,35,0.03);
  --court-dim:      rgba(232,126,35,0.06);
  --court-line:     rgba(232,126,35,0.10);

  /* Typography */
  --ff: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --fs-11: 0.6875rem;
  --fs-12: 0.75rem;
  --fs-13: 0.8125rem;
  --fs-14: 0.875rem;
  --fs-15: 0.9375rem;
  --fs-16: 1rem;
  --fs-18: 1.125rem;
  --fs-20: 1.25rem;
  --fs-24: 1.5rem;
  --fs-28: 1.75rem;
  --fs-32: 2rem;
  --fs-40: 2.5rem;
  --fs-48: 3rem;
  --fs-56: 3.5rem;

  /* Spacing scale */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 20px; --s-6: 24px; --s-7: 28px; --s-8: 32px;
  --s-10: 40px; --s-12: 48px; --s-14: 56px; --s-16: 64px;
  --s-20: 80px; --s-24: 96px; --s-32: 128px;

  /* Layout */
  --max-w: 1120px;
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px; --r-lg: 16px; --r-xl: 20px; --r-2xl: 24px;

  /* Shadows — layered for realism */
  --shadow-sm:  0 1px 2px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.15);
  --shadow-md:  0 2px 4px rgba(0,0,0,0.25), 0 4px 12px rgba(0,0,0,0.2);
  --shadow-lg:  0 4px 8px rgba(0,0,0,0.3), 0 8px 24px rgba(0,0,0,0.25), 0 0 0 1px var(--border-subtle);
  --shadow-xl:  0 8px 16px rgba(0,0,0,0.35), 0 16px 48px rgba(0,0,0,0.25);
  --shadow-glow: 0 0 20px rgba(232,126,35,0.15), 0 0 60px rgba(232,126,35,0.05);
  --shadow-glow-strong: 0 0 24px rgba(232,126,35,0.25), 0 0 80px rgba(232,126,35,0.1);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --t-fast: 120ms;
  --t-base: 200ms;
  --t-slow: 350ms;
  --t-slower: 500ms;
}

@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;
  }
}

/* ==========================================================================
   BASE
   ========================================================================== */

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff);
  font-size: var(--fs-16);
  line-height: 1.65;
  color: var(--text-secondary);
  background: var(--bg-root);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Subtle noise texture via CSS */
  background-image:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(232,126,35,0.03) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232,126,35,0.02) 0%, transparent 50%);
  background-attachment: fixed;
}

/* Skip link */
.skip-link {
  position: absolute; top: -100%; left: var(--s-4);
  background: var(--accent); color: #000;
  padding: var(--s-2) var(--s-4); border-radius: var(--r-sm);
  font-weight: 700; font-size: var(--fs-14); z-index: 10000;
  text-decoration: none; transition: top var(--t-fast) var(--ease);
}
.skip-link:focus { top: var(--s-4); }

.container {
  width: 100%; max-width: var(--max-w);
  margin-inline: auto; padding-inline: var(--s-6);
}

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

a {
  color: var(--accent); text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}
a:hover { color: var(--accent-light); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px; border-radius: 2px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: var(--fs-48); }
h2 { font-size: var(--fs-32); }
h3 { font-size: var(--fs-24); }
h4 { font-size: var(--fs-18); }

@media (min-width: 769px) {
  h1 { font-size: var(--fs-56); letter-spacing: -0.03em; }
  h2 { font-size: var(--fs-40); }
  h3 { font-size: var(--fs-28); }
}

p + p { margin-top: var(--s-4); }

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

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,11,18,0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.site-header[style*="0.97"] {
  box-shadow: 0 1px 0 var(--border-default), var(--shadow-md);
}

.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px;
  position: relative;
}

/* Logo */
.logo {
  font-size: var(--fs-18); font-weight: 800;
  color: var(--text-heading); text-decoration: none;
  letter-spacing: -0.01em;
  display: flex; align-items: center; gap: var(--s-3);
  transition: opacity var(--t-fast);
  position: relative;
  z-index: 1020;
}
.logo:hover { color: var(--text-heading); opacity: 0.85; }

.logo-mark {
  display: inline-block; width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--accent);
  position: relative;
  background: radial-gradient(circle at 60% 40%, var(--accent-dim), transparent 70%);
}
.logo-mark::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; width: 10px; height: 10px;
  border-radius: 50%; background: var(--accent);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* === Desktop Nav === */
.nav-main {
  display: flex; align-items: center; gap: var(--s-6);
}

.nav-main a {
  color: var(--text-tertiary);
  font-size: var(--fs-14); font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--t-fast) var(--ease);
  padding: var(--s-1) 0;
  white-space: nowrap;
}

.nav-main a:not(.btn)::after {
  content: ""; position: absolute;
  bottom: -2px; left: 0; width: 0; height: 2px;
  background: var(--accent); border-radius: 1px;
  transition: width var(--t-base) var(--ease);
}
.nav-main a:not(.btn):hover { color: var(--text-primary); }
.nav-main a:not(.btn):hover::after { width: 100%; }

.nav-main a.is-active-link:not(.btn) { color: var(--accent); }
.nav-main a.is-active-link:not(.btn)::after { width: 100%; }
.nav-main a.btn.is-active-link { box-shadow: var(--shadow-glow-strong); }

.nav-main a.btn { color: #fff; padding: 8px 20px; }
.nav-main a.btn-primary:hover { color: #fff; }

/* === Hamburger toggle === */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: none; border: none; padding: 0;
  cursor: pointer; color: var(--text-primary);
  position: relative;
  z-index: 1020;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle span {
  position: absolute; left: 11px;
  width: 22px; height: 2px;
  background: currentColor; border-radius: 1px;
  transition: top 0.3s ease, transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }

.nav-toggle.is-active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* === Mobile / Tablet — breakpoint 960px === */
@media (max-width: 960px) {
  .nav-toggle { display: block; }

  /* Menu starts BELOW the fixed 68px header */
  .nav-main {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    /* Fill remaining viewport below header — dvh avoids browser-chrome clipping */
    height: calc(100vh - 68px);
    height: calc(100dvh - 68px);
    width: 100%;
    z-index: 990;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--s-6) var(--s-5) var(--s-8);
    gap: var(--s-1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;

    background: var(--bg-root);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }

  .nav-main.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  /* Stacked links, compact but tappable */
  .nav-main a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 340px;
    text-align: center;
    font-size: var(--fs-16);
    font-weight: 600;
    color: var(--text-secondary);
    padding: 14px 20px;
    border-radius: var(--r-md);
    white-space: nowrap;
    transition:
      color 0.2s ease,
      background 0.2s ease,
      opacity 0.3s ease,
      transform 0.3s ease;

    opacity: 0;
    transform: translateY(8px);
  }

  .nav-main a:hover,
  .nav-main a:focus-visible {
    color: var(--text-heading);
    background: var(--border-subtle);
  }

  .nav-main a.is-active-link:not(.btn) {
    color: var(--accent);
    background: var(--accent-dim);
  }

  /* Show links when menu is open, with stagger */
  .nav-main.is-open a {
    opacity: 1;
    transform: translateY(0);
  }
  .nav-main.is-open a:nth-child(1) { transition-delay: 0.04s; }
  .nav-main.is-open a:nth-child(2) { transition-delay: 0.07s; }
  .nav-main.is-open a:nth-child(3) { transition-delay: 0.10s; }
  .nav-main.is-open a:nth-child(4) { transition-delay: 0.13s; }
  .nav-main.is-open a:nth-child(5) { transition-delay: 0.16s; }
  .nav-main.is-open a:nth-child(6) { transition-delay: 0.19s; }

  /* Remove underline pseudo-element on mobile */
  .nav-main a:not(.btn)::after { display: none; }

  /* CTA button in mobile menu — slightly separated */
  .nav-main a.btn {
    margin-top: var(--s-3);
    max-width: 260px;
    padding: 12px 24px;
  }

  /* Lock body scroll when menu is open */
  body.menu-open { overflow: hidden; }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: var(--s-2);
  padding: 12px 28px;
  font-family: var(--ff); font-size: var(--fs-15); font-weight: 600;
  letter-spacing: 0.01em;
  border: none; border-radius: var(--r-md); cursor: pointer;
  text-decoration: none;
  transition:
    background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease-bounce),
    box-shadow var(--t-base) var(--ease),
    border-color var(--t-fast) var(--ease);
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #d06a14 100%);
  color: #fff;
  box-shadow: var(--shadow-sm), 0 0 20px var(--accent-dim);
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border: 1.5px solid var(--border-strong);
  box-shadow: none;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  box-shadow: 0 0 16px var(--accent-dim);
}

.btn-sm { padding: 8px 20px; font-size: var(--fs-14); border-radius: var(--r-sm); }

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  padding-top: 100px; padding-bottom: var(--s-20);
  overflow: hidden;
}

/* Ambient court line art */
.hero::before {
  content: ""; position: absolute;
  top: 50%; left: 50%;
  width: 600px; height: 600px;
  border: 1.5px solid var(--court-line);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, var(--border-accent) 50%, transparent 95%);
}

.court-lines {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.court-lines::before {
  content: ""; position: absolute;
  top: 35%; left: -5%; width: 110%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--court-dim) 30%, var(--court-dim) 70%, transparent);
}
.court-lines::after {
  content: ""; position: absolute;
  top: 12%; right: 8%;
  width: 240px; height: 240px;
  border: 1px solid var(--court-faint);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
  position: relative; z-index: 2;
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-8); }
  .hero-image { order: -1; }
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(232,126,35,0.15);
  color: var(--accent-light);
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  margin-bottom: var(--s-6);
}

.hero h1 {
  margin-bottom: var(--s-6);
  line-height: 1.08;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: var(--fs-18);
  color: var(--text-tertiary);
  max-width: 480px;
  margin-bottom: var(--s-10);
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: var(--s-4); flex-wrap: wrap; }

.hero-image img {
  width: 100%; height: auto;
  border-radius: var(--r-xl);
  object-fit: cover; max-height: 480px;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.section {
  padding: var(--s-24) 0;
  position: relative;
}
.section-alt {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header { margin-bottom: var(--s-14); }
.section-header.centered { text-align: center; }
.section-header h2 { margin-bottom: var(--s-4); }
.section-header p {
  color: var(--text-tertiary);
  max-width: 560px; font-size: var(--fs-18);
  line-height: 1.65;
}
.section-header.centered p { margin-inline: auto; }

.neon-sep {
  display: block;
  width: 48px; height: 3px;
  border-radius: 2px;
  margin-top: var(--s-5);
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  box-shadow: 0 0 12px var(--accent-glow);
}
.centered .neon-sep { margin-inline: auto; }

/* ==========================================================================
   FOCUS SELECTOR (Odak Secici)
   ========================================================================== */

.focus-selector {
  display: flex; gap: var(--s-3); flex-wrap: wrap;
  margin-bottom: var(--s-8);
}

.focus-btn {
  padding: 10px 24px;
  background: var(--bg-card);
  color: var(--text-tertiary);
  border: 1.5px solid var(--border-default);
  border-radius: var(--r-lg);
  font-family: var(--ff);
  font-size: var(--fs-14); font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all var(--t-base) var(--ease);
}
.focus-btn:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
  background: var(--bg-card-hover);
}
.focus-btn.is-active,
.focus-btn[aria-pressed="true"] {
  background: linear-gradient(135deg, var(--accent-dim), rgba(232,126,35,0.04));
  border-color: var(--accent);
  color: var(--accent-light);
  box-shadow: 0 0 20px var(--accent-dim), var(--shadow-sm);
}

.focus-panel {
  display: none;
  animation: panelIn var(--t-slow) var(--ease);
}
.focus-panel.is-active { display: block; }

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

.focus-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  padding: var(--s-10);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--t-base);
}
.focus-card:hover { border-color: var(--border-accent); }

.focus-card::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent 80%);
}
/* Subtle inner glow */
.focus-card::after {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(180deg, var(--accent-dim) 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}

.focus-card > * { position: relative; z-index: 1; }

.focus-card-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 768px) {
  .focus-card-inner { grid-template-columns: 1fr; }
  .focus-card { padding: var(--s-6); }
}

.focus-card h3 {
  margin-bottom: var(--s-4);
  font-size: var(--fs-24);
}
.focus-card p {
  color: var(--text-tertiary);
  line-height: 1.75;
  font-size: var(--fs-15);
}

.focus-card-img img {
  width: 100%; height: auto;
  border-radius: var(--r-lg);
  object-fit: cover; max-height: 280px;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-md);
}

.focus-price {
  margin-top: var(--s-6);
  padding: var(--s-5) var(--s-6);
  background: linear-gradient(135deg, var(--accent-dim), rgba(232,126,35,0.03));
  border-radius: var(--r-md);
  border-left: 3px solid var(--accent);
  box-shadow: inset 0 0 20px var(--court-faint);
}
.focus-price .price-label {
  font-size: var(--fs-13);
  color: var(--text-tertiary);
  margin-bottom: var(--s-1);
  font-weight: 500;
}
.focus-price .price-value {
  font-size: var(--fs-28);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ==========================================================================
   CONTENT + IMAGE GRID
   ========================================================================== */

.content-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-10);
  align-items: center;
  margin-bottom: var(--s-10);
}
.content-media--reverse .content-media__image { order: -1; }

.content-media__image img {
  width: 100%; height: auto;
  border-radius: var(--r-xl);
  object-fit: cover; max-height: 380px;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-lg);
  transition: box-shadow var(--t-base) var(--ease);
}
.content-media:hover .content-media__image img {
  box-shadow: var(--shadow-xl), 0 0 30px var(--accent-dim);
}

.content-media__text h3 {
  margin-bottom: var(--s-4);
  font-size: var(--fs-24);
}
.content-media__text p {
  color: var(--text-tertiary);
  line-height: 1.75;
  font-size: var(--fs-15);
}

@media (max-width: 768px) {
  .content-media { grid-template-columns: 1fr; gap: var(--s-6); }
  .content-media--reverse .content-media__image { order: 0; }
}

/* ==========================================================================
   FORMAT GRID
   ========================================================================== */

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--s-6);
}

.format-item {
  padding: var(--s-7);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease), transform var(--t-base) var(--ease);
}
.format-item:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), 0 0 24px var(--accent-dim);
  transform: translateY(-2px);
}

.format-item h4 {
  margin-bottom: var(--s-3);
  display: flex; align-items: center; gap: var(--s-3);
  font-size: var(--fs-16);
  flex-wrap: wrap;
}
.format-item p {
  color: var(--text-tertiary);
  font-size: var(--fs-14);
  line-height: 1.75;
}

.format-tag {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-mid);
  color: var(--accent-light);
  font-size: var(--fs-11);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--r-xs);
}

/* ==========================================================================
   ETIK LIST
   ========================================================================== */

.etik-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4) var(--s-8);
}
@media (max-width: 600px) { .etik-list { grid-template-columns: 1fr; } }

.etik-list li {
  padding-left: var(--s-6);
  position: relative;
  color: var(--text-tertiary);
  font-size: var(--fs-14);
  line-height: 1.7;
}
.etik-list li::before {
  content: ""; position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent-glow);
}

/* ==========================================================================
   PRICING
   ========================================================================== */

.pricing-section {
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-lg);
  max-width: 840px;
  margin-inline: auto;
}
.pricing-header {
  padding: var(--s-8);
  border-bottom: 1px solid var(--border-default);
  background: linear-gradient(180deg, var(--accent-dim) 0%, transparent 100%);
}
.pricing-header h3 { margin-bottom: var(--s-2); font-size: var(--fs-20); }
.pricing-disclaimer {
  font-size: var(--fs-13); color: var(--text-tertiary); line-height: 1.65;
}

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th,
.pricing-table td {
  padding: var(--s-5) var(--s-8);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}
.pricing-table th {
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-tertiary);
  font-weight: 600;
  background: var(--bg-elevated);
}
.pricing-table td { font-size: var(--fs-14); color: var(--text-secondary); }
.pricing-table tbody tr {
  transition: background var(--t-fast);
}
.pricing-table tbody tr:hover {
  background: var(--bg-card-hover);
}
.pricing-table tr:last-child td { border-bottom: none; }

.pricing-table .price-cell {
  font-weight: 700;
  font-size: var(--fs-16);
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 600px) {
  .pricing-table th,
  .pricing-table td {
    padding: var(--s-3) var(--s-4);
    font-size: var(--fs-12);
  }
  .pricing-table .price-cell { font-size: var(--fs-14); }
  .pricing-header { padding: var(--s-6); }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq-list { max-width: 760px; margin-inline: auto; }

.faq-item {
  border: 1px solid var(--border-default);
  border-radius: var(--r-lg);
  margin-bottom: var(--s-3);
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.faq-item:hover {
  border-color: var(--border-strong);
}
.faq-item.is-open {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), 0 0 16px var(--accent-dim);
}

.faq-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-5) var(--s-6);
  background: none; border: none;
  color: var(--text-primary);
  font-family: var(--ff); font-size: var(--fs-15); font-weight: 600;
  text-align: left; cursor: pointer;
  transition: color var(--t-fast) var(--ease);
}
.faq-trigger:hover { color: var(--accent-light); }
.faq-trigger:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px; border-radius: var(--r-lg);
}

.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px;
  position: relative; margin-left: var(--s-4);
}
.faq-icon::before,
.faq-icon::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; background: var(--accent);
  border-radius: 1px;
  transition: transform var(--t-base) var(--ease);
}
.faq-icon::before { width: 12px; height: 2px; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 2px; height: 12px; transform: translate(-50%,-50%); }
.faq-item.is-open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }

.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height var(--t-slow) var(--ease);
}
.faq-body-inner {
  padding: 0 var(--s-6) var(--s-6);
  color: var(--text-tertiary);
  line-height: 1.75; font-size: var(--fs-14);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner {
  text-align: center;
  padding: var(--s-16) var(--s-8);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-banner::before {
  content: ""; position: absolute;
  top: -40%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent-dim) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: ""; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.cta-banner h2  { position: relative; margin-bottom: var(--s-4); }
.cta-banner p   { position: relative; color: var(--text-tertiary); margin-bottom: var(--s-8); max-width: 480px; margin-inline: auto; }
.cta-banner .btn { position: relative; }

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--s-16) 0 var(--s-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-12);
  margin-bottom: var(--s-10);
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: var(--s-8); } }

.footer-brand p {
  color: var(--text-tertiary);
  font-size: var(--fs-14);
  margin-top: var(--s-5);
  max-width: 340px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: var(--fs-11);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  font-weight: 600;
  margin-bottom: var(--s-5);
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: var(--s-3); }
.footer-links a {
  color: var(--text-tertiary);
  font-size: var(--fs-14);
  transition: color var(--t-fast) var(--ease);
}
.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  padding-top: var(--s-8);
  border-top: 1px solid var(--border-subtle);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: var(--s-4);
}
.footer-bottom p { color: var(--text-tertiary); font-size: var(--fs-12); }
.footer-bottom-links {
  display: flex; gap: var(--s-6); list-style: none;
}
.footer-bottom-links a { color: var(--text-tertiary); font-size: var(--fs-12); }
.footer-bottom-links a:hover { color: var(--text-secondary); }

/* ==========================================================================
   COOKIE CONSENT
   ========================================================================== */

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--bg-glass);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border-top: 1px solid var(--border-default);
  padding: var(--s-6);
  transform: translateY(100%);
  transition: transform var(--t-slower) var(--ease);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.5);
}
.cookie-banner.is-visible { transform: translateY(0); }

.cookie-inner { max-width: var(--max-w); margin-inline: auto; }
.cookie-text {
  font-size: var(--fs-13); color: var(--text-tertiary);
  margin-bottom: var(--s-4); line-height: 1.65;
}
.cookie-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

.cookie-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }
.cookie-actions .btn { min-width: 110px; }

.cookie-settings {
  display: none; margin-top: var(--s-5);
  padding: var(--s-5);
  background: var(--bg-elevated);
  border-radius: var(--r-lg);
  border: 1px solid var(--border-default);
}
.cookie-settings.is-visible { display: block; }

.cookie-setting-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.cookie-setting-row:last-child { border-bottom: none; }
.cookie-setting-label { font-size: var(--fs-14); font-weight: 600; color: var(--text-primary); }
.cookie-setting-desc { font-size: var(--fs-12); color: var(--text-tertiary); margin-top: 2px; }

/* Toggle */
.toggle-switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute; inset: 0;
  background: var(--border-strong);
  border-radius: 100px; cursor: pointer;
  transition: background var(--t-fast) var(--ease);
}
.toggle-slider::before {
  content: ""; position: absolute;
  top: 3px; left: 3px; width: 18px; height: 18px;
  background: #fff; border-radius: 50%;
  transition: transform var(--t-fast) var(--ease);
  box-shadow: var(--shadow-sm);
}
.toggle-switch input:checked + .toggle-slider { background: var(--accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:disabled + .toggle-slider { opacity: 0.4; cursor: not-allowed; }
.toggle-switch input:focus-visible + .toggle-slider {
  outline: 2px solid var(--accent); outline-offset: 2px;
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form-standalone {
  max-width: 620px;
  margin: 0 auto var(--s-10);
  padding: var(--s-10);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  position: relative;
  box-shadow: var(--shadow-lg);
}
.form-standalone::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent 80%);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
/* Inner ambient glow */
.form-standalone::after {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, var(--accent-dim), transparent);
  pointer-events: none; border-radius: var(--r-2xl);
  z-index: 0;
}
.form-standalone > * { position: relative; z-index: 1; }

.contact-info-block {
  max-width: 620px;
  margin: 0 auto var(--s-10);
  padding: var(--s-10);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--r-2xl);
  position: relative;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.contact-info-block::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light), transparent 80%);
  border-radius: var(--r-2xl) var(--r-2xl) 0 0;
}
.contact-info-block::after {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(180deg, var(--accent-dim), transparent);
  pointer-events: none;
  z-index: 0;
}
.contact-info-block > * { position: relative; z-index: 1; }

.contact-info-title {
  text-align: center;
  font-size: var(--fs-22);
  margin-bottom: var(--s-6);
  color: var(--text-heading);
}

.contact-info-note {
  margin-top: var(--s-8);
  padding: var(--s-6);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--accent);
  border-radius: var(--r-md);
}
.contact-info-note h3 {
  font-size: var(--fs-15);
  margin-bottom: var(--s-2);
  color: var(--text-heading);
}
.contact-info-note p {
  font-size: var(--fs-14);
  color: var(--text-tertiary);
  line-height: 1.7;
  margin: 0;
}

.form-group { margin-bottom: var(--s-5); }
.form-group label {
  display: block;
  font-size: var(--fs-13); font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--s-2);
  letter-spacing: 0.01em;
}
.required-mark { color: var(--error); }

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px var(--s-4);
  background: var(--bg-input);
  border: 1.5px solid var(--border-default);
  border-radius: var(--r-md);
  color: var(--text-primary);
  font-family: var(--ff); font-size: var(--fs-15);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), background var(--t-fast);
}
.form-input:hover,
.form-textarea:hover {
  border-color: var(--border-strong);
  background: var(--bg-elevated);
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim), var(--shadow-glow);
  background: var(--bg-elevated);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-tertiary); }
.form-textarea { min-height: 140px; resize: vertical; }

.form-checkbox {
  display: flex; align-items: flex-start;
  gap: var(--s-3);
  font-size: var(--fs-13);
  color: var(--text-tertiary); cursor: pointer;
  line-height: 1.6;
}
.form-checkbox input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--accent);
  width: 16px; height: 16px; flex-shrink: 0;
}

.form-msg {
  padding: var(--s-4) var(--s-5);
  border-radius: var(--r-md);
  font-size: var(--fs-14);
  margin-top: var(--s-4);
  display: none;
  font-weight: 500;
}
.form-msg.is-success {
  display: block;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  color: var(--success);
}
.form-msg.is-error {
  display: block;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.2);
  color: var(--error);
}

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

/* Contact info list */
.contact-info-list {
  list-style: none;
  display: grid;
  gap: var(--s-3);
  padding: 0;
  margin: 0;
}
.contact-info-list li {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding: var(--s-4) var(--s-5);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  font-size: var(--fs-15);
  color: var(--text-secondary);
  transition:
    border-color var(--t-fast) var(--ease),
    background var(--t-fast) var(--ease),
    transform var(--t-fast) var(--ease);
}
.contact-info-list li:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateX(2px);
  box-shadow: 0 0 16px var(--accent-dim);
}
.contact-info-label {
  font-weight: 700;
  font-size: var(--fs-12);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ==========================================================================
   LEGAL / TECH PAGES
   ========================================================================== */

.legal-content {
  max-width: 760px;
  margin-inline: auto;
  padding-top: 100px;
}
.legal-content h1 { margin-bottom: var(--s-6); }
.legal-content h2 {
  font-size: var(--fs-20);
  margin-top: var(--s-10); margin-bottom: var(--s-4);
  padding-bottom: var(--s-2);
  border-bottom: 1px solid var(--border-subtle);
}
.legal-content h3 {
  font-size: var(--fs-18);
  margin-top: var(--s-7); margin-bottom: var(--s-3);
}
.legal-content p {
  margin-bottom: var(--s-4);
  color: var(--text-tertiary); line-height: 1.75;
}
.legal-content ul,
.legal-content ol {
  margin-bottom: var(--s-5);
  padding-left: var(--s-6);
  color: var(--text-tertiary); line-height: 1.75;
}
.legal-content li { margin-bottom: var(--s-2); }
.legal-date {
  font-size: var(--fs-13);
  color: var(--text-tertiary);
  margin-bottom: var(--s-8);
  padding: var(--s-3) var(--s-4);
  background: var(--bg-card);
  border-radius: var(--r-sm);
  border: 1px solid var(--border-subtle);
  display: inline-block;
}

/* Sitemap */
.sitemap-list { list-style: none; }
.sitemap-list li {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--border-subtle);
}
.sitemap-list a { font-size: var(--fs-15); font-weight: 500; }

/* About values */
.about-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--s-6); margin-top: var(--s-8);
}
.about-value {
  padding: var(--s-6);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}
.about-value:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 20px var(--accent-dim);
}
.about-value h3 {
  font-size: var(--fs-15); margin-bottom: var(--s-3);
  color: var(--accent-light);
}
.about-value p {
  font-size: var(--fs-14); color: var(--text-tertiary);
  line-height: 1.7;
}

/* ==========================================================================
   404 PAGE
   ========================================================================== */

.error-page {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: var(--s-8);
}
.error-code {
  font-size: 10rem; font-weight: 900;
  line-height: 1;
  margin-bottom: var(--s-4);
  background: linear-gradient(180deg, var(--accent-light) 20%, var(--accent) 60%, rgba(232,126,35,0.3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}
.error-page h1 { margin-bottom: var(--s-4); }
.error-page p {
  color: var(--text-tertiary);
  margin-bottom: var(--s-8);
  font-size: var(--fs-18);
}

/* ==========================================================================
   HERO IMAGE — Grid layout for half-court aesthetics
   ========================================================================== */

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: center;
}
.hero-image img {
  width: 100%; height: auto;
  border-radius: var(--r-xl);
  display: block;
  object-fit: cover; max-height: 480px;
  border: 1px solid var(--border-default);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
  .hero { min-height: auto; padding-top: 88px; padding-bottom: var(--s-12); }
}

/* ==========================================================================
   CARD GRID (generic)
   ========================================================================== */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--s-6);
}
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
}
.card:hover {
  border-color: var(--border-accent);
  box-shadow: var(--shadow-md), 0 0 20px var(--accent-dim);
  transform: translateY(-2px);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-mid);
  border-radius: var(--r-md);
  margin-bottom: var(--s-4);
  color: var(--accent-light);
  font-size: var(--fs-20); font-weight: 700;
}
.card h3 { font-size: var(--fs-16); margin-bottom: var(--s-3); }
.card p { color: var(--text-tertiary); font-size: var(--fs-14); line-height: 1.7; }

/* ==========================================================================
   SELECTION & SCROLLBAR
   ========================================================================== */

::selection {
  background: var(--accent);
  color: #000;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-root); }
::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-tertiary); }
