:root {
  --ink: #111827;
  --night: #151827;
  --surface: #eef1f5;
  --surface-2: #e2e7ee;
  --white: #ffffff;
  --electric: #3157ff;
  --electric-dark: #1e3fd8;
  --acid: #c8ff38;
  --ice: #9de8ff;
  --muted: #687386;
  --line: #ccd3df;

  --font-display: "Space Grotesk", "Inter", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius-s: 4px;
  --radius-m: 6px;
  --radius-l: 8px;

  --container: 1280px;
  --gap: 24px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: clip;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
}
input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
p {
  margin: 0 0 1em;
  color: var(--ink);
}
:focus-visible {
  outline: 3px solid var(--electric);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--electric);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 14px;
  height: 2px;
  background: var(--electric);
  display: inline-block;
}
.eyebrow--light {
  color: var(--ice);
}
.eyebrow--dark {
  color: var(--electric-dark);
}

/* -------------------------------------------------------------
   Buttons
   ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-s);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 0.15s ease,
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--electric);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--electric-dark);
}
.btn--acid {
  background: var(--acid);
  color: var(--ink);
}
.btn--acid:hover {
  background: #b6ea1f;
}
.btn--outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--outline:hover {
  border-color: var(--electric);
  color: var(--electric);
}
.btn--outline-light {
  background: transparent;
  border-color: rgba(238, 241, 245, 0.35);
  color: var(--surface);
}
.btn--outline-light:hover {
  border-color: var(--ice);
  color: var(--ice);
}
.btn--dark {
  background: var(--night);
  color: var(--white);
}
.btn--dark:hover {
  background: #0d0f1a;
}
.btn--block {
  width: 100%;
}
.btn--sm {
  padding: 9px 16px;
  font-size: 0.85rem;
}
.btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* -------------------------------------------------------------
   Topbar + Header
   ------------------------------------------------------------- */
.topbar {
  background: #eef8ff;
  color: #0d1220;
  font-size: 0.8rem;
  border-bottom: 1px solid #b7c4d6;
}
.topbar__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 24px;
}
.topbar__msg {
  color: #0d1220;
  margin: 0;
  opacity: 1;
  font-weight: 800;
}
.topbar__links {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.topbar__links a {
  color: #1736b8;
  opacity: 1;
  font-weight: 800;
}
.topbar__links a:hover {
  opacity: 1;
  color: #0d1220;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.site-header__row {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 16px 24px;
}
.brand__logo {
  height: 26px;
  width: auto;
}

.main-nav {
  flex: 1;
}
.main-nav > ul {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--electric);
  transform: scaleX(0);
  transition: transform 0.18s ease;
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}
.main-nav a.is-active {
  color: var(--electric-dark);
}

.has-dropdown {
  position: relative;
}
.has-dropdown::after {
  content: "";
  position: absolute;
  left: -18px;
  right: -18px;
  top: 100%;
  height: 16px;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  margin-top: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 8px;
  min-width: 200px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.18s;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.08);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0s;
}
.dropdown a {
  padding: 9px 12px;
  border-radius: var(--radius-s);
  font-weight: 500;
  display: block;
}
.dropdown a:hover {
  background: var(--surface);
  color: var(--electric-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}
.icon-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 10px;
  border: none;
  background: none;
  color: var(--ink);
  border-radius: var(--radius-s);
  position: relative;
}
.icon-btn:hover {
  color: var(--electric);
}
.icon-btn__label {
  font-size: 0.68rem;
  font-weight: 600;
}
.cart-badge {
  position: absolute;
  top: 0;
  right: 2px;
  background: var(--electric);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2px;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  border: none;
  background: none;
  padding: 8px;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  display: block;
}

.search-panel {
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  transition: max-height 0.2s ease;
}
.search-panel.is-open {
  max-height: 100px;
}
.search-panel__form {
  display: flex;
  gap: 10px;
  padding: 16px 0;
}
.search-panel__form input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}
.search-panel__form button {
  padding: 12px 22px;
  border: none;
  border-radius: var(--radius-s);
  background: var(--electric);
  color: var(--white);
  font-weight: 600;
}

.mobile-nav {
  display: none;
}
.mobile-nav.is-open {
  display: block;
  border-top: 1px solid var(--line);
  background: var(--white);
}
.mobile-nav a {
  display: block;
  padding: 12px 24px;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
}
.mobile-nav__sub a {
  padding-left: 40px;
  color: var(--muted);
}

/* -------------------------------------------------------------
   Hero — asymmetric editorial grid
   ------------------------------------------------------------- */
.hero {
  background: var(--night);
  color: var(--surface);
  overflow: hidden;
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.35fr 0.95fr 0.7fr;
  grid-template-rows: auto auto;
  gap: 0;
  min-height: 560px;
}
.hero__main {
  grid-column: 1;
  grid-row: 1 / 3;
  padding: 72px 48px 56px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(238, 241, 245, 0.12);
}
.hero__kicker {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero__kicker span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  display: inline-block;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.4vw, 4.1rem);
  color: var(--white);
  max-width: 14ch;
  margin-bottom: 22px;
}
.hero__sub {
  font-size: 1.05rem;
  color: rgba(238, 241, 245, 0.78);
  max-width: 42ch;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__panel {
  border-right: 1px solid rgba(238, 241, 245, 0.12);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero__panel--top {
  grid-column: 2;
  grid-row: 1;
  background: rgba(255, 255, 255, 0.02);
}
.hero__panel--bottom {
  grid-column: 2;
  grid-row: 2;
  background: var(--electric);
  color: var(--white);
  border-right: 1px solid rgba(238, 241, 245, 0.12);
}
.hero__panel--side {
  grid-column: 3;
  grid-row: 1 / 3;
  background: var(--ink);
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--acid);
}
.hero__panel--bottom .hero__stat-num {
  color: var(--white);
}
.hero__stat-label {
  font-size: 0.85rem;
  color: rgba(238, 241, 245, 0.7);
  margin-top: 6px;
}

.hero__index-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__index-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.88rem;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(238, 241, 245, 0.12);
}
.hero__index-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.hero__index-item .num {
  font-family: var(--font-mono);
  color: var(--ice);
  font-size: 0.78rem;
}

@media (max-width: 1024px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    min-height: 0;
  }
  .hero__main,
  .hero__panel--top,
  .hero__panel--bottom,
  .hero__panel--side {
    grid-column: 1;
    grid-row: auto;
    border-right: none;
    border-bottom: 1px solid rgba(238, 241, 245, 0.12);
  }
  .hero__main {
    padding: 56px 24px 40px;
  }
}

/* -------------------------------------------------------------
   Section scaffolding
   ------------------------------------------------------------- */
.section {
  padding: 76px 0;
}
.section--tight {
  padding: 48px 0;
}
.section--surface {
  background: var(--surface);
}
.section--dark {
  background: var(--night);
  color: var(--surface);
}
.section--dark h2,
.section--dark h3 {
  color: var(--white);
}
.section--dark .muted-text {
  color: rgba(238, 241, 245, 0.68);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.4rem);
  margin: 0;
}
.section-head__desc {
  max-width: 46ch;
  color: var(--muted);
  margin: 10px 0 0;
}
.section--dark .section-head__desc {
  color: rgba(238, 241, 245, 0.68);
}
.section-head__link {
  font-weight: 600;
  color: var(--electric);
  border-bottom: 1px solid var(--electric);
  flex-shrink: 0;
  padding-bottom: 2px;
}
.section--dark .section-head__link {
  color: var(--ice);
  border-color: var(--ice);
}
.muted-text {
  color: var(--muted);
}

