/* BursaCocukOyunPark.com
   Modern, lightweight, mobile-first styling (no framework runtime). */

:root {
  color-scheme: light dark;

  /* Brand palette (corporate + playful) */
  --c-ink: #081a24;        /* deep navy */
  --c-ink-2: #0d2a3a;
  --c-text: #102a43;
  --c-muted: #51606f;
  --c-border: #dde6ef;

  --c-surface: #f7fbff;    /* page background */
  --c-surface-2: #ffffff;  /* cards */
  --c-surface-3: #f1f7ff;  /* subtle panels */

  --c-primary: #0e7490;    /* teal */
  --c-primary-2: #0b4f6c;  /* deeper teal */
  --c-accent: #ffb703;     /* warm yellow */
  --c-accent-2: #fb8500;   /* orange */
  --c-success: #168a58;
  --c-danger: #c62828;

  /* Type */
  --font-display: "Baloo 2", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;
  --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, "Segoe UI",
    sans-serif;

  /* Layout */
  --container: 1120px;
  --nav-offset: 86px;
  --mobile-nav-top: 74px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;

  /* Effects */
  --shadow-sm: 0 8px 20px rgba(8, 26, 36, 0.08);
  --shadow: 0 18px 45px rgba(8, 26, 36, 0.14);
  --ring: 0 0 0 4px rgba(14, 116, 144, 0.22);
  --theme-color-light: #0e7490;
  --theme-color-dark: #08111b;
}

html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --c-ink: #ebf5ff;
  --c-ink-2: #d5e7fa;
  --c-text: #c8dff6;
  --c-muted: #97afc6;
  --c-border: #2d445b;

  --c-surface: #070f18;
  --c-surface-2: #0e1925;
  --c-surface-3: #132233;

  --c-primary: #2bb5d6;
  --c-primary-2: #86d8ee;
  --c-accent: #ffc44d;
  --c-accent-2: #ff9f2e;
  --c-success: #39c989;
  --c-danger: #ff6767;

  --shadow-sm: 0 10px 24px rgba(0, 0, 0, 0.35);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.5);
  --ring: 0 0 0 4px rgba(43, 181, 214, 0.32);
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-padding-top: calc(var(--nav-offset) + env(safe-area-inset-top, 0px));
}

[id] {
  scroll-margin-top: calc(var(--nav-offset) + env(safe-area-inset-top, 0px));
}

body {
  margin: 0;
  color: var(--c-text);
  font-family: var(--font-body);
  line-height: 1.6;
  background: radial-gradient(
        1200px 900px at 10% -10%,
        rgba(255, 183, 3, 0.22),
        transparent 60%
      ),
    radial-gradient(
        900px 700px at 95% 0%,
        rgba(14, 116, 144, 0.18),
        transparent 55%
      ),
    radial-gradient(
        900px 700px at 15% 110%,
        rgba(251, 133, 0, 0.12),
        transparent 55%
      ),
    linear-gradient(180deg, var(--c-surface), #ffffff 40%, var(--c-surface) 100%);
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: none;
  color: var(--c-primary-2);
}

/* Accessibility: always-visible focus style */
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 10px;
}

/* Utilities */
.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.stack {
  display: grid;
  gap: 1.2rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1024px) {
  .grid.cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .grid.cols-3,
  .grid.cols-2,
  .grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  font-size: 0.92rem;
  color: var(--c-muted);
}

.muted {
  color: var(--c-muted);
}

.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 */
.topbar {
  border-bottom: 1px solid rgba(221, 230, 239, 0.8);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.topbar .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 0;
  gap: 1rem;
}

.topbar .meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--c-muted);
}

.topbar .meta a {
  text-decoration: none;
}

.topbar .meta a:hover {
  text-decoration: none;
  color: var(--c-primary-2);
}

.topbar-actions {
  margin-left: auto;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.topbar-meta {
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}

.topbar-item {
  white-space: nowrap;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(221, 230, 239, 0.8);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  flex: 0 1 auto;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
}

.brand .name {
  line-height: 1.1;
}

.brand .name strong {
  display: block;
  font-size: 1.18rem;
  color: var(--c-ink);
}

.brand .name span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--c-muted);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 0.78rem;
  flex-wrap: nowrap;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-group {
  display: contents;
}

.nav-group__title {
  display: none;
}

.nav-group__links {
  display: contents;
}

.navlinks a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.52rem;
  border-radius: 12px;
  text-decoration: none;
  color: var(--c-ink-2);
  font-weight: 600;
  font-size: 0.96rem;
  white-space: nowrap;
}

.navlink-icon {
  display: none;
}

