:root {
  --yellow: #FFC93C;
  --orange: #FF8A3C;
  --pink: #FF4D6D;
  --purple: #C34FE0;
  --indigo: #6C5CE7;
  --teal: #2FD6C0;
  --ink: #17171a;
  --muted: #6b6b76;
  --bg: #ffffff;
  --card: #ffffff;
  --border: #eaeaec;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}

/* ---------- Header ---------- */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  position: relative;
  z-index: 10;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
}

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  opacity: 0.85;
}

.main-nav a:hover { opacity: 1; }

.main-nav a.active {
  opacity: 1;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(161,161,161,0.32);
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid rgba(161,161,161,0.32);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle .icon-close { display: none; }

/* Language row inside the mobile menu — hidden on desktop */
.nav-lang { display: none; }

.btn-primary {
  background: var(--ink);
  color: #fff;
  padding: 16px 30px;
  font-size: 16px;
  box-shadow: 0 8px 20px rgba(23,23,26,0.28);
}

.btn-primary:hover { background: #000; }

.lang-switch {
  position: relative;
}

.lang-current {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px 0 12px;
  border-radius: 999px;
  border: 1.5px solid rgba(161,161,161,0.32);
  background: transparent;
  cursor: pointer;
  color: var(--ink);
}

.lang-flag {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-code {
  font-size: 14px;
  font-weight: 600;
}

.lang-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.lang-current[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  flex-direction: column;
  gap: 4px;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 120px;
  background: var(--card);
  padding: 8px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.14);
  border: 1px solid var(--border);
  z-index: 20;
}

.lang-dropdown.open { display: flex; }

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  padding: 8px 10px;
  border-radius: 12px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
}

.lang-option .lang-flag {
  width: 24px;
  height: 24px;
}

.lang-option .lang-code {
  font-size: 13px;
}

.lang-option:hover {
  background: var(--bg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px 120px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 720px;
  text-align: center;
}

.hero-content h1 {
  font-size: 52px;
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.highlight {
  position: relative;
  white-space: nowrap;
}

.highlight::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  bottom: 4px;
  height: 12px;
  background: var(--yellow);
  z-index: -1;
  border-radius: 2px;
}

.hero-sub {
  margin-top: 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.hero-content .btn-primary {
  display: inline-block;
  margin-top: 36px;
}

/* ---------- Decorative print mockups ---------- */

.deco {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  gap: 28px;
}

.deco-card-left {
  left: -30px;
  bottom: 30px;
}

.deco-pen {
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%) rotate(-5deg);
  width: 480px;
  max-width: 40vw;
  height: auto;
  z-index: 3;
}

.deco-right {
  right: 0;
  bottom: 190px;
}

.bizcard-wrap {
  width: 260px;
  overflow: hidden;
}

.deco-bizcard {
  width: 435px;
  height: auto;
  display: block;
  filter: hue-rotate(283deg) saturate(1.12);
  transform: translateZ(0);
}

.deco-bag {
  width: 240px;
  height: auto;
  right: 60px;
  bottom: 30px;
  z-index: 2;
}

.mock-card {
  width: 220px;
  height: 320px;
  background: var(--card);
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  padding: 26px 22px;
  transform: translateX(40px) rotate(-6deg) translateY(-200px);
}

.mock-fan {
  display: flex;
  height: 34px;
  margin-bottom: 22px;
}

.mock-fan span {
  width: 10px;
  height: 34px;
  border-radius: 6px;
  margin-left: -4px;
  transform-origin: bottom center;
}
.mock-fan span:nth-child(1) { background: var(--yellow); transform: rotate(-18deg); }
.mock-fan span:nth-child(2) { background: var(--orange); transform: rotate(-9deg); }
.mock-fan span:nth-child(3) { background: var(--pink); }
.mock-fan span:nth-child(4) { background: var(--purple); transform: rotate(9deg); }
.mock-fan span:nth-child(5) { background: var(--teal); transform: rotate(18deg); }

.mock-name { font-size: 14px; font-weight: 700; margin-top: 4px; }
.mock-role { font-size: 12px; color: var(--muted); margin-bottom: 14px; }
.mock-line { font-size: 10.5px; color: var(--muted); line-height: 1.7; }

.mock-tall {
  width: 130px;
  height: 420px;
  background: linear-gradient(160deg, var(--pink), var(--purple) 60%, var(--teal));
  border-radius: 4px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transform: rotate(4deg);
}

.deco-banner {
  width: 240px;
  height: auto;
  display: block;
  transform: rotate(3deg);
}

.mock-clip {
  position: relative;
  width: 70px;
  height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.clip-loop {
  width: 34px;
  height: 78px;
  border: 5px solid #b0b0b8;
  border-bottom: none;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.clip-body {
  width: 62px;
  height: 46px;
  background: linear-gradient(180deg, var(--indigo), #5a49d6);
  border-radius: 8px;
  margin-top: -4px;
  clip-path: polygon(8% 0, 92% 0, 100% 100%, 0% 100%);
  box-shadow: 0 20px 30px rgba(108,92,231,0.35);
}

.mock-box {
  width: 240px;
  height: 150px;
  border-radius: 4px;
  background:
    linear-gradient(115deg, transparent 45%, #fff 46%, #fff 54%, transparent 55%),
    conic-gradient(from 200deg at 30% 40%, var(--yellow), var(--orange), var(--pink), var(--purple), var(--yellow));
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 18px;
  transform: rotate(-3deg);
}

.mock-box span {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.deco-tape {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) rotate(-3deg);
  z-index: 1;
}

.tape-roll {
  width: 420px;
  height: 64px;
  background: repeating-linear-gradient(
    100deg,
    var(--pink) 0 42px,
    var(--orange) 42px 84px,
    var(--yellow) 84px 126px,
    var(--teal) 126px 168px,
    var(--indigo) 168px 210px
  );
  clip-path: polygon(0% 50%, 6% 0%, 94% 0%, 100% 50%, 94% 100%, 6% 100%);
  box-shadow: 0 24px 50px rgba(0,0,0,0.14);
}

/* ---------- Reviews ---------- */

.reviews {
  padding: 0 40px 100px;
  margin-top: 160px;
}

.reviews-inner {
  max-width: 640px;
  margin: 0 auto;
}

.reviews-track {
  position: relative;
  min-height: 190px;
}

.review-card {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 36px 40px;
  border-radius: 22px;
  background: var(--card);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.review-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 1;
}

.review-avatar {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
}

.review-body { min-width: 0; }

.review-top {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.review-name {
  font-size: 20px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-stars {
  font-size: 16px;
  color: var(--yellow);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.review-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Featured in (press logos) ---------- */

.featured {
  padding: 10px 0 20px;
  margin-top: 110px;
  margin-bottom: 40px;
}

.featured-title {
  text-align: center;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 34px;
}

.featured-marquee {
  position: relative;
  overflow: hidden;
}

/* Cheap edge fades (no CSS mask over animating content) */
.featured-marquee::before,
.featured-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}
.featured-marquee::before { left: 0; background: linear-gradient(90deg, #fff, rgba(255,255,255,0)); }
.featured-marquee::after { right: 0; background: linear-gradient(270deg, #fff, rgba(255,255,255,0)); }

.featured-track {
  display: flex;
  width: max-content;
  animation: featured-scroll 42s linear infinite;
  will-change: transform;
}

.featured-track:hover { animation-play-state: paused; }
.featured-track.is-paused { animation-play-state: paused; }

.featured-set {
  display: flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
}

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

@media (prefers-reduced-motion: reduce) {
  .featured-track { animation: none; }
}

.flogo {
  color: #c2c2cc;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.2s ease;
  user-select: none;
}

.flogo:hover { color: #8a8a95; }

.f-telegrafi { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; }

.f-sun { font-size: 32px; font-weight: 800; font-style: italic; font-family: Georgia, "Times New Roman", serif; }
.f-sun em { font-size: 13px; font-style: normal; font-weight: 800; vertical-align: super; letter-spacing: 1px; }

.f-handels { font-size: 18px; font-weight: 500; letter-spacing: 2px; }

.f-express { font-size: 30px; font-weight: 800; letter-spacing: -0.5px; }

.f-wikihow { font-size: 28px; font-weight: 400; }
.f-wikihow strong { font-weight: 800; }

.f-balkan { font-size: 26px; font-weight: 700; font-family: Georgia, "Times New Roman", serif; }

.f-huff { font-size: 26px; font-weight: 800; font-style: italic; letter-spacing: -0.5px; }

.f-vogue { font-size: 24px; font-weight: 600; font-family: Georgia, "Times New Roman", serif; letter-spacing: 1px; }
.f-vogue strong { font-weight: 800; }
.f-vogue em {
  display: block;
  font-size: 9px;
  font-style: normal;
  letter-spacing: 3px;
  text-align: center;
  margin-top: 2px;
}

.f-albinfo { font-size: 26px; font-weight: 400; }

@media (max-width: 900px) {
  .featured { margin-top: 70px; }
  .featured-set { gap: 48px; padding-right: 48px; }
  .featured-track { animation-duration: 32s; }
}

/* ---------- Pillars (3-up feature row) ---------- */

.pillars {
  padding: 0 40px;
  margin-top: 80px;
}

.pillars-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
}

.pillar-icon {
  color: var(--ink);
  margin-bottom: 18px;
}

.pillar h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 340px;
}

@media (max-width: 820px) {
  .pillars-inner { grid-template-columns: 1fr; gap: 34px; }
  .pillars { padding: 0 24px; margin-top: 60px; }
  .pillar p { max-width: none; }
}

/* ---------- Catalog (what we print) ---------- */

.catalog {
  padding: 0 40px;
  margin-top: 120px;
}

.catalog-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.catalog-head { text-align: center; margin-bottom: 34px; }

.catalog-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
}

.catalog-title { font-size: 40px; font-weight: 800; line-height: 1.1; }

.catalog-sub { margin-top: 14px; font-size: 17px; color: var(--muted); }

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.catalog-tab {
  padding: 10px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.catalog-tab:hover { color: var(--ink); border-color: var(--ink); }

.catalog-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.pcard {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 44px rgba(0,0,0,0.12);
}

.pcard.is-hidden { display: none; }

.pcard-visual {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcard-emoji { font-size: 54px; line-height: 1; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18)); }

.pv-apparel { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.pv-advertising { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.pv-business { background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.pv-signage { background: linear-gradient(135deg, var(--teal), var(--indigo)); }

.pcard-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px;
}

.pcard-body h3 { font-size: 19px; font-weight: 700; margin-bottom: 8px; }

.pcard-body p {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--muted);
  flex: 1;
}

.pcard-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.pcard-meta { font-size: 12.5px; color: var(--muted); }

.pcard-price { font-size: 16px; font-weight: 800; color: var(--ink); white-space: nowrap; }

.catalog-cta { text-align: center; margin-top: 44px; }

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

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

@media (max-width: 540px) {
  .catalog { padding: 0 20px; margin-top: 80px; }
  .catalog-title { font-size: 30px; }
  .catalog-grid { grid-template-columns: 1fr; }
  .catalog-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; scrollbar-width: none; }
  .catalog-tabs::-webkit-scrollbar { display: none; }
  .catalog-tab { flex-shrink: 0; }
}

/* ---------- Video CTA ---------- */

.videocta {
  padding: 0 40px;
  margin-top: 120px;
}

.videocta-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.videos-head { margin-bottom: 34px; }

.videos-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
}

.videos-title { font-size: 40px; font-weight: 800; line-height: 1.1; }
.videos-sub { margin-top: 14px; font-size: 17px; color: var(--muted); }

/* Video cards reuse the sticky-stacking effect (.stack / .stack-card).
   Higher specificity so these win over the base .stack / .stack-card rules
   defined later in the file. */
.stack.vstack { gap: 64px; }

.vstack-card.stack-card {
  min-height: 500px;
  padding: 60px;
}

.vstack-play {
  flex-shrink: 0;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.94);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding-left: 4px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.3);
  transition: transform 0.2s ease, background 0.2s ease;
}
.vstack-play:hover { transform: scale(1.08); background: #fff; }

.vm-1 { background: linear-gradient(135deg, #2a2350, #1b1830 55%, #3a2b52); }
.vm-2 { background: linear-gradient(135deg, var(--indigo), #4a3aa8 60%, #2a2350); }
.vm-3 { background: linear-gradient(135deg, #3a1f4a, #6a2b7a 55%, #2a2350); }
.vm-4 { background: linear-gradient(135deg, #4a2540, var(--purple) 70%, #2a1b3a); }
.vm-5 { background: linear-gradient(135deg, #1b2a3a, #2b4a6a 55%, #1b1830); }

@media (max-width: 700px) {
  .videocta { padding: 0 20px; margin-top: 80px; }
  .videos-title { font-size: 30px; }
  .vstack-play { width: 64px; height: 64px; }
}

/* ---------- Work / stacking cards ---------- */

.work {
  padding: 0 40px;
  margin-top: 140px;
}

.work-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.work-head {
  text-align: center;
  margin-bottom: 40px;
}

.work-eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 10px;
}

.work-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.1;
}

.work-sub {
  margin-top: 14px;
  font-size: 17px;
  color: var(--muted);
}

/* Each card sticks near the top; the next one scrolls up and covers it. */
.stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 20vh;
}

.stack-card {
  position: sticky;
  top: 90px;
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 320px;
  padding: 48px;
  border-radius: 28px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}

.stack-text { flex: 1; min-width: 0; }

.stack-num {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  opacity: 0.7;
  margin-bottom: 14px;
}

.stack-text h3 {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 14px;
}

.stack-text p {
  font-size: 18px;
  line-height: 1.5;
  max-width: 420px;
  opacity: 0.92;
}

.stack-visual {
  flex-shrink: 0;
  width: 300px;
  height: 220px;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-visual span {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.9);
}

.stack-card.g1 { background: linear-gradient(135deg, var(--pink), var(--purple)); }
.stack-card.g2 { background: linear-gradient(135deg, var(--orange), var(--pink)); }
.stack-card.g3 { background: linear-gradient(135deg, var(--indigo), var(--purple)); }
.stack-card.g4 { background: linear-gradient(135deg, var(--teal), var(--indigo)); }
.stack-card.g5 { background: linear-gradient(135deg, var(--yellow), var(--orange)); }

/* ---------- Responsive ---------- */

@media (max-width: 1200px) {
  /* Stack the hero mockups in a compact centered column below the text.
     Product PNGs are transparent, so slight overlap looks clean (no white box). */
  .hero {
    flex-direction: column;
    align-items: center;
    min-height: auto;
    padding: 20px 20px 30px;
    gap: 0;
  }
  .hero-content { order: -1; margin-bottom: 6px; }

  .deco {
    position: static;
    display: block;
    left: auto;
    right: auto;
    bottom: auto;
    margin: -18px auto;
    transform: none;
  }

  .mock-card { display: none; }

  .deco-banner { width: 165px; margin: -18px auto; transform: none; }
  .bizcard-wrap { width: auto; overflow: visible; margin: 0 auto; }
  .deco-bizcard { width: 280px; transform: none; }
  .deco-pen { width: 300px; max-width: 84%; margin: -26px auto; }
  .deco-bag { width: 205px; margin: -22px auto; }
}

@media (max-width: 900px) {
  .site-header { padding: 18px 20px; }

  .nav-toggle { display: flex; }
  .nav-toggle.is-active .icon-menu { display: none; }
  .nav-toggle.is-active .icon-close { display: block; }

  /* Keep logo + toggle above the overlay (nav is inside the header) */
  .site-header .logo,
  .site-header .header-actions { position: relative; z-index: 12; }

  /* Dimmed backdrop behind the drop-down menu card */
  .nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 20, 0.5);
    z-index: 8;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s;
  }
  .nav-backdrop.show { opacity: 1; visibility: visible; }

  /* Drop-down menu card — cut from the top, not full screen */
  .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    background: var(--card);
    padding: 90px 26px 28px;
    border-radius: 0 0 26px 26px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.18);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-16px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding: 18px 4px;
    font-size: 21px;
    font-weight: 600;
    border-bottom: 1px solid var(--border);
  }

  .main-nav a:last-of-type { border-bottom: none; }
  .main-nav a.active { color: var(--indigo); }
  .main-nav a:hover { opacity: 1; }

  /* Language row inside the menu card */
  .nav-lang {
    display: flex;
    gap: 10px;
    margin-top: 22px;
  }
  .nav-lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1.5px solid var(--border);
    border-radius: 999px;
    background: transparent;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
  }
  .nav-lang-btn svg { width: 20px; height: 20px; border-radius: 3px; }
  .nav-lang-btn.is-active { border-color: var(--indigo); color: var(--indigo); }

  .header-actions .btn-outline { display: none; }

  .hero-content h1 { font-size: 34px; }
  .tape-roll { width: 320px; height: 90px; }

  .reviews { padding: 0 20px 60px; margin-top: 80px; }
  .reviews-track { min-height: 260px; }
  .review-card { flex-direction: column; text-align: center; gap: 12px; padding: 28px 22px; }

  /* Compact language switcher stays in the header for quick access */
  .lang-switch { display: block; }
  .lang-current { height: 38px; padding: 0 12px 0 10px; gap: 6px; }
  .header-actions { gap: 12px; }
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: 72px 40px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.page-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 14px;
}

.page-hero h1 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.page-hero p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */

.site-footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding: 56px 40px 0;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
  max-width: 240px;
}

.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 4px;
}

.footer-col a, .footer-col span {
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.85;
}

.footer-col a:hover { opacity: 1; }

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

@media (max-width: 700px) {
  .site-footer { padding: 48px 20px 0; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 40px; }
  .page-hero { padding: 56px 20px 32px; }
  .page-hero h1 { font-size: 32px; }
}

/* ---------- Shared section wrapper ---------- */

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 40px 96px;
}

.section-head {
  max-width: 620px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head h2 {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* ---------- Stats (About) ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 96px;
}

.stat-item {
  text-align: center;
  padding: 28px 16px;
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
  letter-spacing: -0.02em;
}

.stat-label {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Story split (About) ---------- */

.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 96px;
}

.story-visual {
  height: 340px;
  border-radius: 24px;
  background:
    linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.5) 46%, rgba(255,255,255,0.5) 54%, transparent 60%),
    conic-gradient(from 210deg at 30% 35%, var(--yellow), var(--orange), var(--pink), var(--purple), var(--indigo), var(--teal), var(--yellow));
  box-shadow: 0 30px 60px rgba(0,0,0,0.14);
}

.story-text h2 {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.story-text p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ---------- Feature / value / service cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 32px 26px;
  border-radius: 20px;
  background: var(--card);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ---------- Preparation guidelines ---------- */

.prep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}

.prep-card {
  display: flex;
  gap: 18px;
  padding: 26px;
  border-radius: 18px;
  background: var(--card);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}

.prep-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.prep-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.prep-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--muted);
}

.accordion {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion details {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
}

.accordion summary {
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.accordion summary::after {
  content: "+";
  font-size: 20px;
  font-weight: 400;
  color: var(--muted);
  margin-left: 16px;
  flex-shrink: 0;
}

.accordion details[open] summary::after { content: "−"; }

.accordion p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

.prep-cta {
  text-align: center;
  margin-top: 56px;
}

/* ---------- Contact ---------- */

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--card);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  border: 1.5px solid rgba(161,161,161,0.32);
  border-radius: 12px;
  padding: 12px 14px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--indigo);
}

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

.contact-form .btn-primary {
  border: none;
  align-self: flex-start;
  margin-top: 4px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(47,214,192,0.12);
  color: #0d8f7c;
  font-size: 14px;
  font-weight: 600;
}

.form-success.show { display: flex; }

.contact-info-card {
  background: var(--card);
  border-radius: 22px;
  padding: 36px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-info-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
}

.contact-info-row h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-row p, .contact-info-row a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .story-split { grid-template-columns: 1fr; gap: 32px; }
  .story-visual { height: 220px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .prep-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .section { padding: 0 20px 64px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form, .contact-info-card { padding: 24px; }
}