/* -------------------------------------------------------------
   Category tiles
   ------------------------------------------------------------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.cat-tile {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--white);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.cat-tile:hover img {
  transform: scale(1.05);
}
.cat-tile__label {
  position: relative;
  z-index: 1;
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.82) 70%);
  color: var(--white);
  margin-top: -70px;
}
.cat-tile__label span {
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------
   Product cards
   ------------------------------------------------------------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    transform 0.18s ease;
}
.product-card:hover {
  border-color: var(--electric);
  transform: translateY(-3px);
}
.product-card__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.04);
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--acid);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 5px 9px;
  border-radius: 3px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.product-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.product-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
}
.product-card__name a {
  color: var(--ink);
}
.product-card__desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.product-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}
.price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink);
}
.price--old {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}
.product-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}
.stock-note {
  font-size: 0.75rem;
  color: var(--muted);
}
.stock-note--out {
  color: #b0281c;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 700px) {
  .product-grid,
  .product-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 460px) {
  .product-grid,
  .product-grid--3 {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Editorial / opportunities split
   ------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.split__media {
  position: relative;
  min-height: 340px;
}
.split__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.split__body {
  padding: 44px;
  background: var(--electric);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__body h3 {
  color: var(--white);
  font-size: 1.8rem;
}
@media (max-width: 860px) {
  .split {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Editorial cards (Keşfet)
   ------------------------------------------------------------- */
.article-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.85fr 0.85fr;
  gap: 20px;
}
.article-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.article-card--feature {
  grid-row: 1/3;
}
.article-card__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-card--feature .article-card__media {
  aspect-ratio: 16/12;
}
.article-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.article-card__cat {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--electric);
}
.article-card__title {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.22;
  margin: 0 0 2px;
}
.article-card--feature .article-card__title {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem);
}
.article-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.article-card__meta span + span {
  position: relative;
}
.article-card__meta span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--line);
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
}
.article-card__summary {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin: 0;
}
.article-card__link {
  font-weight: 600;
  color: var(--electric);
  margin-top: auto;
}
.article-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -18px 0 30px;
}
.article-filters button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  padding: 10px 15px;
  font-weight: 800;
}
.article-filters button:hover,
.article-filters button.is-active {
  border-color: var(--electric);
  background: var(--electric);
  color: var(--white);
}
@media (max-width: 960px) {
  .article-grid {
    grid-template-columns: 1fr 1fr;
  }
  .article-card--feature {
    grid-column: 1/3;
    grid-row: auto;
  }
}
@media (max-width: 640px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-card--feature {
    grid-column: 1;
  }
}

/* -------------------------------------------------------------
   Advertising / collaboration block
   ------------------------------------------------------------- */
.ad-block {
  background: var(--ink);
  color: var(--surface);
  border-radius: var(--radius-m);
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
}
.ad-block h3 {
  color: var(--white);
  font-size: 1.9rem;
  max-width: 20ch;
}
.ad-block p {
  color: rgba(238, 241, 245, 0.72);
  max-width: 44ch;
}
@media (max-width: 760px) {
  .ad-block {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* -------------------------------------------------------------
   Newsletter
   ------------------------------------------------------------- */
.newsletter {
  background: var(--surface-2);
  padding: 52px 0;
}
.newsletter__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter__copy h2 {
  font-size: 1.5rem;
  margin-bottom: 4px;
}
.newsletter__copy p {
  margin: 0;
  color: var(--muted);
}
.newsletter__form {
  display: flex;
  gap: 10px;
  flex: 1;
  min-width: 280px;
  max-width: 420px;
}
.newsletter__form input {
  flex: 1;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}

/* -------------------------------------------------------------
   Footer
   ------------------------------------------------------------- */
.site-footer {
  background: var(--night);
  color: var(--surface);
  padding: 64px 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(238, 241, 245, 0.12);
}
.footer__brand p {
  color: rgba(238, 241, 245, 0.65);
  font-size: 0.88rem;
  max-width: 32ch;
  margin-bottom: 18px;
}
.footer__brand p strong {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.12rem;
}
.footer-brand-mark {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(200, 255, 56, 0.18), rgba(49, 87, 255, 0.18)),
    rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(238, 241, 245, 0.12), 0 18px 36px rgba(0, 0, 0, 0.22);
}
.footer__logo {
  width: 82px;
  height: 82px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(200, 255, 56, 0.24);
}
.footer__col h3 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col a {
  color: rgba(238, 241, 245, 0.72);
  font-size: 0.9rem;
}
.footer__col a:hover {
  color: var(--ice);
}
.footer__bottom {
  padding: 22px 24px 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(238, 241, 245, 0.6);
}
.footer__legal-ids {
  font-family: var(--font-mono);
}
@media (max-width: 960px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* -------------------------------------------------------------
   Inner pages
   ------------------------------------------------------------- */
.page-hero {
  background: var(--surface);
  padding: 72px 0 54px;
  border-bottom: 1px solid var(--line);
}
.page-hero > .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 34px;
  align-items: center;
}
.page-hero__copy {
  min-width: 0;
}
.page-hero--dark {
  background: var(--night);
  color: var(--surface);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 14ch;
}
.page-hero p {
  max-width: 62ch;
  color: var(--muted);
}
.page-hero__panel {
  border: 1px solid rgba(17, 24, 39, 0.12);
  border-radius: var(--radius-l);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.92),
    rgba(238, 241, 245, 0.92)
  );
  padding: 24px;
  min-height: 190px;
  display: grid;
  gap: 14px;
  align-content: center;
}
.page-hero__panel--dark,
.page-hero--dark .page-hero__panel {
  background:
    linear-gradient(145deg, rgba(49, 87, 255, 0.24), rgba(17, 24, 39, 0.86)),
    var(--night);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}
.page-hero__panel h2,
.page-hero__panel h3 {
  margin: 0;
  font-size: 1.25rem;
}
.page-hero__panel p {
  color: var(--muted);
  margin: 0;
  font-size: 0.92rem;
}
.page-hero--dark .page-hero__panel p,
.page-hero__panel--dark p {
  color: rgba(255, 255, 255, 0.74);
}
.hero-panel-list,
.hero-panel-steps {
  display: grid;
  gap: 10px;
}
.hero-panel-list li,
.hero-panel-steps li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(104, 115, 134, 0.22);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.page-hero--dark .hero-panel-list li,
.page-hero--dark .hero-panel-steps li,
.page-hero__panel--dark .hero-panel-list li,
.page-hero__panel--dark .hero-panel-steps li {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}
.hero-panel-list .fi,
.hero-panel-steps .fi,
.page-hero__panel > .fi {
  color: var(--electric);
}
.page-hero--dark .hero-panel-list .fi,
.page-hero--dark .hero-panel-steps .fi,
.page-hero__panel--dark .fi {
  color: var(--acid);
}
.hero-panel-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.hero-panel-metric strong {
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--electric);
}
.page-hero--dark .hero-panel-metric strong,
.page-hero__panel--dark .hero-panel-metric strong {
  color: var(--acid);
}
.hero-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-product-panel {
  align-content: start;
}
.hero-product-panel img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface-2);
}
.hero-product-panel .eyebrow {
  margin-bottom: 0;
}
.hero-product-panel h2 {
  font-size: 1.2rem;
}
.hero-product-panel .product-card__price-row {
  margin: 0;
}