.navlink-label {
  display: inline;
}

.navlinks a[aria-current="page"] {
  background: rgba(14, 116, 144, 0.1);
  border: 1px solid rgba(14, 116, 144, 0.18);
}

.navlinks a:hover {
  background: rgba(255, 183, 3, 0.12);
  text-decoration: none;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.66rem 0.82rem;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-ink);
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease,
    background-color 160ms ease, color 160ms ease;
}

.theme-toggle:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(14, 116, 144, 0.32);
}

.theme-toggle:active {
  transform: translateY(0);
}

.theme-toggle__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.05rem;
  height: 1.05rem;
  font-size: 0.98rem;
}

.theme-toggle.is-dark {
  border-color: rgba(43, 181, 214, 0.4);
  background: rgba(43, 181, 214, 0.13);
}

.theme-toggle.is-system {
  border-style: dashed;
}

.theme-toggle-desktop {
  display: inline-flex;
}

.theme-toggle-mobile {
  display: none;
}

.nav-overlay {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: 0.2px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease,
    border-color 160ms ease;
  user-select: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn.primary {
  color: #06202b;
  background: linear-gradient(135deg, var(--c-accent), #ffd36e);
  border-color: rgba(255, 183, 3, 0.35);
}

.btn.secondary {
  color: var(--c-ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--c-border);
}

.btn.teal {
  color: #ffffff;
  background: linear-gradient(135deg, var(--c-primary), #14b8a6);
  border-color: rgba(14, 116, 144, 0.35);
}

.btn.ghost {
  color: var(--c-ink);
  background: transparent;
  border-color: rgba(8, 26, 36, 0.16);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1400px) and (min-width: 921px) {
  .brand .name span {
    display: none;
  }

  .navlinks {
    gap: 0.62rem;
  }

  .navlinks a {
    padding: 0.38rem 0.45rem;
    font-size: 0.94rem;
  }

  .nav-cta {
    gap: 0.45rem;
  }

  .nav-cta .btn {
    padding: 0.66rem 0.86rem;
    border-radius: 14px;
  }
}

@media (max-width: 1280px) and (min-width: 921px) {
  .topbar-meta {
    gap: 0.7rem;
  }

  .topbar-tagline,
  .topbar-email {
    display: none;
  }
}

@media (max-width: 1120px) and (min-width: 921px) {
  .topbar-phone-secondary {
    display: none;
  }

  .nav-cta .btn.secondary {
    display: none;
  }
}

@media (max-width: 920px) {
  .topbar {
    display: none;
  }

  body.nav-open {
    overflow: hidden;
  }

  .js .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
  }

  .js .nav-overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 39;
    background: rgba(8, 26, 36, 0.45);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
  }

  .js .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .js .navlinks {
    position: absolute;
    inset: calc(100% + 1px) 0 auto 0;
    display: none;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(221, 230, 239, 0.8);
    backdrop-filter: blur(12px);
  }

  .js .navlinks.open {
    display: grid;
    gap: 0.35rem;
  }

  .js .navlinks a {
    justify-content: flex-start;
    gap: 0.62rem;
    padding: 0.8rem 0.85rem;
  }

  .js .nav-cta {
    display: none;
  }

  .theme-toggle-desktop {
    display: none;
  }

  .theme-toggle-mobile {
    display: inline-flex;
  }

  .theme-toggle {
    margin-left: auto;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 2rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -40px 0 auto 0;
  height: 520px;
  background: radial-gradient(
        900px 420px at 30% 20%,
        rgba(14, 116, 144, 0.22),
        transparent 70%
      ),
    radial-gradient(
        700px 420px at 75% 5%,
        rgba(255, 183, 3, 0.22),
        transparent 65%
      ),
    radial-gradient(
        540px 360px at 85% 55%,
        rgba(251, 133, 0, 0.14),
        transparent 70%
      );
  pointer-events: none;
}

.hero .wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.2px;
  color: var(--c-ink);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--c-primary), #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  font-size: 1.06rem;
  margin: 0.9rem 0 0;
  color: var(--c-muted);
}

.hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.hero .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(221, 230, 239, 0.9);
  box-shadow: var(--shadow);
  background: linear-gradient(
    135deg,
    rgba(14, 116, 144, 0.08),
    rgba(255, 183, 3, 0.08)
  );
}

.hero-visual img {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-visual.hero-single img {
  height: auto;
  object-fit: contain;
}

.hero-visual .stamp {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(221, 230, 239, 0.9);
  backdrop-filter: blur(12px);
}

.hero-visual .stamp strong {
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  color: var(--c-ink);
}

.hero-visual .stamp span {
  color: var(--c-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

@media (max-width: 920px) {
  .hero .wrap {
    grid-template-columns: 1fr;
  }

  .hero-visual img {
    height: 320px;
  }

  .hero-visual.hero-single img {
    height: auto;
  }
}

/* Sections */
.section {
  padding: 2.5rem 0;
}

.section h2 {
  margin: 0 0 0.6rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  line-height: 1.12;
  color: var(--c-ink);
}

.section .lead {
  margin: 0;
  color: var(--c-muted);
  max-width: 70ch;
}

.card {
  background: var(--c-surface-2);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(14, 116, 144, 0.25);
}

.card .kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 900;
  color: var(--c-primary-2);
  background: rgba(14, 116, 144, 0.08);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.18);
  font-size: 0.92rem;
}

.card .kicker.kicker-campaign {
  color: #7a5200;
  background: rgba(255, 183, 3, 0.18);
  border-color: rgba(255, 183, 3, 0.38);
}

.card h3 {
  margin: 0.75rem 0 0.35rem;
  font-family: var(--font-display);
  letter-spacing: 0.2px;
  color: var(--c-ink);
  font-size: 1.3rem;
  line-height: 1.15;
}

.card p {
  margin: 0;
  color: var(--c-muted);
}

.card .link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  font-weight: 900;
  color: var(--c-ink);
  text-decoration: none;
}

.card .link:hover {
  text-decoration: none;
  color: var(--c-primary-2);
}

.media-card {
  padding: 0;
  overflow: hidden;
}

.media-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: var(--c-surface-3);
}

.media-card.product-media-card img {
  object-fit: contain;
  object-position: center;
  padding: 0.55rem;
  background: color-mix(in srgb, var(--c-surface-3) 82%, var(--c-bg) 18%);
}

.media-card video {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  background: var(--c-surface-3);
}

.media-card .body {
  padding: 1rem 1.05rem 1.1rem;
}

.media-card .meta {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--c-muted);
  margin-top: 0.15rem;
}

.gallery-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  align-items: center;
}

.gallery-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid rgba(14, 116, 144, 0.25);
  background: rgba(14, 116, 144, 0.08);
  color: var(--c-ink);
  border-radius: 999px;
  min-height: 42px;
  padding: 0.46rem 0.92rem;
  font-weight: 800;
  font-size: 0.94rem;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.gallery-tab:hover {
  border-color: rgba(14, 116, 144, 0.42);
}

.gallery-tab:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}

.gallery-tab.is-active,
.gallery-tab[aria-selected="true"] {
  border-color: rgba(14, 116, 144, 0.55);
  background: linear-gradient(140deg, rgba(14, 116, 144, 0.2), rgba(255, 183, 3, 0.2));
  color: var(--c-ink);
}

.gallery-media-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.72rem;
  height: 1.72rem;
  padding: 0 0.35rem;
  border-radius: 999px;
  border: 1px solid rgba(14, 116, 144, 0.35);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  line-height: 1;
}

.gallery-panel[hidden] {
  display: none !important;
}

.gallery-empty {
  max-width: 640px;
}

@media (max-width: 720px) {
  .gallery-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .gallery-tab {
    width: 100%;
  }
}

.product-wa-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.7rem;
  padding: 0.5rem 0.78rem;
  border-radius: 12px;
  border: 1px solid rgba(22, 138, 88, 0.26);
  background: linear-gradient(135deg, #25d366, #75f0a7);
  color: #ffffff;
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
}

.product-wa-link:hover {
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.banner {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 116, 144, 0.2);
  background: linear-gradient(
      135deg,
      rgba(14, 116, 144, 0.14),
      rgba(255, 183, 3, 0.14)
    ),
    radial-gradient(900px 520px at 15% 40%, rgba(255, 255, 255, 0.6), transparent
          70%);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.banner .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.banner .copy strong {
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.05;
  color: var(--c-ink);
  display: block;
}

.banner .copy span {
  color: var(--c-muted);
  font-weight: 700;
}

/* Blog article */
.blog-article {
  display: grid;
  gap: 1rem;
}

.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-meta .pill {
  color: var(--c-ink-2);
  font-weight: 800;
  border-color: rgba(14, 116, 144, 0.2);
  background: rgba(14, 116, 144, 0.06);
}

.article-meta a.pill:hover {
  color: var(--c-primary-2);
  border-color: rgba(14, 116, 144, 0.34);
  background: rgba(14, 116, 144, 0.12);
}

.blog-hero img {
  height: clamp(260px, 44vw, 480px);
}

.article-content {
  display: grid;
  gap: 0.9rem;
}

.article-content p {
  margin: 0;
  max-width: 78ch;
  color: var(--c-text);
}

.article-content h2 {
  margin: 0.45rem 0 0.18rem;
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(1.36rem, 2.3vw, 1.92rem);
  line-height: 1.14;
  color: var(--c-ink);
}

.article-content h3 {
  margin: 0.35rem 0 0.12rem;
  max-width: 35ch;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.8vw, 1.5rem);
  line-height: 1.2;
  color: var(--c-ink);
}