.page-hero .hero-product-panel {
  min-height: 0;
  padding: 18px;
  gap: 9px;
  background:
    linear-gradient(145deg, var(--electric), #172258 72%), var(--night);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.page-hero .hero-product-panel img {
  aspect-ratio: 16/7;
  border-color: rgba(255, 255, 255, 0.18);
}

.page-hero .hero-product-panel h2 {
  color: var(--white);
  font-size: 1.02rem;
  margin: 0;
}

.page-hero .hero-product-panel p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.82rem;
  line-height: 1.45;
}

.page-hero .hero-product-panel .price {
  color: var(--acid);
  font-size: 1.04rem;
}

.page-hero .hero-product-panel .price--old {
  color: rgba(255, 255, 255, 0.58);
}

.page-hero .hero-product-panel .eyebrow {
  color: var(--acid);
}

.page-hero .hero-product-panel .eyebrow::before {
  background: var(--acid);
}

.page-hero .hero-product-panel .btn--primary {
  background: var(--acid);
  border-color: var(--acid);
  color: var(--ink);
  padding: 8px 12px;
}
.page-hero--dark p {
  color: rgba(238, 241, 245, 0.72);
}
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}
.filters,
.order-box,
.empty-state,
.success-box {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--white);
  padding: 22px;
}
.filters {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 100px;
  padding: 20px;
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 241, 245, 0.88)
    ),
    var(--white);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.08);
}
.filters__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.filters__head h2 {
  font-size: 1.15rem;
  margin: 0;
}
.filters__head .eyebrow {
  margin-bottom: 5px;
}
.filters__head > a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--electric);
}
.filters__head > a:hover {
  border-color: var(--electric);
  background: rgba(49, 87, 255, 0.08);
}
.filter-field {
  display: grid;
  gap: 7px;
}
.filter-field > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
  font-size: 0.84rem;
}
.filter-field .fi {
  color: var(--electric);
}
.filters input,
.filters select,
.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}
.filters input,
.filters select {
  min-height: 44px;
  border-color: #b9c3d2;
}
.filters__note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  border-radius: var(--radius-m);
  background: var(--night);
  color: var(--white);
}
.filters__note .fi {
  color: var(--acid);
  margin-top: 3px;
}
.filters__note p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
}
.product-detail {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: start;
}
.product-detail__media {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
}
.product-detail__media img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.product-detail__info h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
}
.feature-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.feature-list li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}
.cart-root {
  display: grid;
  gap: 14px;
}
.cart-line {
  display: grid;
  grid-template-columns: 86px 1fr 90px auto;
  gap: 16px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 12px;
}
.cart-line img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  background: var(--surface);
}
.cart-line input {
  padding: 9px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.cart-line button {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-s);
  padding: 10px 12px;
}
.cart-summary {
  justify-self: end;
  width: min(360px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}
.form {
  display: grid;
  gap: 16px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.form textarea {
  min-height: 110px;
  resize: vertical;
}
.check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}
.check input {
  width: auto;
  margin-top: 5px;
}
.article-page__body,
.prose,
.faq {
  max-width: 860px;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 34px;
  align-items: start;
}
.article-layout .article-page__body {
  max-width: none;
}
.article-page__body p {
  font-size: 1.12rem;
  line-height: 1.86;
  max-width: 68ch;
  margin: 0 auto 1.35em;
}
.article-page__body p:first-of-type::first-letter {
  float: left;
  font-family: var(--font-display);
  font-size: 4.2rem;
  line-height: 0.86;
  padding: 9px 10px 0 0;
  color: var(--electric-dark);
}
.article-side {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--white);
  padding: 24px;
  position: sticky;
  top: 112px;
}
.article-side h2 {
  font-size: 1.2rem;
}
.article-side ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}
.article-side li {
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.article-hero {
  padding: 46px 0 38px;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.94), rgba(29, 35, 64, 0.96)),
    var(--night);
  color: var(--white);
  text-align: left;
}

.article-hero > .wrap {
  display: block;
  max-width: 960px;
}

.article-hero__copy {
  text-align: center;
}

.article-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.6rem);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.article-hero p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 58ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.08rem;
}

.article-meta {
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ice);
}

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

.article-meta span + span {
  position: relative;
}

.article-meta span + span::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.38);
  transform: translateY(-50%);
}

.article-page .article-layout {
  margin-top: 54px;
  margin-bottom: 76px;
}

.article-page__body {
  padding: clamp(28px, 5vw, 56px);
}

.article-page__body img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  margin-bottom: 28px;
  background: var(--surface);
}
.article-page__body p,
.prose p,
.faq p {
  font-size: 1.05rem;
  color: var(--muted);
}
.info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 20px;
  background: var(--white);
}
.info-card h2 {
  font-size: 1.1rem;
}
.cta-band {
  margin-top: 28px;
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius-m);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .shop-layout,
  .product-detail,
  .checkout-layout {
    grid-template-columns: 1fr;
  }
  .page-hero > .wrap {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
  }
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .topbar__links,
  .icon-btn__label {
    display: none;
  }
  .site-header__row {
    gap: 14px;
  }
  .form-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
  .cart-line {
    grid-template-columns: 64px 1fr;
  }
  .cart-line img {
    width: 64px;
    height: 64px;
  }
  .cta-band {
    display: grid;
  }
}

@media (max-width: 980px) {
  .article-layout {
    grid-template-columns: 1fr;
  }
  .article-side {
    position: static;
  }
}

/* -------------------------------------------------------------
   Visual polish layer
   ------------------------------------------------------------- */
:root {
  --warm: #ffefe1;
  --rose: #ff6b8a;
  --mint: #37d6a4;
  --shadow-soft: 0 18px 48px rgba(17, 24, 39, 0.12);
}

body {
  background:
    linear-gradient(90deg, rgba(204, 211, 223, 0.22) 1px, transparent 1px) 0 0 /
      48px 48px,
    linear-gradient(180deg, rgba(204, 211, 223, 0.16) 1px, transparent 1px) 0
      0 / 48px 48px,
    var(--white);
}

h1,
h2,
h3,
h4 {
  letter-spacing: 0;
}

.site-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.btn {
  box-shadow: none;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease,
    color 0.16s ease,
    border-color 0.16s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--electric), #2448ed);
  box-shadow: 0 10px 22px rgba(49, 87, 255, 0.24);
}

.btn--acid {
  background: linear-gradient(135deg, var(--acid), #e4ff7c);
  box-shadow: 0 10px 22px rgba(200, 255, 56, 0.22);
}

.icon-btn:hover,
.dropdown a:hover {
  background: var(--surface);
}

.hero {
  background:
    radial-gradient(
      circle at 68% 18%,
      rgba(157, 232, 255, 0.18),
      transparent 24%
    ),
    radial-gradient(
      circle at 92% 86%,
      rgba(200, 255, 56, 0.16),
      transparent 28%
    ),
    linear-gradient(135deg, #111827 0%, #151827 46%, #20274a 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(238, 241, 245, 0.06) 1px, transparent 1px) 0 0 /
      72px 72px,
    linear-gradient(180deg, rgba(238, 241, 245, 0.05) 1px, transparent 1px) 0
      0 / 72px 72px;
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(2.7rem, 5.2vw, 5.5rem);
}

.hero h1::after {
  content: "";
  display: block;
  width: 96px;
  height: 7px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--acid), var(--ice));
}

.hero__panel {
  transition:
    background 0.25s ease,
    transform 0.25s ease;
}

.hero__panel:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__panel--side {
  background:
    linear-gradient(rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.92)),
    url("images/hero-editorial.jpg") center/cover;
}

.hero__index-item {
  transition:
    color 0.18s ease,
    padding-left 0.18s ease;
}

.hero__index-item:hover {
  color: var(--acid);
  padding-left: 8px;
}

.section--surface {
  background:
    linear-gradient(135deg, rgba(157, 232, 255, 0.18), transparent 36%),
    var(--surface);
}

.section--dark {
  background: linear-gradient(135deg, var(--night), #1d2340 68%, #152532);
}

.cat-grid {
  gap: 18px;
}

.cat-tile,
.product-card__media,
.article-card__media,
.split__media,
.product-detail__media {
  background:
    linear-gradient(
      135deg,
      rgba(157, 232, 255, 0.42),
      rgba(255, 239, 225, 0.64) 48%,
      rgba(200, 255, 56, 0.25)
    ),
    var(--surface-2);
}

.cat-tile::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.42);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.cat-tile:hover::before {
  opacity: 1;
}

.cat-tile img,
.product-card__media img,
.article-card__media img,
.split__media img,
.product-detail__media img,
.article-page__body img {
  background:
    linear-gradient(
      135deg,
      rgba(157, 232, 255, 0.36),
      rgba(255, 239, 225, 0.56)
    ),
    var(--surface-2);
}

.cat-tile img {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.cat-tile:hover img {
  transform: scale(1.07);
  filter: saturate(1.1) contrast(1.04);
}

.product-card,
.article-card,
.info-card,
.filters,
.order-box,
.empty-state,
.success-box,
.cart-summary,
.cart-line {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.product-card,
.article-card {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.product-card:hover,
.article-card:hover {
  border-color: var(--electric);
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.product-card__media img,
.article-card__media img {
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.product-card:hover .product-card__media img,
.article-card:hover .article-card__media img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.product-card__badge {
  background: linear-gradient(135deg, var(--acid), #e4ff7c);
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.14);
}

.product-card__actions .btn {
  flex: 1;
  padding-left: 12px;
  padding-right: 12px;
}

.split,
.ad-block {
  box-shadow: var(--shadow-soft);
}

.split__body {
  background: linear-gradient(145deg, var(--electric), #223fd0 72%, #171d35);
}

.ad-block {
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.86), rgba(21, 24, 39, 0.96)),
    url("images/reklam-is-birligi.jpg") center/cover;
}

.newsletter {
  background: linear-gradient(90deg, var(--surface-2), var(--warm));
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(157, 232, 255, 0.26), transparent 42%),
    linear-gradient(90deg, var(--surface), var(--white));
}

.page-hero--dark {
  background:
    radial-gradient(
      circle at 74% 20%,
      rgba(200, 255, 56, 0.16),
      transparent 24%
    ),
    linear-gradient(135deg, var(--night), #20284a);
}

.page-hero h1 {
  position: relative;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 5px;
  margin-top: 16px;
  background: linear-gradient(90deg, var(--electric), var(--acid));
}

.filters input:focus,
.filters select:focus,
.form input:focus,
.form select:focus,
.form textarea:focus,
.newsletter__form input:focus,
.search-panel__form input:focus {
  border-color: var(--electric);
  box-shadow: 0 0 0 4px rgba(49, 87, 255, 0.12);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  animation: revealUp 0.55s ease forwards;
}

.cart-badge.bump {
  animation: cartBump 0.32s ease;
}

@keyframes revealUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cartBump {
  50% {
    transform: scale(1.25);
  }
}

/* -------------------------------------------------------------
   Content depth + contrast corrections
   ------------------------------------------------------------- */
.hero p,
.hero__panel p,
.section--dark p,
.split__body p,
.ad-block p,
.page-hero--dark p,
.site-footer p {
  color: rgba(255, 255, 255, 0.78);
}

.split__body .eyebrow,
.ad-block .eyebrow,
.page-hero--dark .eyebrow,
.section--dark .eyebrow {
  color: var(--ice);
}

.split__body .eyebrow::before,
.ad-block .eyebrow::before,
.page-hero--dark .eyebrow::before,
.section--dark .eyebrow::before {
  background: var(--ice);
}

.ad-block h3,
.split__body h3,
.page-hero--dark h1 {
  color: var(--white);
}

.section--dark .article-card p,
.section--dark .article-card h3,
.section--dark .article-card a {
  color: inherit;
}

.section--dark .article-card__summary {
  color: var(--muted);
}

.cat-tile__label {
  min-height: 42%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 6px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(17, 24, 39, 0.72) 34%,
    rgba(17, 24, 39, 0.96)
  );
}

.cat-tile__label small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  line-height: 1.35;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-pills span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.82rem;
}

.page-hero--dark .hero-pills span {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.feature-mosaic__intro,
.feature-card,
.curation-note,
.values-panel,
.process-row > div,
.service-strip > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.94);
  padding: 26px;
}

.feature-mosaic__intro {
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.08), rgba(157, 232, 255, 0.2)),
    var(--white);
}

.feature-mosaic__intro h2,
.curation-note h2 {
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
}

.feature-card b,
.process-row b {
  font-family: var(--font-mono);
  color: var(--electric);
}

.feature-card h3,
.process-row h3 {
  font-size: 1.2rem;
  margin-top: 18px;
}

.feature-card p,
.feature-mosaic__intro p,
.curation-note p,
.values-panel li,
.process-row p,
.service-strip span,
.mini-note span {
  color: var(--muted);
}

.feature-card--accent {
  background: linear-gradient(145deg, var(--night), #24305d);
  color: var(--white);
}

.feature-card--accent b,
.feature-card--accent h3 {
  color: var(--acid);
}

.feature-card--accent p {
  color: rgba(255, 255, 255, 0.76);
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-strip > div {
  padding: 20px;
  display: grid;
  gap: 8px;
}

.service-strip strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.process-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 34px;
  align-items: start;
}

.values-panel {
  background: linear-gradient(145deg, var(--night), #20284a);
  color: var(--white);
}

.values-panel h2 {
  color: var(--white);
}

.values-panel ul {
  display: grid;
  gap: 12px;
}

.values-panel li {
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 12px;
}

.faq-grid {
  max-width: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.faq-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: var(--white);
  padding: 24px;
}

.faq-grid h2 {
  font-size: 1.15rem;
}

.faq-accordion {
  max-width: 920px;
  display: grid;
  gap: 12px;
}

.faq-accordion .faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.96);
  padding: 0;
  overflow: hidden;
}

.faq-accordion .faq-item summary {
  padding: 19px 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}

.faq-accordion .faq-item[open] summary {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(49, 87, 255, 0.07), rgba(200, 255, 56, 0.1)),
    var(--white);
}

.faq-accordion .faq-item p {
  padding: 18px 22px 22px;
  margin: 0;
  line-height: 1.7;
}

.faq-support-card {
  margin-top: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, var(--night), #20284a);
  color: var(--white);
  padding: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.faq-support-card h2 {
  color: var(--white);
}

.faq-support-card p {
  color: rgba(255, 255, 255, 0.74);
}

@media (max-width: 680px) {
  .faq-support-card {
    display: grid;
  }
}

.mini-note {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  background: var(--surface);
  padding: 16px;
  display: grid;
  gap: 4px;
}

.punkalasa-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(49, 87, 255, 0.22);
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.08), rgba(200, 255, 56, 0.12)),
    var(--white);
}