.article-content ul,
.article-content ol {
  margin: 0;
  max-width: 78ch;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.article-content li {
  color: var(--c-text);
}

.article-content .article-list {
  list-style: disc;
  padding: 0.9rem 1rem 0.9rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(14, 116, 144, 0.18);
  background: rgba(14, 116, 144, 0.05);
}

.article-content .article-list li strong {
  color: var(--c-ink-2);
}

.article-content a {
  color: var(--c-primary-2);
  font-weight: 700;
  border-bottom: 1px dashed rgba(11, 79, 108, 0.35);
}

.article-content a:hover {
  text-decoration: none;
  border-bottom-color: rgba(11, 79, 108, 0.8);
}

.blog-related {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.25rem;
}

.blog-related h2 {
  margin: 0;
}

.blog-related .media-card h3 {
  font-size: 1.18rem;
}

.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
}

.pager-pages {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  justify-content: center;
}

.pager-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 38px;
  padding: 0 0.8rem;
  border-radius: 11px;
  border: 1px solid rgba(14, 116, 144, 0.24);
  background: rgba(255, 255, 255, 0.88);
  color: var(--c-ink-2);
  font-weight: 800;
  font-size: 0.94rem;
}

.pager-link:hover {
  color: var(--c-primary-2);
  border-color: rgba(11, 79, 108, 0.45);
  background: rgba(255, 255, 255, 0.98);
}

.pager-link.is-current {
  background: linear-gradient(120deg, #0e7490, #0b4f6c);
  border-color: transparent;
  color: #fff;
}

.pager-link.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 720px) {
  .article-meta .pill {
    font-size: 0.86rem;
  }

  .article-content .article-list {
    padding: 0.75rem 0.85rem 0.75rem 1.1rem;
  }
}

/* Contact page density tweaks */
.contact-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.82fr);
  align-items: start;
  column-gap: 1rem;
}

.contact-side {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  gap: 0.95rem;
}

.map-card {
  padding: 1rem;
}

.map-card h2 {
  margin-bottom: 0.45rem;
}

.map-box {
  border-radius: 14px;
}