.punkalasa-note h2 {
  font-size: 1.18rem;
  margin: 0 0 12px;
}

.punkalasa-note .eyebrow {
  margin-bottom: 4px;
}

.punkalasa-note ul {
  display: grid;
  gap: 9px;
}

.punkalasa-note li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.92rem;
}

.punkalasa-note .fi {
  color: var(--electric);
  margin-top: 3px;
}

.guide-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.09), rgba(200, 255, 56, 0.16)),
    var(--white);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.guide-callout h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.4rem);
}

.guide-callout p {
  max-width: 62ch;
  color: var(--muted);
}

@media (max-width: 760px) {
  .guide-callout {
    display: grid;
  }
}

.cta-band {
  border: 1px solid var(--line);
}

.cta-band h2 {
  margin: 0;
}

@media (max-width: 980px) {
  .feature-mosaic,
  .service-strip,
  .about-layout,
  .faq-grid,
  .process-row {
    grid-template-columns: 1fr 1fr;
  }
  .feature-mosaic__intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .feature-mosaic,
  .service-strip,
  .about-layout,
  .faq-grid,
  .process-row {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Polished text pages
   ------------------------------------------------------------- */
.prose,
.article-page__body {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.94);
  padding: 34px;
}

.prose h2 + p,
.prose p + h2 {
  margin-top: 26px;
}

.prose h2 {
  color: var(--electric-dark);
}

.info-grid--compact {
  grid-template-columns: repeat(3, 1fr);
}

.info-card p {
  color: var(--muted);
}

.contact-aside {
  display: grid;
  gap: 10px;
}

.contact-aside span {
  color: var(--muted);
}

.contact-aside hr {
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line);
}

.account-panel {
  margin-bottom: 22px;
}

@media (max-width: 980px) {
  .info-grid--compact {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Rich homepage editorial blocks
   ------------------------------------------------------------- */
.product-story-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 22px;
  align-items: stretch;
}

.story-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 420px;
}

.story-panel--dark {
  background:
    linear-gradient(145deg, rgba(17, 24, 39, 0.94), rgba(29, 35, 64, 0.96)),
    url("images/yeni-urunler.jpg") center/cover;
  color: var(--white);
}

.story-panel--dark h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.story-panel--dark p {
  color: rgba(255, 255, 255, 0.76);
}

.story-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.editorial-band {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.editorial-band > div {
  background: rgba(255, 255, 255, 0.96);
  padding: 28px;
}

.editorial-band > div:first-child {
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.1), rgba(200, 255, 56, 0.16)),
    var(--white);
}

.editorial-band h2 {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.editorial-band h3 {
  font-size: 1.08rem;
}

.editorial-band p {
  color: var(--muted);
}

@media (max-width: 980px) {
  .product-story-grid,
  .editorial-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .story-products {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Account dashboard
   ------------------------------------------------------------- */
.account-dashboard {
  display: grid;
  gap: 24px;
}

.account-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.account-stat,
.account-side,
.order-history-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.96);
}

.account-stat {
  padding: 22px;
  display: grid;
  gap: 8px;
}

.account-stat .fi {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(49, 87, 255, 0.08);
  color: var(--electric);
}

.account-stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.account-stat strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.account-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.account-orders {
  min-width: 0;
}

.account-side {
  padding: 24px;
  position: sticky;
  top: 112px;
}

.account-side h2 {
  font-size: 1.25rem;
}

.order-history-card {
  padding: 22px;
  margin-bottom: 16px;
}

.order-history-card__head,
.order-history-total,
.account-cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.order-history-card__head {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.order-history-card__head span {
  color: var(--muted);
  font-size: 0.86rem;
}

.order-history-card__head h3 {
  margin: 4px 0 0;
  font-size: 1.1rem;
}

.order-history-card__head > strong {
  color: #1d8a4a;
  background: rgba(55, 214, 164, 0.12);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.82rem;
}

.order-history-items {
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.order-history-items > div {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
}

.order-history-items img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: var(--radius-s);
  background: var(--surface);
}

.order-history-items span {
  font-weight: 600;
}

.order-history-items b {
  color: var(--muted);
}

.order-history-total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  font-weight: 700;
}

.account-cart-line {
  border-top: 1px solid var(--line);
  padding: 12px 0;
}

.account-cart-line span,
.account-side p {
  color: var(--muted);
}

.account-cart-total {
  border-top: 1px solid var(--line);
  padding-top: 14px;
  margin-top: 6px;
}

@media (max-width: 980px) {
  .account-stats,
  .account-main {
    grid-template-columns: 1fr 1fr;
  }
  .account-side {
    position: static;
  }
}

@media (max-width: 640px) {
  .account-stats,
  .account-main,
  .order-history-items > div {
    grid-template-columns: 1fr;
  }
}

/* Final burger geometry reset: keep bars centered inside the square */
.menu-toggle,
.menu-toggle.is-active {
  width: 46px;
  height: 46px;
  min-width: 46px;
  padding: 0;
  gap: 0;
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.menu-toggle span,
.menu-toggle.is-active span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  display: block;
  margin: 0;
  padding: 0;
  transform-origin: 50% 50%;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, -9px);
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, 7px);
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0);
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media (max-width: 980px) {
  .menu-toggle,
  .menu-toggle.is-active {
    display: flex;
  }
}

/* Keep the burger/close button in the same header slot */
.site-header .menu-toggle.is-active {
  position: relative !important;
  top: auto !important;
  right: auto !important;
  z-index: auto;
  margin-left: auto;
}

/* Let the right hero image bleed to the viewport edge */
@media (min-width: 1025px) {
  .hero__panel--side {
    position: relative;
    width: calc(100% + ((100vw - min(var(--container), 100vw)) / 2) + 24px);
    margin-right: calc(
      -1 * (((100vw - min(var(--container), 100vw)) / 2) + 24px)
    );
    overflow: visible;
  }

  .hero__panel--side::after {
    display: none;
  }
}

/* Keep the hero image panel stable on hover */
.hero__panel--side,
.hero__panel--side:hover {
  background:
    linear-gradient(rgba(17, 24, 39, 0.72), rgba(17, 24, 39, 0.92)),
    url("images/hero-editorial.jpg") center/cover;
}

.hero__panel--side:hover {
  transform: none;
}

.hero__panel--top:hover,
.hero__panel--bottom:hover {
  background: rgba(255, 255, 255, 0.06);
}

.hero__panel--bottom:hover,
.hero-cardlet--bright:hover {
  background: linear-gradient(145deg, var(--electric), #1c37c6);
}
@media (max-width: 560px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Page header (non-home pages)
   ------------------------------------------------------------- */
.page-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 44px 0;
}
.page-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 8px;
}
.page-header p {
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
}
.breadcrumb {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.breadcrumb a {
  color: var(--electric-dark);
  font-weight: 600;
}

.page-header--dark {
  background: var(--night);
  color: var(--surface);
}
.page-header--dark h1 {
  color: var(--white);
}
.page-header--dark p {
  color: rgba(238, 241, 245, 0.7);
}
.page-header--dark .breadcrumb {
  color: rgba(238, 241, 245, 0.55);
}
.page-header--dark .breadcrumb a {
  color: var(--ice);
}

/* -------------------------------------------------------------
   Shop layout: filters + grid
   ------------------------------------------------------------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.filters {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
  position: sticky;
  top: 96px;
}
.filters h3 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}
.filters fieldset {
  border: none;
  padding: 0;
  margin: 0 0 22px;
}
.filters legend {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 10px;
  padding: 0;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.9rem;
}
.filter-option input {
  accent-color: var(--electric);
  width: 16px;
  height: 16px;
}
.price-range {
  display: flex;
  gap: 8px;
  align-items: center;
}
.price-range input {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.toolbar__count {
  color: var(--muted);
  font-size: 0.9rem;
}
.toolbar select {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}
@media (max-width: 900px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .filters {
    position: static;
  }
}

.empty-state {
  padding: 60px 24px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius-m);
  color: var(--muted);
}

/* -------------------------------------------------------------
   Product detail page
   ------------------------------------------------------------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail__media img {
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
}
.product-detail__cat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--electric);
  margin-bottom: 10px;
  display: block;
}
.product-detail h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}
.product-detail__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 14px 0 20px;
}
.product-detail__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}
.product-detail__stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1d8a4a;
  margin-bottom: 20px;
}
.product-detail__stock::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d8a4a;
}
.qty-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.qty-control button {
  width: 38px;
  height: 42px;
  border: none;
  background: none;
  font-size: 1.1rem;
}
.qty-control input {
  width: 44px;
  text-align: center;
  border: none;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
}
.feature-list li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
}
.feature-list li::before {
  content: "—";
  color: var(--electric);
  flex-shrink: 0;
}
.detail-tabs {
  margin-top: 32px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.detail-tabs h2 {
  font-size: 1.2rem;
}
@media (max-width: 860px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
}

/* -------------------------------------------------------------
   Cart & checkout
   ------------------------------------------------------------- */
.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table th {
  text-align: left;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 0 0 12px;
  border-bottom: 1px solid var(--line);
}
.cart-table td {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-item {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
}
.cart-item__name {
  font-weight: 600;
  font-size: 0.92rem;
}
.cart-item__cat {
  font-size: 0.78rem;
  color: var(--muted);
}
.cart-remove {
  color: var(--muted);
  font-size: 0.8rem;
  border: none;
  background: none;
  text-decoration: underline;
  padding: 0;
}
.cart-remove:hover {
  color: #b0281c;
}
.cart-summary {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  position: sticky;
  top: 96px;
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.92rem;
}
.cart-summary__row--total {
  font-weight: 700;
  font-size: 1.1rem;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
}
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 36px;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
  .cart-summary {
    position: static;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-field--full {
  grid-column: 1/3;
}
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--white);
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
}
.form-section {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 28px;
  margin-bottom: 24px;
}
.form-section h2 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.checkbox-row input {
  margin-top: 3px;
  accent-color: var(--electric);
}
.checkbox-row a {
  color: var(--electric-dark);
  font-weight: 600;
}
.order-note {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px;
  font-size: 0.88rem;
  color: var(--ink);
  margin-top: 8px;
}
.order-note strong {
  display: block;
  margin-bottom: 4px;
}
@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-field--full {
    grid-column: 1;
  }
}

.confirmation {
  text-align: center;
  padding: 72px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
}
.confirmation__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--acid);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.confirmation h1 {
  margin-bottom: 10px;
}
.confirmation p {
  max-width: 52ch;
  margin: 0 auto 12px;
  color: var(--muted);
}
.confirmation .payment-note {
  font-weight: 700;
  color: var(--ink);
}

/* -------------------------------------------------------------
   Editorial article page
   ------------------------------------------------------------- */
.article-header {
  background: var(--night);
  color: var(--surface);
  padding: 60px 0 44px;
}
.article-header .breadcrumb {
  color: rgba(238, 241, 245, 0.55);
}
.article-header .breadcrumb a {
  color: var(--ice);
}
.article-header h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  max-width: 26ch;
}
.article-header__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  color: rgba(238, 241, 245, 0.65);
  font-size: 0.85rem;
  margin-top: 12px;
}
.article-cover {
  margin-top: -40px;
}
.article-cover img {
  border-radius: var(--radius-m);
  border: 1px solid var(--line);
}
.article-body {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 0;
  font-size: 1.05rem;
}
.article-body p {
  margin-bottom: 1.3em;
  color: var(--ink);
}
.article-related {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  margin-top: 36px;
}
.article-related h2 {
  font-size: 1.1rem;
}

/* -------------------------------------------------------------
   Options / step cards used across corporate & legal pages
   ------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
}
.info-card h3 {
  font-size: 1.05rem;
}
@media (max-width: 860px) {
  .info-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px) {
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.steps-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.steps-list li:last-child {
  border-bottom: none;
}
.steps-list .num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--electric);
}

.legal-doc h2 {
  font-size: 1.3rem;
  margin-top: 2em;
}
.legal-doc h3 {
  font-size: 1.05rem;
  margin-top: 1.4em;
}
.legal-doc p,
.legal-doc li {
  color: var(--ink);
  font-size: 0.98rem;
}
.legal-doc ul {
  padding-left: 1.2em;
  list-style: disc;
  margin-bottom: 1em;
}
.legal-doc ul li {
  margin-bottom: 0.4em;
}
.legal-doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2em 0;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
  margin: 1.2em 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  -webkit-overflow-scrolling: touch;
}
.table-scroll table {
  margin: 0;
  min-width: 620px;
}
.table-scroll th:first-child,
.table-scroll td:first-child {
  width: 170px;
}
.legal-doc th,
.legal-doc td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  font-size: 0.92rem;
}
.table-scroll th:first-child,
.table-scroll td:first-child {
  border-left: 0;
}
.table-scroll th:last-child,
.table-scroll td:last-child {
  border-right: 0;
}
.table-scroll tr:first-child th {
  border-top: 0;
}
.table-scroll tr:last-child td {
  border-bottom: 0;
}
.legal-doc__meta {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 18px 22px;
  margin-bottom: 32px;
  font-size: 0.9rem;
}
.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.legal-nav a {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 600;
}
.legal-nav a:hover {
  border-color: var(--electric);
  color: var(--electric);
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.faq-item summary {
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--electric);
  flex-shrink: 0;
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item p {
  margin-top: 10px;
  color: var(--muted);
}
.faq-category {
  margin-bottom: 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}
.contact-info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 24px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.account-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.account-tabs a {
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.88rem;
}
.account-tabs a.is-active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* -------------------------------------------------------------
   Reveal-on-scroll animation
   ------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------------------------------------------------------------
   Responsive: header & nav collapse
   ------------------------------------------------------------- */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-actions .icon-btn__label {
    display: none;
  }
  .mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--line);
  }
  .mobile-nav.is-open {
    display: block;
  }
  .mobile-nav ul {
    padding: 12px 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .mobile-nav a {
    display: block;
    padding: 11px 0;
    font-weight: 600;
    border-bottom: 1px solid var(--surface-2);
  }
  .mobile-nav__sub a {
    padding-left: 14px;
    font-weight: 500;
    color: var(--muted);
  }
  .topbar__links {
    display: none;
  }
  .site-header__row {
    padding: 14px 24px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 52px 0;
  }
  .ad-block {
    padding: 32px;
  }
}

/* -------------------------------------------------------------
   Calm interactions + editorial background override
   ------------------------------------------------------------- */
body {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(
      circle at 12% 8%,
      rgba(157, 232, 255, 0.2),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 22%,
      rgba(200, 255, 56, 0.14),
      transparent 24%
    ),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 48%, #eef1f5 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      118deg,
      transparent 0 46px,
      rgba(49, 87, 255, 0.035) 46px 47px,
      transparent 47px 94px
    ),
    repeating-linear-gradient(
      62deg,
      transparent 0 82px,
      rgba(17, 24, 39, 0.028) 82px 83px,
      transparent 83px 164px
    );
}