.map-embed {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

.contact-quick {
  padding: 1rem;
  border-radius: var(--radius);
}

.contact-quick .row {
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-quick .copy strong {
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-quick .copy span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-quick .actions {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.contact-quick .actions .btn {
  padding: 0.62rem 0.88rem;
  border-radius: 12px;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }

  .contact-side {
    max-width: none;
    justify-self: stretch;
  }

  .map-embed {
    height: 280px;
  }
}

/* Climbing page layout cleanup */
.climb-layout {
  align-items: start;
  gap: 1.35rem;
}

.climb-feature-grid {
  gap: 1rem;
}

.climb-visual {
  align-self: start;
}

.climb-visual img {
  height: 360px;
}

.climb-visual .stamp {
  position: static;
  margin: 0.9rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
}

.climb-cta {
  margin-top: 1.2rem;
}

.climb-cta .copy strong {
  font-size: 1.35rem;
  line-height: 1.16;
}

@media (max-width: 920px) {
  .climb-visual img {
    height: 320px;
  }

  .climb-visual .stamp {
    margin: 0.75rem;
  }
}

/* Page header */
.pagehead {
  padding: 2rem 0 1.2rem;
}

.crumbs {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
  color: var(--c-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.crumbs a {
  text-decoration: none;
}

.crumbs a:hover {
  text-decoration: none;
  color: var(--c-ink);
}

.pagehead h1 {
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  line-height: 1.08;
  color: var(--c-ink);
}

/* FAQ */
.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: var(--c-surface-2);
  padding: 0.2rem 0.95rem;
}

.faq-item summary {
  position: relative;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--c-ink);
  padding: 0.72rem 1.75rem 0.72rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0.15rem;
  top: 50%;
  transform: translateY(-52%);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--c-primary);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 0.85rem;
  color: var(--c-muted);
}

/* Forms */
form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

label {
  font-weight: 800;
  color: var(--c-ink);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.92);
  color: var(--c-text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.help {
  font-size: 0.92rem;
  color: var(--c-muted);
}

.notice {
  border-radius: 16px;
  border: 1px solid rgba(14, 116, 144, 0.22);
  background: rgba(14, 116, 144, 0.08);
  padding: 0.85rem 0.95rem;
  color: var(--c-ink);
  font-weight: 700;
}

.notice.ok {
  border-color: rgba(22, 138, 88, 0.25);
  background: rgba(22, 138, 88, 0.1);
}

.notice.err {
  border-color: rgba(198, 40, 40, 0.28);
  background: rgba(198, 40, 40, 0.08);
}

/* Footer */
footer {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(221, 230, 239, 0.85);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(12px);
}

.footer {
  padding: 2.2rem 0;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  text-decoration: none;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.footer-brand span {
  display: grid;
  line-height: 1.05;
}

.footer-brand strong {
  font-family: var(--font-display);
  color: var(--c-ink);
  font-size: 1.08rem;
}

.footer-brand small {
  color: var(--c-muted);
  font-weight: 700;
  font-size: 0.8rem;
}

.footer .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 1.25rem;
}

.footer h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  color: var(--c-ink);
  letter-spacing: 0.2px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.35rem;
}

.footer a {
  text-decoration: none;
  color: var(--c-ink-2);
  font-weight: 700;
}

.footer a:hover {
  text-decoration: none;
  color: var(--c-primary-2);
}

.footer .contact {
  display: grid;
  gap: 0.35rem;
  color: var(--c-muted);
  font-weight: 700;
}

.footer .social {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--c-border);
  background: rgba(255, 255, 255, 0.92);
}

.social a i {
  width: 22px;
  height: 22px;
  display: block;
  line-height: 22px;
  font-size: 22px;
}

.social a .wa-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.social a .wa-icon-fa {
  width: 22px;
  height: 22px;
  display: block;
  line-height: 22px;
  font-size: 22px;
}

.social a[aria-label="Facebook"] {
  background: linear-gradient(135deg, #1877f2, #0f5ecf);
  border-color: rgba(24, 119, 242, 0.38);
  color: #ffffff;
}

.social a[aria-label="Facebook"] span {
  display: block;
  font-weight: 900;
  font-family: var(--font-display);
  font-size: 1.22rem;
  line-height: 1;
  text-transform: lowercase;
}

.social a.wa {
  background: linear-gradient(135deg, #25d366, #75f0a7);
  border-color: rgba(22, 138, 88, 0.25);
}

.social a.wa i {
  display: block;
  color: #ffffff;
}

.social a.wa .wa-icon-fa {
  display: block;
}

.social a.wa::before {
  content: none;
}

.social a:hover {
  border-color: rgba(14, 116, 144, 0.25);
}

.social a[aria-label="Facebook"]:hover {
  border-color: rgba(24, 119, 242, 0.55);
}

.footer-keywords {
  padding: 0 0 1.1rem;
}

.footer-keywords .container {
  border-top: 1px dashed rgba(8, 26, 36, 0.14);
  padding-top: 0.95rem;
}

.footer-keywords h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--c-ink);
}

.keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.keyword-list a {
  display: inline-flex;
  align-items: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(8, 26, 36, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.keyword-list a:hover {
  color: var(--c-primary-2);
  border-color: rgba(14, 116, 144, 0.35);
  background: rgba(14, 116, 144, 0.08);
}

.copyright {
  border-top: 1px solid rgba(221, 230, 239, 0.85);
  padding: 1rem 0;
  color: var(--c-muted);
  font-weight: 700;
  font-size: 0.95rem;
}

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

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

/* WhatsApp button */
.wa-fab {
  position: fixed;
  right: calc(16px + env(safe-area-inset-right, 0px));
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 900;
  border: 1px solid rgba(22, 138, 88, 0.26);
  background: linear-gradient(135deg, #25d366, #75f0a7);
  box-shadow: var(--shadow);
  text-decoration: none;
}

.wa-fab:hover {
  text-decoration: none;
}

.wa-fab .wa-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 22px;
}

.wa-fab .wa-icon-fa {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
  line-height: 22px;
  font-size: 22px;
}

.wa-fab .wa-icon-fa {
  display: block;
  color: #ffffff;
}

@media (max-width: 720px) {
  .wa-fab {
    right: calc(12px + env(safe-area-inset-right, 0px));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    width: 52px;
    height: 52px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }

  .wa-fab > span:last-child {
    display: none;
  }
}

/* Reveal animation (progressive enhancement) */
[data-reveal] {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js [data-reveal] {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 520ms ease, transform 520ms ease;
  }

  .js [data-reveal].in {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 2026-02 public site UX refresh (admin hariç) */
:root {
  --section-space: clamp(2.25rem, 4.5vw, 3.4rem);
  --section-space-tight: clamp(1.35rem, 2.2vw, 2rem);
}

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: var(--section-space) 0;
}

.section + .section {
  padding-top: var(--section-space-tight);
}

.section .stack > .lead {
  font-size: clamp(1rem, 1.2vw, 1.08rem);
}

@media (max-width: 1024px) and (min-width: 721px) {
  .grid.cols-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.nav {
  box-shadow: 0 10px 24px rgba(8, 26, 36, 0.06);
}

.navlinks a {
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.hero {
  padding: clamp(2.25rem, 5vw, 4rem) 0 var(--section-space-tight);
}

.hero p {
  max-width: 60ch;
}

.hero .actions .btn {
  min-height: 46px;
}

.hero-visual {
  border-radius: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 44px rgba(8, 26, 36, 0.16);
}

.hero-visual .stamp {
  box-shadow: 0 10px 20px rgba(8, 26, 36, 0.08);
}

.card {
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease,
    background-color 180ms ease;
}

.card:hover {
  transform: translateY(-3px);
}

a.card.media-card,
figure.card.media-card {
  border-color: rgba(221, 230, 239, 0.92);
}

a.card.media-card img,
figure.card.media-card img {
  transition: transform 360ms ease;
}

a.card.media-card:hover img {
  transform: scale(1.03);
}

a.card.media-card.product-media-card:hover img {
  transform: none;
}

.media-card .body {
  display: grid;
  gap: 0.4rem;
}

.media-card .body .link {
  margin-top: 0.2rem;
}

.banner {
  padding: clamp(1.05rem, 2.1vw, 1.45rem);
  border-color: rgba(14, 116, 144, 0.24);
}

.banner .copy {
  max-width: 66ch;
}

.banner .actions {
  align-items: center;
}

.banner .actions .btn {
  min-width: 132px;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(14, 116, 144, 0.45);
  background: #ffffff;
  outline: none;
  box-shadow: var(--ring);
}

.faq-item {
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(14, 116, 144, 0.3);
  box-shadow: 0 10px 24px rgba(8, 26, 36, 0.06);
}

footer {
  margin-top: var(--section-space);
}

.footer .cols > div {
  min-width: 0;
}

.footer ul a {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0;
  transition: transform 160ms ease, color 160ms ease;
}

.footer ul a:hover {
  transform: translateX(2px);
}

.keyword-list a {
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.wa-fab {
  backdrop-filter: blur(6px);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wa-fab:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 20px 44px rgba(7, 77, 47, 0.24);
}

.wa-fab:active {
  transform: translateY(0) scale(1);
}

html[data-theme="dark"] body {
  background: radial-gradient(
        1200px 900px at 10% -10%,
        rgba(255, 196, 77, 0.12),
        transparent 62%
      ),
    radial-gradient(
        900px 700px at 95% 0%,
        rgba(43, 181, 214, 0.2),
        transparent 55%
      ),
    radial-gradient(
        900px 700px at 15% 110%,
        rgba(255, 159, 46, 0.1),
        transparent 55%
      ),
    linear-gradient(180deg, #070f18, #0a141f 42%, #08111b 100%);
}

html[data-theme="dark"] .pill {
  border-color: rgba(61, 89, 117, 0.92);
  background: rgba(12, 27, 42, 0.86);
}

html[data-theme="dark"] .topbar {
  border-bottom-color: rgba(45, 68, 91, 0.92);
  background: rgba(7, 15, 24, 0.78);
}

html[data-theme="dark"] .nav {
  border-bottom-color: rgba(45, 68, 91, 0.92);
  background: rgba(7, 15, 24, 0.78);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

html[data-theme="dark"] .theme-toggle,
html[data-theme="dark"] .nav-toggle {
  border-color: rgba(61, 89, 117, 0.95);
  background: rgba(12, 27, 42, 0.9);
  color: var(--c-ink);
}

html[data-theme="dark"] .navlinks a[aria-current="page"] {
  color: var(--c-ink);
  background: rgba(43, 181, 214, 0.18);
  border-color: rgba(43, 181, 214, 0.42);
}

html[data-theme="dark"] .navlinks a:hover {
  background: rgba(255, 196, 77, 0.15);
}

html[data-theme="dark"].js .nav-group + .nav-group {
  border-top-color: rgba(61, 89, 117, 0.68);
}

html[data-theme="dark"].js .nav-group__title {
  color: rgba(213, 231, 250, 0.78);
}

html[data-theme="dark"].js .nav-group__icon,
html[data-theme="dark"].js .navlink-icon {
  color: var(--c-primary-2);
}

html[data-theme="dark"].js .navlinks a[aria-current="page"] {
  background: rgba(43, 181, 214, 0.24);
  border-color: rgba(134, 216, 238, 0.55);
  box-shadow: inset 3px 0 0 rgba(134, 216, 238, 0.95);
}

html[data-theme="dark"] .btn.secondary {
  color: var(--c-ink);
  background: rgba(12, 27, 42, 0.9);
  border-color: rgba(61, 89, 117, 0.95);
}

html[data-theme="dark"] .btn.ghost {
  color: var(--c-ink);
  border-color: rgba(151, 175, 198, 0.38);
}

html[data-theme="dark"] .hero::before {
  background: radial-gradient(
        900px 420px at 30% 20%,
        rgba(43, 181, 214, 0.22),
        transparent 70%
      ),
    radial-gradient(
        700px 420px at 75% 5%,
        rgba(255, 196, 77, 0.18),
        transparent 65%
      ),
    radial-gradient(
        540px 360px at 85% 55%,
        rgba(255, 159, 46, 0.1),
        transparent 70%
      );
}

html[data-theme="dark"] .hero-visual {
  border-color: rgba(61, 89, 117, 0.95);
  background: linear-gradient(
    135deg,
    rgba(43, 181, 214, 0.16),
    rgba(255, 196, 77, 0.1)
  );
}

html[data-theme="dark"] .hero-visual .stamp {
  background: rgba(9, 20, 31, 0.88);
  border-color: rgba(61, 89, 117, 0.9);
}

html[data-theme="dark"] .card .kicker.kicker-campaign {
  color: #ffd894;
  background: rgba(255, 196, 77, 0.16);
  border-color: rgba(255, 196, 77, 0.35);
}

html[data-theme="dark"] .banner {
  border-color: rgba(43, 181, 214, 0.35);
  background: linear-gradient(
      135deg,
      rgba(43, 181, 214, 0.16),
      rgba(255, 196, 77, 0.12)
    ),
    radial-gradient(
      900px 520px at 15% 40%,
      rgba(8, 17, 27, 0.35),
      transparent 70%
    );
}

html[data-theme="dark"] .gallery-tab {
  border-color: rgba(61, 89, 117, 0.95);
  background: rgba(12, 27, 42, 0.88);
  color: var(--c-ink);
}

html[data-theme="dark"] .gallery-tab:hover {
  border-color: rgba(134, 216, 238, 0.58);
  background: rgba(19, 40, 60, 0.92);
}

html[data-theme="dark"] .gallery-tab.is-active,
html[data-theme="dark"] .gallery-tab[aria-selected="true"] {
  border-color: rgba(134, 216, 238, 0.68);
  background: linear-gradient(
    140deg,
    rgba(43, 181, 214, 0.3),
    rgba(255, 196, 77, 0.22)
  );
}

html[data-theme="dark"] .gallery-media-count {
  border-color: rgba(134, 216, 238, 0.52);
  background: rgba(7, 15, 24, 0.92);
  color: #f4f9ff;
  box-shadow: inset 0 0 0 1px rgba(8, 17, 27, 0.45);
}

html[data-theme="dark"] .article-content .article-list {
  border-color: rgba(43, 181, 214, 0.3);
  background: rgba(43, 181, 214, 0.11);
}

html[data-theme="dark"] .pager-link {
  border-color: rgba(43, 181, 214, 0.34);
  background: rgba(12, 27, 42, 0.9);
  color: var(--c-ink-2);
}

html[data-theme="dark"] .pager-link:hover {
  border-color: rgba(134, 216, 238, 0.6);
  background: rgba(22, 38, 56, 0.96);
}

html[data-theme="dark"] input,
html[data-theme="dark"] textarea,
html[data-theme="dark"] select {
  border-color: rgba(61, 89, 117, 0.95);
  background: rgba(9, 20, 31, 0.9);
  color: var(--c-text);
}

html[data-theme="dark"] input::placeholder,
html[data-theme="dark"] textarea::placeholder {
  color: rgba(151, 175, 198, 0.86);
}

html[data-theme="dark"] input:focus,
html[data-theme="dark"] textarea:focus,
html[data-theme="dark"] select:focus {
  border-color: rgba(43, 181, 214, 0.62);
  background: rgba(12, 27, 42, 0.95);
}

html[data-theme="dark"] .notice {
  border-color: rgba(43, 181, 214, 0.3);
  background: rgba(43, 181, 214, 0.12);
  color: var(--c-ink);
}

html[data-theme="dark"] .notice.ok {
  border-color: rgba(57, 201, 137, 0.32);
  background: rgba(57, 201, 137, 0.14);
}

html[data-theme="dark"] .notice.err {
  border-color: rgba(255, 103, 103, 0.35);
  background: rgba(255, 103, 103, 0.12);
}

html[data-theme="dark"] footer {
  border-top-color: rgba(45, 68, 91, 0.9);
  background: rgba(7, 15, 24, 0.82);
}

html[data-theme="dark"] .social a,
html[data-theme="dark"] .keyword-list a {
  border-color: rgba(61, 89, 117, 0.95);
  background: rgba(12, 27, 42, 0.9);
}

html[data-theme="dark"] .footer-keywords .container,
html[data-theme="dark"] .copyright {
  border-color: rgba(45, 68, 91, 0.86);
}

html[data-theme="dark"].js .navlinks {
  background: rgba(7, 15, 24, 0.95);
  border-bottom-color: rgba(45, 68, 91, 0.95);
}

html[data-theme="dark"].js .nav-overlay {
  background: rgba(2, 8, 14, 0.68);
}

@keyframes navDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .js .navlinks {
    z-index: 55;
    border: 1px solid rgba(221, 230, 239, 0.95);
    border-top: 0;
    border-radius: 0 0 20px 20px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 22px 34px rgba(8, 26, 36, 0.12);
    max-height: min(70vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .js .navlinks.open {
    animation: navDropdownIn 180ms ease-out both;
  }

  .js .nav-group {
    display: grid;
    gap: 0.26rem;
    padding: 0.15rem 0;
  }

  .js .nav-group + .nav-group {
    margin-top: 0.2rem;
    padding-top: 0.55rem;
    border-top: 1px dashed rgba(8, 26, 36, 0.14);
  }

  .js .nav-group__title {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.28rem 0.65rem;
    color: var(--c-muted);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .js .nav-group__icon {
    width: 1.05rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary-2);
    font-size: 0.82rem;
  }

  .js .nav-group__links {
    display: grid;
    gap: 0.22rem;
  }

  .js .navlinks a {
    min-height: 46px;
    border-radius: 12px;
    border: 1px solid transparent;
  }

  .js .navlink-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    flex: 0 0 1.3rem;
    color: var(--c-primary-2);
    font-size: 0.94rem;
  }

  .js .navlink-label {
    flex: 1;
    min-width: 0;
  }

  .js .navlinks a[aria-current="page"] {
    background: rgba(14, 116, 144, 0.14);
    border-color: rgba(14, 116, 144, 0.3);
    box-shadow: inset 3px 0 0 rgba(14, 116, 144, 0.92);
  }

  html[data-theme="dark"].js .navlinks {
    border-color: rgba(61, 89, 117, 0.94);
    background: rgba(7, 15, 24, 0.98);
    box-shadow: 0 22px 34px rgba(0, 0, 0, 0.5);
  }

  html[data-theme="dark"].js .nav-group + .nav-group {
    border-top-color: rgba(61, 89, 117, 0.62);
  }

  html[data-theme="dark"].js .nav-group__title {
    color: rgba(213, 231, 250, 0.9);
  }

  html[data-theme="dark"].js .nav-group__icon,
  html[data-theme="dark"].js .navlink-icon {
    color: var(--c-primary-2);
  }

  html[data-theme="dark"].js .navlinks a {
    color: var(--c-ink-2);
  }

  html[data-theme="dark"].js .navlinks a:hover {
    background: rgba(255, 196, 77, 0.14);
  }

  html[data-theme="dark"].js .navlinks a[aria-current="page"] {
    color: var(--c-ink);
    background: rgba(43, 181, 214, 0.24);
    border-color: rgba(134, 216, 238, 0.62);
    box-shadow: inset 3px 0 0 rgba(134, 216, 238, 0.98);
  }

  html[data-theme="dark"].js .nav-overlay {
    background: rgba(2, 8, 14, 0.76);
  }

  .theme-toggle__label {
    display: none;
  }

  .hero {
    padding-top: 1.8rem;
  }

  .hero .actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
  }

  .hero-visual .stamp {
    display: grid;
    gap: 0.7rem;
  }

  .hero-visual .stamp .btn {
    width: 100%;
  }

  .banner .actions {
    width: 100%;
  }

  .banner .actions .btn {
    flex: 1 1 calc(50% - 0.35rem);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 1.9rem 0;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9.2vw, 2.45rem);
  }

  .hero p {
    font-size: 1rem;
  }

  .hero .actions .btn {
    flex: 1 1 100%;
  }

  .banner .actions .btn {
    flex: 1 1 100%;
  }
}