body::after {
  content: "";
  position: fixed;
  inset: auto 0 0 auto;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.08), rgba(157, 232, 255, 0.16)),
    linear-gradient(
      45deg,
      transparent 0 48%,
      rgba(200, 255, 56, 0.34) 48% 52%,
      transparent 52%
    );
  clip-path: polygon(26% 0, 100% 18%, 78% 100%, 0 72%);
  opacity: 0.72;
}

.section,
.newsletter,
.site-footer,
.hero,
.page-hero {
  position: relative;
  z-index: 0;
}

.btn,
.btn:hover,
.btn--primary,
.btn--acid {
  box-shadow: none;
}

.btn:hover {
  transform: none;
}

.btn--primary:hover {
  background: var(--electric-dark);
  color: var(--white);
}

.btn--acid:hover {
  background: #b6ea1f;
  color: var(--ink);
}

.btn--outline:hover {
  background: rgba(49, 87, 255, 0.06);
  border-color: var(--electric);
  color: var(--electric);
}

.btn--outline-light:hover {
  background: rgba(157, 232, 255, 0.1);
  border-color: var(--ice);
  color: var(--ice);
}

.product-card__actions .btn:hover,
.newsletter__form .btn:hover,
.search-panel__form button:hover,
.form .btn:hover {
  transform: none;
  filter: none;
}

.hero::before {
  background:
    repeating-linear-gradient(
      116deg,
      transparent 0 56px,
      rgba(238, 241, 245, 0.07) 56px 57px,
      transparent 57px 112px
    ),
    linear-gradient(135deg, rgba(157, 232, 255, 0.08), transparent 38%);
}

.page-hero::before,
.section--surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      126deg,
      transparent 0 18%,
      rgba(255, 255, 255, 0.48) 18% 24%,
      transparent 24%
    ),
    linear-gradient(
      306deg,
      transparent 0 64%,
      rgba(49, 87, 255, 0.055) 64% 70%,
      transparent 70%
    );
}

.page-hero > .wrap,
.section--surface > .wrap {
  position: relative;
  z-index: 1;
}

/* Primary buttons: no flash, no movement, calm color-only hover */
.btn--primary,
.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background-image: none;
  box-shadow: none;
  filter: none;
  transform: none;
  transition:
    background-color 0.14s ease,
    border-color 0.14s ease,
    color 0.14s ease;
}

.btn--primary {
  background-color: var(--electric);
  border-color: var(--electric);
  color: var(--white);
}

.btn--primary:hover,
.btn--primary:focus {
  background-color: var(--electric-dark);
  border-color: var(--electric-dark);
  color: var(--white);
}

.btn--primary:active {
  background-color: #1935b8;
  border-color: #1935b8;
}

/* -------------------------------------------------------------
   Header refresh + Flaticon UI
   ------------------------------------------------------------- */
.fi {
  line-height: 1;
  display: inline-flex;
}

.site-header {
  border-bottom: 1px solid rgba(204, 211, 223, 0.72);
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.site-header__row {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 178px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--night);
}

.brand__tag {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px;
}

.main-nav > ul {
  gap: 2px;
  justify-content: center;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
}

.main-nav a::after {
  display: none;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--white);
  color: var(--electric-dark);
}

.main-nav a.nav-deal {
  position: relative;
  background: var(--night);
  color: var(--white);
  padding-left: 38px;
}

.main-nav a.nav-deal .fi {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  color: var(--acid);
  font-size: 1rem;
}

.main-nav a.nav-deal:hover,
.main-nav a.nav-deal.is-active {
  background: var(--electric-dark);
  color: var(--white);
}

.dropdown {
  border-radius: var(--radius-l);
  padding: 10px;
  min-width: 244px;
  box-shadow: 0 22px 46px rgba(17, 24, 39, 0.14);
}

.dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--radius-m);
}

.dropdown a .fi {
  color: var(--electric);
}

.header-actions {
  gap: 8px;
}

.icon-btn {
  width: 46px;
  height: 46px;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
}

.icon-btn .fi {
  font-size: 1.12rem;
}

.icon-btn__label {
  display: none;
}

.icon-btn:hover {
  border-color: var(--electric);
  background: rgba(49, 87, 255, 0.06);
}

.menu-toggle {
  width: 46px;
  height: 46px;
  position: relative;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: var(--radius-s);
  background: var(--ink);
  margin-left: auto;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--white);
  margin: 0;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition:
    transform 0.16s ease,
    opacity 0.16s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 7px));
}

.menu-toggle span:nth-child(2) {
  transform: translate(-50%, -50%);
}

.menu-toggle span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 7px));
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.menu-toggle.is-active {
  position: relative;
  top: auto;
  right: auto;
  z-index: 60;
  border-color: var(--white);
  background: var(--night);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(157, 232, 255, 0.14), transparent 42%),
    var(--white);
}

.mobile-nav__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 82px 8px 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-nav a .fi {
  color: var(--electric);
}

/* Hero cardlets replacing raw stats */
.hero-cardlet {
  gap: 18px;
  justify-content: center;
}

.hero-cardlet .fi {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--acid);
  font-size: 1.35rem;
}

.hero-cardlet h2 {
  color: var(--white);
  font-size: 1.45rem;
  max-width: 12ch;
}

.hero-cardlet p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  max-width: 30ch;
}

.hero-cardlet a {
  display: inline-flex;
  width: fit-content;
  color: var(--ice);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.hero-cardlet--bright {
  background: linear-gradient(145deg, var(--electric), #1c37c6);
}

.hero-cardlet--bright .fi {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.hero-cardlet--bright a {
  color: var(--acid);
}

.marquee-band {
  overflow: hidden;
  background: var(--night);
  border-top: 1px solid rgba(238, 241, 245, 0.12);
  border-bottom: 1px solid rgba(238, 241, 245, 0.12);
  color: var(--white);
}

.marquee-band__track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  animation: punkalasaMarquee 42s linear infinite;
}

.marquee-band__track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.95rem, 1.4vw, 1.25rem);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.marquee-band__track i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--acid);
  flex: 0 0 7px;
}

@keyframes punkalasaMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.feature-card > .fi,
.process-row > div > .fi,
.service-strip > div > .fi {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(49, 87, 255, 0.08);
  color: var(--electric);
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.feature-card--accent > .fi {
  background: rgba(200, 255, 56, 0.16);
  color: var(--acid);
}

.service-strip > div {
  position: relative;
  overflow: hidden;
}

.service-strip > div::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 64px;
  height: 16px;
  border: 0;
  background: linear-gradient(
    90deg,
    var(--acid) 0 16px,
    transparent 16px 24px,
    rgba(49, 87, 255, 0.24) 24px 100%
  );
  clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  opacity: 0.82;
  transform: none;
  pointer-events: none;
}

.shop-service-section {
  background:
    linear-gradient(135deg, rgba(21, 24, 39, 0.04), rgba(49, 87, 255, 0.06)),
    var(--white);
}

.shop-service-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.shop-service-strip > div {
  min-height: 180px;
  padding: 26px;
  border-color: rgba(49, 87, 255, 0.16);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(238, 241, 245, 0.86)
    ),
    var(--white);
}

.shop-service-strip > div:nth-child(2) {
  background: linear-gradient(145deg, var(--night), #20284a);
  color: var(--white);
}

.shop-service-strip > div:nth-child(2) strong {
  color: var(--white);
}

.shop-service-strip > div:nth-child(2) span {
  color: rgba(255, 255, 255, 0.74);
}

.shop-service-strip > div:nth-child(2) .fi {
  background: rgba(200, 255, 56, 0.14);
  color: var(--acid);
}

.shop-service-strip strong {
  font-size: 1.2rem;
}

.shop-service-strip span {
  line-height: 1.55;
}

@media (max-width: 820px) {
  .shop-service-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .brand__tag {
    display: none;
  }
  .main-nav {
    background: none;
    border: 0;
    padding: 0;
  }
  .header-actions {
    margin-left: auto;
  }
  .menu-toggle {
    display: flex;
    order: 10;
  }
}

/* -------------------------------------------------------------
   Final mobile header / burger containment
   ------------------------------------------------------------- */
@media (max-width: 980px) {
  .site-header {
    overflow: visible;
  }

  .site-header__row {
    display: grid;
    grid-template-columns: minmax(0, auto) minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    overflow: clip;
  }

  .brand {
    min-width: 0;
    max-width: 150px;
  }

  .brand__name {
    display: none;
  }

  .header-actions {
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
    max-width: calc(100vw - 48px);
    min-width: 0;
    display: flex;
    flex-wrap: nowrap;
  }

  .menu-toggle,
  .site-header .menu-toggle.is-active {
    position: relative !important;
    inset: auto !important;
    right: auto !important;
    top: auto !important;
    display: flex;
    flex: 0 0 46px;
    width: 46px;
    min-width: 46px;
    max-width: 46px;
    height: 46px;
    min-height: 46px;
    max-height: 46px;
    margin: 0;
    padding: 0;
    order: 10;
    overflow: hidden;
    transform: none !important;
  }

  .menu-toggle span,
  .site-header .menu-toggle.is-active span {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 22px;
    height: 2px;
    margin: 0;
    padding: 0;
    transform-origin: center;
  }

  .menu-toggle span:nth-child(1) {
    transform: translate(-50%, -8px);
  }

  .menu-toggle span:nth-child(2) {
    transform: translate(-50%, -50%);
  }

  .menu-toggle span:nth-child(3) {
    transform: translate(-50%, 7px);
  }

  .site-header .menu-toggle.is-active span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .site-header .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0);
  }

  .site-header .menu-toggle.is-active span:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-nav-top, 76px);
    bottom: 0;
    z-index: 49;
    max-height: calc(100dvh - var(--mobile-nav-top, 76px));
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .mobile-nav.is-open {
    display: block;
  }
}

/* Final topbar readability */
.topbar {
  background: #eef8ff !important;
  color: #0d1220 !important;
  border-bottom: 1px solid #b7c4d6;
}

.topbar__msg {
  color: #0d1220 !important;
  opacity: 1 !important;
  font-weight: 800;
}

.topbar__links a {
  color: #1736b8 !important;
  opacity: 1 !important;
  font-weight: 800;
}

.topbar__links a:hover {
  color: #0d1220 !important;
}

/* About page completion blocks */
.about-highlight {
  margin: 34px 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.08), rgba(200, 255, 56, 0.14)),
    var(--white);
}

.about-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.about-benefits > div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(204, 211, 223, 0.82);
  border-radius: var(--radius-m);
  padding: 18px;
}

.about-benefits .fi {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(49, 87, 255, 0.08);
  color: var(--electric);
  margin-bottom: 12px;
}

.about-benefits h3 {
  font-size: 1rem;
}

.about-benefits p {
  font-size: 0.92rem;
}

.media-callout {
  margin: 34px 0;
  padding: 28px;
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, var(--night), #20284a);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.media-callout h2 {
  color: var(--white);
}

.media-callout p {
  color: rgba(255, 255, 255, 0.76);
}

.media-section {
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.06), transparent 36%),
    var(--white);
}

.media-format-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.media-format-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  background: rgba(255, 255, 255, 0.96);
  padding: 22px;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  overflow: hidden;
}

.media-format-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 72px;
  height: 18px;
  border: 0;
  background: linear-gradient(
    90deg,
    var(--acid) 0 18px,
    transparent 18px 26px,
    rgba(49, 87, 255, 0.22) 26px 100%
  );
  clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  opacity: 0.9;
}

.media-format-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--acid);
  font-size: 1.12rem;
}

.media-format-card h2 {
  font-size: 1.15rem;
  margin: 0;
}

.media-format-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.media-format-card__tags {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.media-format-card__tags span {
  border: 1px solid rgba(49, 87, 255, 0.18);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(49, 87, 255, 0.06);
  color: var(--electric-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

.placement-panel {
  margin-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-l);
  background: linear-gradient(145deg, var(--night), #20284a 76%, #102c3a);
  padding: 30px;
  color: var(--white);
}

.placement-panel h2 {
  color: var(--white);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
}

.placement-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.placement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.placement-grid a {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-m);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 16px;
  font-weight: 800;
}

.placement-grid .fi {
  color: var(--acid);
}

.media-process {
  margin-top: 24px;
}

.media-cta {
  background:
    linear-gradient(
      135deg,
      rgba(200, 255, 56, 0.22),
      rgba(157, 232, 255, 0.18)
    ),
    var(--surface);
}

@media (max-width: 1100px) {
  .media-format-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .media-format-grid,
  .placement-panel,
  .placement-grid {
    grid-template-columns: 1fr;
  }
}

.company-details {
  display: grid;
  gap: 0;
  margin: 20px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.company-details div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 14px 18px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.company-details div:last-child {
  border-bottom: none;
}

.company-details dt {
  font-weight: 800;
  color: var(--ink);
}

.company-details dd {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  .about-benefits,
  .company-details div {
    grid-template-columns: 1fr;
  }
  .media-callout {
    display: grid;
  }
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  max-width: 940px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border-radius: var(--radius-l);
  background:
    linear-gradient(135deg, rgba(49, 87, 255, 0.24), rgba(200, 255, 56, 0.08)),
    var(--night);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  border: 1px solid rgba(238, 241, 245, 0.14);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(200, 255, 56, 0.14);
  color: var(--acid);
  font-size: 1.15rem;
}

.cookie-banner__copy strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}

.cookie-banner__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 14px;
    right: 14px;
    bottom: 14px;
    grid-template-columns: 1fr;
  }
  .cookie-banner__actions {
    justify-content: stretch;
  }
.cookie-banner__actions .btn {
    flex: 1;
  }
}

.submitted-data {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.submitted-data div {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.submitted-data div:last-child {
  border-bottom: 0;
}

.submitted-data strong {
  color: var(--ink);
  text-transform: capitalize;
}

.submitted-data span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

@media (max-width: 620px) {
  .submitted-data div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media (max-width: 980px) {
  .site-header {
    overflow: visible !important;
  }

  .mobile-nav {
    display: none !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 100% !important;
    bottom: auto !important;
    z-index: 90 !important;
    width: 100%;
    max-height: min(72dvh, calc(100dvh - 76px));
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: none !important;
    background:
      linear-gradient(135deg, rgba(157, 232, 255, 0.16), transparent 42%),
      var(--white);
    border-top: 1px solid var(--line);
    box-shadow: 0 24px 48px rgba(21, 24, 39, 0.18);
  }

  .mobile-nav.is-open {
    display: block !important;
  }

  .mobile-nav ul {
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
}
