/* Khayati Landing — Product Stage on brand identity
   Delft Blue #283756 · Earth Yellow #E8B472 · Floral White #FBF7EF · El Messiri */

:root {
  --delft: #283756;
  --delft-deep: #1b253b;
  --delft-ink: #141c2c;
  --gold: #E8B472;
  --gold-soft: #f0c998;
  --floral: #FBF7EF;
  --floral-soft: #f5efe3;
  --text-muted: rgba(40, 55, 86, 0.62);
  --text-on-dark: rgba(251, 247, 239, 0.78);
  --line: rgba(40, 55, 86, 0.12);
  --line-dark: rgba(251, 247, 239, 0.12);
  --shadow-soft: 0 18px 50px rgba(40, 55, 86, 0.12);
  --radius: 18px;
  --radius-lg: 28px;
  --nav-h: 72px;
  --font: "El Messiri", "Segoe UI", Tahoma, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--floral);
  color: var(--delft);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5 { font-family: var(--font); font-weight: 700; margin: 0; }

.container-box {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

/* ========== Nav ========== */
.site-nav {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}

.site-nav .nav-inner {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav.is-top {
  background: transparent;
}

.site-nav.is-scrolled {
  background: rgba(40, 55, 86, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(232, 180, 114, 0.28);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  height: 42px;
}

.brand-logo img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 18px;
}

.nav-links a {
  color: rgba(251, 247, 239, 0.78);
  font-weight: 700;
  font-size: .95rem;
  transition: color .2s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

@media (min-width: 1100px) {
  .nav-links { display: flex; }
  .nav-mobile-panel { display: none !important; }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(251, 247, 239, 0.22);
  border-radius: 12px;
  background: rgba(251, 247, 239, 0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--floral);
  transition: transform .25s ease, opacity .2s ease;
}

.site-nav.is-menu-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.site-nav.is-menu-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
.site-nav.is-menu-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links-wa {
  display: none;
}

.nav-mobile-panel {
  display: none;
}

.nav-actions .btn-nav-ghost i {
  margin-inline-end: 6px;
}

.lang-btn {
  background: rgba(251, 247, 239, 0.08);
  border: 1px solid rgba(251, 247, 239, 0.18);
  color: var(--floral);
  border-radius: 12px;
  padding: 8px 14px;
  font-weight: 700;
  font-size: .92rem;
  font-family: var(--font);
}

.lang-btn:hover,
.lang-btn:focus {
  background: rgba(232, 180, 114, 0.16);
  color: var(--gold);
  border-color: rgba(232, 180, 114, 0.35);
}

.dropdown-menu {
  border: none;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-family: var(--font);
  overflow: hidden;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: .95rem;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-nav-ghost {
  color: var(--floral);
  border: 1px solid rgba(251, 247, 239, 0.28);
  background: transparent;
}

.btn-nav-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-nav-solid {
  background: var(--gold);
  color: var(--delft);
  border: 1px solid transparent;
}

.btn-nav-solid:hover {
  background: var(--gold-soft);
  transform: translateY(-1px);
}

/* ========== Hero Stage — cinematic atelier ========== */
.hero-stage {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--delft-ink);
  color: var(--floral);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: calc(var(--nav-h) + 20px) 0 56px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: var(--delft-ink);
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  display: block;
  opacity: 0;
  transition: opacity .55s ease;
  will-change: transform, opacity;
}

.hero-bg-img.is-active {
  opacity: 1;
  z-index: 1;
  animation: heroKen 20s ease-out forwards;
}

@keyframes heroKen {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: url("../assets/brand/pattern/fill-gold.svg");
  background-size: 420px auto;
  background-repeat: repeat;
  opacity: 0.028;
  pointer-events: none;
  mix-blend-mode: soft-light;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg,
      rgba(20, 28, 44, 0.22) 0%,
      rgba(20, 28, 44, 0.12) 28%,
      rgba(20, 28, 44, 0.42) 58%,
      rgba(20, 28, 44, 0.88) 100%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(880px, calc(100% - 36px));
  margin: 0 auto;
  padding-bottom: 8px;
  animation: heroRise 1s ease both;
}

.hero-brand-mark {
  width: min(300px, 64vw);
  margin: 0 auto 20px;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.35));
}

.hero-brand-mark img {
  width: 100%;
  height: auto;
}

.hero-shop-tabs {
  display: inline-flex;
  align-items: stretch;
  gap: 6px;
  margin: 0 auto 26px;
  padding: 6px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  background: rgba(20, 28, 44, 0.38);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 28px rgba(10, 14, 22, 0.28);
}

.hero-shop-tab {
  min-height: 48px;
  min-width: 0;
  padding: 8px 18px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(251, 247, 239, 0.72);
  font-family: var(--font);
  font-weight: 800;
  font-size: .98rem;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: color .25s ease, background .25s ease, transform .25s ease, box-shadow .25s ease;
  -webkit-tap-highlight-color: transparent;
}

.hero-shop-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: rgba(251, 247, 239, 0.1);
  color: inherit;
  font-size: .95rem;
  flex: 0 0 auto;
  transition: background .25s ease, color .25s ease;
}

.hero-shop-label {
  white-space: nowrap;
}

.hero-shop-tab.is-active {
  background: var(--floral);
  color: var(--delft);
  box-shadow: 0 8px 18px rgba(20, 28, 44, 0.22);
}

.hero-shop-tab.is-active .hero-shop-icon {
  background: rgba(232, 180, 114, 0.35);
  color: var(--delft);
}

.hero-shop-tab:not(.is-active):hover {
  color: #fff;
  background: rgba(251, 247, 239, 0.08);
}

.hero-copy h1 {
  font-size: clamp(1.85rem, 5.2vw, 3.55rem);
  line-height: 1.22;
  margin-bottom: 12px;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  letter-spacing: -0.01em;
}

.hero-copy h1 span {
  color: var(--gold);
  display: inline;
}

.hero-copy p,
.hero-copy .hero-sub {
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  line-height: 1.65;
  color: rgba(251, 247, 239, 0.82);
  margin: 0 auto;
  max-width: 520px;
  font-weight: 500;
  transition: opacity .25s ease;
}

.hero-scroll {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 52px;
  margin-top: 28px;
  color: rgba(251, 247, 239, 0.55);
  transition: color .2s ease;
}

.hero-scroll:hover { color: var(--gold); }

.hero-scroll span {
  width: 18px;
  height: 28px;
  border: 1.5px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.hero-scroll span::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: currentColor;
  animation: heroScrollDot 1.6s ease-in-out infinite;
}

@keyframes heroScrollDot {
  0%, 100% { opacity: .35; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(8px); }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--delft) !important;
  font-weight: 800;
  font-size: 1.05rem;
  border: none;
  box-shadow: 0 14px 34px rgba(232, 180, 114, 0.28);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-main:hover {
  transform: translateY(-2px);
  background: var(--gold-soft);
  box-shadow: 0 18px 40px rgba(232, 180, 114, 0.36);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid rgba(251, 247, 239, 0.28);
  color: var(--floral) !important;
  font-weight: 700;
  background: rgba(251, 247, 239, 0.04);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold) !important;
  background: rgba(232, 180, 114, 0.08);
}

.btn-demo-soft {
  border-style: dashed;
  opacity: .95;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 8px;
}

.site-footer .btn-secondary {
  border-color: rgba(251, 247, 239, 0.28);
  color: var(--floral) !important;
}

.hero-stage-visual {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0 16px;
  animation: heroRise 1.1s .12s ease both;
}

.hero-stage-frame {
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  border: 1px solid rgba(232, 180, 114, 0.22);
  border-bottom: none;
  box-shadow: 0 -10px 60px rgba(0, 0, 0, 0.35);
  background: #101826;
  aspect-ratio: 16 / 9;
  max-height: min(48vh, 520px);
}

.hero-stage-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.96;
}

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

/* ========== Sections ========== */
.sections-wrap {
  position: relative;
  padding: 72px 0 40px;
  background:
    linear-gradient(180deg, var(--floral) 0%, var(--floral-soft) 100%);
}

.sections-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-delft.svg");
  background-size: 480px auto;
  opacity: 0.035;
  pointer-events: none;
}

.floating-section {
  position: relative;
  z-index: 1;
  padding: 22px 0;
}

.floating-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}

.floating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(40, 55, 86, 0.14);
}

.tag-modern {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(232, 180, 114, 0.16);
  color: #b8843f;
  border-radius: 999px;
  font-size: .86rem;
  font-weight: 800;
  letter-spacing: .02em;
}

.title-modern {
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--delft);
  line-height: 1.3;
}

.desc-modern {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 500;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}

.bento-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(40, 55, 86, 0.04);
  border: 1px solid transparent;
  transition: background .2s ease, border-color .2s ease;
}

.bento-item:hover {
  background: rgba(232, 180, 114, 0.1);
  border-color: rgba(232, 180, 114, 0.22);
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--delft);
  color: var(--gold);
  flex-shrink: 0;
  font-size: 1.05rem;
}

.bento-text h5 {
  font-size: 1.02rem;
  margin-bottom: 4px;
  color: var(--delft);
}

.bento-text p {
  font-size: .88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}

.mac-mockup {
  background: var(--floral-soft);
  padding: 12px;
  border-radius: 20px;
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: border-color .2s ease;
}

.mac-mockup:hover { border-color: rgba(232, 180, 114, 0.55); }

.mac-mockup img {
  border-radius: 12px;
  width: 100%;
  border: 1px solid rgba(40, 55, 86, 0.08);
}

.mac-slider { padding: 10px 0; position: relative; }

.modern-slick .slick-item {
  padding: 0 10px;
  opacity: .5;
  transition: .3s;
  transform: scale(.92);
}

.modern-slick .slick-center {
  opacity: 1;
  transform: scale(1);
}

.slick-dots { display: none !important; }

.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 42px;
  height: 42px;
  padding: 0;
  transform: translateY(-50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: var(--delft);
  border-radius: 12px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(40, 55, 86, 0.22);
  transition: .25s;
}

.slick-prev:hover,
.slick-next:hover { background: var(--gold); }

.slick-prev:before,
.slick-next:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ========== Pricing ========== */
.pricing-section {
  position: relative;
  padding: 90px 0 110px;
  background:
    linear-gradient(180deg, var(--floral-soft) 0%, #ebe4d6 100%);
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/motif-delft.svg");
  background-size: 72px;
  opacity: 0.04;
  pointer-events: none;
}

.currency-selector-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.custom-select-modern {
  background-color: #fff;
  color: var(--delft);
  border: 1.5px solid rgba(232, 180, 114, 0.55);
  border-radius: 12px;
  padding: 8px 36px 8px 16px;
  font-weight: 700;
  font-family: var(--font);
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8B472' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

html[dir="rtl"] .custom-select-modern {
  padding: 8px 16px 8px 36px;
  background-position: left 12px center;
}

.custom-select-modern:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(232, 180, 114, 0.18);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 40px;
  direction: ltr;
}

.toggle-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
}

.toggle-label.active { color: var(--delft); }

.toggle-switch {
  position: relative;
  width: 58px;
  height: 30px;
  background: var(--delft);
  border-radius: 20px;
  cursor: pointer;
}

.toggle-circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: var(--gold);
  border-radius: 50%;
  transition: .25s;
}

.toggle-switch.annual-active .toggle-circle { left: calc(100% - 27px); }

.save-badge {
  background: #2f6b4f;
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
  margin-inline-start: 8px;
}

.pricing-cards-row { align-items: stretch !important; }
.pricing-col { display: flex; }
.pricing-col-popular { z-index: 2; }

.pricing-card {
  background: #fff;
  border-radius: 22px;
  padding: 34px 26px 30px;
  box-shadow: 0 12px 32px rgba(40, 55, 86, 0.07);
  border: 1px solid var(--line);
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(40, 55, 86, 0.12);
}

.pricing-card.popular {
  background: linear-gradient(165deg, #32466d 0%, var(--delft) 55%, var(--delft-deep) 100%);
  color: #fff;
  border: 1px solid rgba(232, 180, 114, 0.4);
  box-shadow: 0 24px 56px rgba(40, 55, 86, 0.24);
  padding-top: 44px;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #d4a05e);
  color: var(--delft);
  padding: 7px 20px;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 900;
  white-space: nowrap;
}

.pricing-title { font-size: 1.5rem; margin-bottom: 8px; }
.pricing-desc {
  font-size: .92rem;
  color: var(--text-muted);
  min-height: 42px;
  line-height: 1.55;
}
.pricing-card.popular .pricing-desc { color: rgba(255, 255, 255, 0.72); }

.pricing-price-wrap {
  padding: 20px 0 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(40, 55, 86, 0.08);
}
.pricing-card.popular .pricing-price-wrap { border-bottom-color: rgba(255, 255, 255, 0.12); }

.pricing-price {
  font-size: 2.6rem;
  font-weight: 800;
  display: flex;
  align-items: baseline;
  gap: 5px;
  direction: ltr;
}

.pricing-price span.currency {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold);
}

.pricing-price span.period {
  font-size: .92rem;
  font-weight: 500;
  opacity: .65;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex-grow: 1;
}

.pricing-features-dense {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
}

.pricing-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(40, 55, 86, 0.06);
  font-size: .88rem;
  line-height: 1.45;
  font-weight: 600;
}

.pricing-features-dense .pricing-feature-item:last-child,
.pricing-features-dense .pricing-feature-item:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.pricing-features:not(.pricing-features-dense) .pricing-feature-item:last-child { border-bottom: none; }
.pricing-card.popular .pricing-feature-item { border-bottom-color: rgba(255, 255, 255, 0.08); }

.pricing-feature-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 114, 0.18);
  color: #c48a3a;
  font-size: .62rem;
}

.pricing-card.popular .pricing-feature-icon {
  background: rgba(232, 180, 114, 0.28);
  color: var(--gold);
}

.btn-pricing {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1.02rem;
  text-align: center;
  transition: .25s;
  display: block;
  margin-top: auto;
}

.btn-light-pricing {
  background: rgba(232, 180, 114, 0.12);
  color: #b8843f;
  border: 1px solid rgba(232, 180, 114, 0.35);
}

.btn-light-pricing:hover {
  background: var(--gold);
  color: var(--delft) !important;
}

.btn-dark-pricing {
  background: var(--gold);
  color: var(--delft);
  border: none;
}

.btn-dark-pricing:hover {
  background: #fff;
  color: var(--delft);
  transform: translateY(-2px);
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: var(--delft);
  color: #fff;
  padding: 72px 0 36px;
  overflow: hidden;
  text-align: center;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-gold.svg");
  background-size: 380px auto;
  opacity: 0.07;
  pointer-events: none;
}

.site-footer .container-box { position: relative; z-index: 1; }

.footer-logo {
  width: min(220px, 55vw);
  margin: 0 auto 22px;
}

.site-footer h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 12px;
}

.site-footer p {
  color: rgba(251, 247, 239, 0.65);
  margin-bottom: 28px;
}

.footer-copy {
  margin-top: 40px;
  font-size: .9rem;
  color: rgba(251, 247, 239, 0.42);
}

/* ========== Floating contact ========== */
.floating-contact {
  position: fixed;
  bottom: 28px;
  z-index: 1000;
  display: flex;
  align-items: center;
  background: var(--delft);
  color: var(--gold);
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 12px 30px rgba(40, 55, 86, 0.35);
  transition: width .3s ease, background .25s ease, color .25s ease;
  overflow: hidden;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(232, 180, 114, 0.25);
}

.floating-contact i {
  font-size: 1.35rem;
  min-width: 32px;
  text-align: center;
}

.floating-contact .contact-text {
  font-weight: 700;
  font-size: 1rem;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  transition: all .25s ease;
}

.floating-contact:hover {
  width: 170px;
  background: var(--gold);
  color: var(--delft);
}

.floating-contact:hover .contact-text {
  opacity: 1;
  max-width: 140px;
  margin-inline-start: 8px;
}

.floating-whatsapp {
  background: #1f6b4a;
  color: #f3fff8;
  border-color: rgba(232, 180, 114, 0.35);
}

.floating-whatsapp:hover {
  background: #25d366;
  color: #0b2a1a;
}

/* ========== Responsive ========== */
@media (min-width: 992px) {
  #customer .img-col,
  #tailor .img-col { width: 40%; flex: 0 0 auto; }
  #customer .text-col,
  #tailor .text-col { width: 60%; flex: 0 0 auto; }
  .pricing-col-popular .pricing-card {
    margin-top: -14px;
    margin-bottom: -14px;
    min-height: calc(100% + 28px);
  }
}

@media (max-width: 991px) {
  .pricing-features-dense { grid-template-columns: 1fr; }
  .pricing-col-popular { order: -1; }
  .floating-card .row { flex-direction: column; text-align: center; }
  .floating-card .col-lg-6 { padding: 28px !important; }
  .bento-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  .container-box { width: calc(100% - 28px); }
  .btn-nav { padding: 0 12px; min-height: 38px; font-size: .85rem; }
  .brand-logo img { height: 34px; }
  .nav-actions .btn-nav-ghost { display: none; }
  .hero-stage { padding-bottom: 40px; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn-main,
  .hero-cta .btn-secondary { width: 100%; }
  .hero-shop-tabs { width: min(100%, 360px); }
  .hero-shop-tab { flex: 1; padding: 8px 12px; gap: 8px; }
  .floating-contact {
    bottom: 18px;
    width: 52px;
    height: 52px;
  }
}

/* ========== Journey videos (uploaded) ========== */
.journey-videos {
  margin: 0 auto 48px;
  max-width: 1040px;
}
.journey-video-stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #121826;
  border: 1px solid rgba(232, 180, 114, 0.3);
  box-shadow: 0 32px 90px rgba(20, 28, 44, 0.35);
  aspect-ratio: 16 / 9;
}
.journey-video-player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #0b1018;
}
.journey-video-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.journey-video-thumb {
  flex: 1 1 140px;
  min-width: 120px;
  max-width: 220px;
  border: 1px solid rgba(40, 55, 86, 0.12);
  background: #fff;
  color: var(--navy, #283756);
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  text-align: start;
  transition: border-color .2s, transform .2s, background .2s;
}
.journey-video-thumb:hover {
  border-color: rgba(232, 180, 114, 0.7);
  transform: translateY(-1px);
}
.journey-video-thumb.is-active {
  background: #283756;
  color: #FBF7EF;
  border-color: #283756;
}
.journey-video-thumb-play {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 180, 114, 0.25);
  color: #E8B472;
  flex-shrink: 0;
  font-size: .75rem;
}
.journey-video-thumb.is-active .journey-video-thumb-play {
  background: #E8B472;
  color: #283756;
}
.journey-video-thumb-label {
  font-size: .9rem;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .journey-video-stage { border-radius: 18px; }
  .journey-video-thumb { max-width: none; flex: 1 1 calc(50% - 10px); }
}

/* ========== Journey motion film (character performance) ========== */
.journey-film-wrap {
  margin: 0 auto 48px;
  max-width: 1040px;
}

.journey-film {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: min(58vw, 520px);
  background: #121826;
  border: 1px solid rgba(232, 180, 114, 0.3);
  box-shadow: 0 32px 90px rgba(20, 28, 44, 0.35);
  color: var(--floral);
  outline: none;
  aspect-ratio: 16 / 9;
}

.journey-film:focus-visible {
  box-shadow: 0 0 0 4px rgba(232, 180, 114, 0.35), 0 32px 90px rgba(20, 28, 44, 0.35);
}

.jf-stage-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-gold.svg");
  background-size: 340px auto;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

.jf-digital-badge {
  position: absolute;
  z-index: 5;
  inset-inline-end: 18px;
  top: 16px;
  display: flex;
  gap: 5px;
  pointer-events: none;
}
.jf-digital-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: .35;
}
.journey-film.is-playing .jf-digital-badge span {
  animation: digiPulse 1.2s ease-in-out infinite;
}
.journey-film.is-playing .jf-digital-badge span:nth-child(2) { animation-delay: .2s; }
.journey-film.is-playing .jf-digital-badge span:nth-child(3) { animation-delay: .4s; }

.jf-act {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease;
  z-index: 1;
}

.jf-act.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 2;
}

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

/* ---- women's atelier + digital system motion ---- */
.journey-film.is-playing .jf-act.is-active .arm-measure {
  transform-origin: 210px 235px;
  animation: measureSwing 1.1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .tape {
  animation: tapeStretch 1.1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .scan {
  animation: scanMove 1.4s linear infinite;
}
.journey-film.is-playing .jf-act.is-active .pulse-dot {
  animation: digiPulse 1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .data-bits .bit {
  animation: bitFloat 1.8s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .data-bits .b2 { animation-delay: .25s; }
.journey-film.is-playing .jf-act.is-active .data-bits .b3 { animation-delay: .5s; }
.journey-film.is-playing .jf-act.is-active .char .hair {
  animation: hairSway 2.4s ease-in-out infinite;
}

.journey-film.is-playing .jf-act.is-active .tablet-hand {
  animation: tabletTap 1.3s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .assign-flash {
  animation: assignFlash 1.1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .order.o1 {
  animation: flyOrder1 2s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .order.o2 {
  animation: flyOrder2 2s .15s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .order.o3 {
  animation: flyOrder3 2s .3s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .flow-line {
  stroke-dashoffset: 0;
  animation: dashFlow 1.2s linear infinite;
}
.journey-film.is-playing .jf-act.is-active .w1 {
  animation: workerBounce1 1.4s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .w2 {
  animation: workerBounce2 1.4s .15s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .w3 {
  animation: workerBounce3 1.4s .3s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .phones-mini .ph {
  animation: phoneRise 1.5s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .phones-mini .p2 { animation-delay: .15s; }
.journey-film.is-playing .jf-act.is-active .phones-mini .p3 { animation-delay: .3s; }

.journey-film.is-playing .jf-act.is-active .phone-buzz {
  transform-origin: 252px 189px;
  animation: phoneBuzz .4s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .notif {
  animation: notifPulse 1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .needle {
  animation: needleSew .28s linear infinite;
}
.journey-film.is-playing .jf-act.is-active .fabric {
  animation: fabricFeed 1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .arm-sew {
  transform-origin: 418px 235px;
  animation: sewArm 1s ease-in-out infinite;
}

.journey-film.is-playing .jf-act.is-active .tr.t3 {
  animation: trackPulse 1s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .track-fill {
  animation: trackGrow 3.8s ease forwards;
}
.journey-film.is-playing .jf-act.is-active .client-sit {
  animation: sitBob 2.2s ease-in-out infinite;
}

.journey-film.is-playing .jf-act.is-active .bag {
  animation: handBag 1.15s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .check-pop {
  transform-origin: 650px 140px;
  animation: checkPop 1.8s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .client-del {
  animation: reachIn 1.15s ease-in-out infinite;
}
.journey-film.is-playing .jf-act.is-active .notify-mini {
  animation: phoneBuzz .55s ease-in-out infinite;
}

.journey-film.is-playing .jf-act.is-active .kpi.k1 { animation: kpiIn .6s ease both; }
.journey-film.is-playing .jf-act.is-active .kpi.k2 { animation: kpiIn .6s .12s ease both; }
.journey-film.is-playing .jf-act.is-active .kpi.k3 { animation: kpiIn .6s .24s ease both; }
.journey-film.is-playing .jf-act.is-active .bars .b1 { animation: barUp .7s .1s ease both; }
.journey-film.is-playing .jf-act.is-active .bars .b2 { animation: barUp .7s .2s ease both; }
.journey-film.is-playing .jf-act.is-active .bars .b3 { animation: barUp .7s .3s ease both; }
.journey-film.is-playing .jf-act.is-active .bars .b4 { animation: barUp .7s .4s ease both; }
.journey-film.is-playing .jf-act.is-active .bars .b5 { animation: barUp .7s .5s ease both; }

.orders .order { transform-box: fill-box; transform-origin: center; }
.order.o1 { transform: translate(210px, 220px); }
.order.o2 { transform: translate(210px, 255px); }
.order.o3 { transform: translate(210px, 290px); }

@keyframes measureSwing {
  0%, 100% { transform: rotate(-8deg); }
  50% { transform: rotate(12deg); }
}
@keyframes tapeStretch {
  0%, 100% { transform: scaleX(1); }
  50% { transform: scaleX(1.25); }
}
@keyframes scanMove {
  0% { transform: translateY(0); opacity: .4; }
  50% { opacity: 1; }
  100% { transform: translateY(28px); opacity: .4; }
}
@keyframes digiPulse {
  0%, 100% { opacity: .3; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes bitFloat {
  0%, 100% { opacity: .25; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-14px); }
}
@keyframes hairSway {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(1.5px); }
}
@keyframes tabletTap {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(3px) rotate(-2deg); }
  70% { transform: translateY(-1px) rotate(1deg); }
}
@keyframes assignFlash {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}
@keyframes flyOrder1 {
  0%, 100% { transform: translate(210px, 220px) rotate(-2deg); }
  55% { transform: translate(460px, 235px) rotate(4deg); }
}
@keyframes flyOrder2 {
  0%, 100% { transform: translate(210px, 255px) rotate(2deg); }
  55% { transform: translate(555px, 235px) rotate(-3deg); }
}
@keyframes flyOrder3 {
  0%, 100% { transform: translate(210px, 290px); }
  55% { transform: translate(650px, 235px) rotate(5deg); }
}
@keyframes dashFlow { to { stroke-dashoffset: -28; } }
@keyframes workerBounce1 {
  0%, 100% { transform: translate(480px, 0); }
  50% { transform: translate(480px, -7px); }
}
@keyframes workerBounce2 {
  0%, 100% { transform: translate(575px, 0); }
  50% { transform: translate(575px, -7px); }
}
@keyframes workerBounce3 {
  0%, 100% { transform: translate(670px, 0); }
  50% { transform: translate(670px, -7px); }
}
@keyframes phoneRise {
  0%, 100% { opacity: .45; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(-8px); }
}
@keyframes phoneBuzz {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-4deg); }
  75% { transform: rotate(4deg); }
}
@keyframes notifPulse {
  0%, 100% { opacity: .4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.35); }
}
@keyframes needleSew {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(7px); }
}
@keyframes fabricFeed {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-16px); }
}
@keyframes sewArm {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(8deg); }
}
@keyframes trackPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; fill: #E8B472; }
}
@keyframes trackGrow {
  from { width: 18px; }
  to { width: 48px; }
}
@keyframes sitBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes handBag {
  0%, 100% { transform: translateX(0) rotate(-4deg); }
  50% { transform: translateX(45px) rotate(6deg); }
}
@keyframes reachIn {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-18px); }
}
@keyframes checkPop {
  0%, 30% { opacity: 0; transform: scale(.3); }
  55%, 75% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(.85); }
}
@keyframes kpiIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: none; }
}
@keyframes barUp {
  from { transform: scaleY(0.2); transform-origin: bottom; opacity: .3; }
  to { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
}

.jf-caption-cinema {
  position: absolute;
  z-index: 6;
  inset-inline-start: 4%;
  bottom: 16%;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(12, 16, 24, 0.62);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(232, 180, 114, 0.25);
  max-width: min(440px, 70%);
  pointer-events: none;
}

.jf-caption-cinema.is-active {
  display: flex;
  animation: captionIn .45s ease both;
}

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

.jf-stepno {
  flex-shrink: 0;
  width: 36px; height: 36px; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--gold); color: var(--delft);
  font-weight: 800; font-size: .9rem;
}

.jf-caption-cinema strong {
  display: block; font-size: 1.08rem; color: #fff; line-height: 1.3;
}
.jf-caption-cinema em {
  display: block; font-style: normal; font-size: .88rem;
  color: rgba(251,247,239,.72); font-weight: 500; margin-top: 2px;
}

.jf-controls {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 7;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 14px 18px 16px;
  background: linear-gradient(180deg, transparent, rgba(8, 12, 20, 0.92));
}

.jf-play {
  width: 48px; height: 48px; border: none; border-radius: 14px;
  background: var(--gold); color: var(--delft);
  display: grid; place-items: center; cursor: pointer; font-size: 1rem;
  transition: transform .2s ease, background .2s ease;
}
.jf-play:hover { transform: scale(1.05); background: var(--gold-soft); }

.jf-progress {
  height: 4px; border-radius: 999px;
  background: rgba(251, 247, 239, 0.15); overflow: hidden;
}
.jf-progress-bar {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--gold), #f0c998);
  border-radius: inherit;
}
.jf-dots { display: flex; gap: 6px; }
.jf-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(251, 247, 239, 0.28); cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.jf-dot.is-active { background: var(--gold); transform: scale(1.25); }

.jf-hint {
  text-align: center; margin: 12px 0 0;
  color: var(--text-muted); font-size: .92rem; font-weight: 500;
}

@media (max-width: 640px) {
  .journey-film { min-height: 360px; border-radius: 22px; aspect-ratio: auto; }
  .jf-controls { grid-template-columns: auto 1fr; }
  .jf-dots { grid-column: 1 / -1; justify-content: center; }
  .jf-caption-cinema { max-width: calc(100% - 28px); bottom: 18%; }
}

@media (prefers-reduced-motion: reduce) {
  .journey-film.is-playing .jf-act.is-active * { animation: none !important; }
}

/* ========== Story presentation (same brand, new layout) ========== */
.story-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}

.story-head .tag-modern { margin-bottom: 14px; }
.story-head .desc-modern { margin: 12px auto 0; }

.story-journey {
  position: relative;
  padding: 96px 0 48px;
  background:
    linear-gradient(180deg, var(--floral) 0%, #f3ebe0 50%, var(--floral) 100%);
  overflow: hidden;
}

.story-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-delft.svg");
  background-size: 520px auto;
  opacity: 0.03;
  pointer-events: none;
}

.journey-rail {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  position: relative;
  z-index: 1;
}

.journey-rail::before {
  content: "";
  position: absolute;
  top: 42px;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232, 180, 114, 0.55), transparent);
  z-index: 0;
}

.journey-rail-visual::before { display: none; }

.journey-step { position: relative; z-index: 1; }

.journey-step-btn {
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 0;
  padding: 0;
  text-align: inherit;
  cursor: pointer;
  font-family: var(--font);
  color: var(--delft);
  transition: transform .25s ease;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.journey-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0;
  background: var(--delft-ink);
}

.journey-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, opacity .3s ease;
  opacity: .92;
}

.journey-step-btn:hover .journey-thumb img,
.journey-step.is-active .journey-thumb img {
  transform: scale(1.04);
  opacity: 1;
}

.journey-step-btn:hover {
  transform: translateY(-3px);
}

.journey-step.is-active .journey-step-btn {
  color: var(--delft);
}

.journey-step.is-active .journey-thumb {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.journey-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(232, 180, 114, 0.18);
  color: #b8843f;
  font-weight: 800;
  font-size: .92rem;
}

.journey-step.is-active .journey-num {
  background: var(--gold);
  color: var(--delft);
}

.journey-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.journey-copy strong {
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.journey-copy em {
  font-style: normal;
  font-size: .86rem;
  line-height: 1.45;
  opacity: .72;
  font-weight: 500;
}

.role-studio {
  position: relative;
  padding: 56px 0 96px;
  background: linear-gradient(180deg, var(--floral) 0%, var(--floral-soft) 100%);
}

.role-studio-grid {
  display: grid;
  grid-template-columns: minmax(260px, 300px) 1fr;
  gap: 28px;
  align-items: start;
  min-height: 0;
}

.role-phone {
  position: sticky;
  top: calc(var(--nav-h) + 16px);
  justify-self: stretch;
  width: 100%;
  max-width: 300px;
}

.role-phone-shell {
  position: relative;
  background: linear-gradient(165deg, #1b253b 0%, #141c2c 100%);
  border: 1px solid rgba(232, 180, 114, 0.3);
  border-radius: 28px;
  padding: 14px 14px 16px;
  box-shadow: 0 18px 40px rgba(20, 28, 44, 0.2);
  overflow: hidden;
  animation: rolePhoneFloat 5.5s ease-in-out infinite;
}

.role-phone-shell::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 180, 114, 0.18), transparent 68%);
  pointer-events: none;
  animation: roleGlowDrift 7s ease-in-out infinite;
}

@keyframes rolePhoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes roleGlowDrift {
  0%, 100% { transform: translate(0, 0); opacity: .7; }
  50% { transform: translate(40px, 24px); opacity: 1; }
}

.role-phone-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 0 4px;
  position: relative;
  z-index: 1;
}

.role-phone-time {
  color: rgba(251, 247, 239, 0.55);
  font-size: .78rem;
  font-weight: 700;
}

.role-phone-dots {
  display: inline-flex;
  gap: 4px;
}

.role-phone-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(232, 180, 114, 0.55);
  display: block;
  animation: roleDotPulse 1.4s ease-in-out infinite;
}

.role-phone-dots i:nth-child(2) { animation-delay: .15s; }
.role-phone-dots i:nth-child(3) { animation-delay: .3s; }

@keyframes roleDotPulse {
  0%, 100% { opacity: .35; transform: scale(.85); }
  50% { opacity: 1; transform: scale(1); }
}

.role-phone-label {
  margin: 0 4px 12px;
  text-align: center;
  color: rgba(251, 247, 239, 0.72);
  font-weight: 700;
  font-size: .92rem;
  position: relative;
  z-index: 1;
}

.role-switcher {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}

.role-tab-glow {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 14px;
  background: var(--gold);
  box-shadow: 0 10px 28px rgba(232, 180, 114, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), width .35s cubic-bezier(.22, 1, .36, 1), height .35s cubic-bezier(.22, 1, .36, 1), opacity .25s ease;
  z-index: 0;
}

.role-tab-glow.is-on { opacity: 1; }

.role-tab {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(251, 247, 239, 0.1);
  outline: none;
  background: rgba(251, 247, 239, 0.06);
  color: var(--floral);
  border-radius: 14px;
  padding: 10px 14px;
  font-family: var(--font);
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .25s ease, transform .25s ease;
  text-align: start;
  -webkit-tap-highlight-color: transparent;
  box-shadow: none;
}

.role-tab:focus,
.role-tab:focus-visible {
  outline: none;
  box-shadow: none;
}

.role-tab i {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: rgba(232, 180, 114, 0.16);
  color: var(--gold);
  font-size: .9rem;
  transition: transform .3s ease, background .25s ease, color .25s ease;
}

.role-tab span {
  flex: 1;
  line-height: 1.25;
}

.role-tab:hover {
  background: rgba(232, 180, 114, 0.14);
  border-color: rgba(232, 180, 114, 0.35);
}

.role-tab.is-active {
  background: transparent;
  color: var(--delft);
  border-color: transparent;
}

.role-tab.is-active i {
  background: rgba(40, 55, 86, 0.12);
  color: var(--delft);
  transform: scale(1.08);
}

.role-progress {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.role-progress-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(251, 247, 239, 0.22);
  transition: width .35s ease, background .35s ease;
}

.role-progress-dot.is-active {
  width: 22px;
  background: var(--gold);
}

.role-stage {
  position: relative;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  min-height: 0;
}

.role-panel {
  display: none;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  opacity: 0;
}

.role-panel.is-active {
  display: block;
  opacity: 1;
}

.role-panel.is-enter .role-panel-copy {
  animation: rolePanelIn .45s cubic-bezier(.22, 1, .36, 1) both;
}

.role-panel.is-leaving {
  display: block;
  animation: rolePanelOut .22s ease both;
}

.role-panel-copy-solo {
  max-width: none;
  width: 100%;
  margin: 0;
  text-align: start;
  padding: 8px 4px 0;
}

.role-icon-burst {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: linear-gradient(145deg, rgba(232, 180, 114, 0.28), rgba(40, 55, 86, 0.08));
  color: var(--delft);
  font-size: 1.25rem;
  box-shadow: 0 10px 24px rgba(40, 55, 86, 0.08);
}

.role-panel.is-enter .role-icon-burst {
  animation: roleIconPop .5s cubic-bezier(.22, 1, .36, 1) both;
}

.role-panel.is-enter .role-points li {
  animation: rolePointIn .4s cubic-bezier(.22, 1, .36, 1) both;
  animation-delay: calc(0.08s * var(--i, 0) + 0.12s);
}

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

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

@keyframes roleIconPop {
  from { opacity: 0; transform: scale(.7) rotate(-8deg); }
  to { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes rolePointIn {
  from { opacity: 0; transform: translateX(14px); }
  to { opacity: 1; transform: translateX(0); }
}

[dir="ltr"] .role-panel.is-enter .role-points li {
  animation-name: rolePointInLtr;
}

@keyframes rolePointInLtr {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

.role-studio-grid.is-switching .role-phone-shell {
  animation: rolePhoneTap .35s ease;
}

@keyframes rolePhoneTap {
  0% { transform: scale(1); }
  40% { transform: scale(0.985); }
  100% { transform: scale(1); }
}

.role-panel-copy {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.role-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #b8843f;
  font-weight: 800;
  font-size: .92rem;
  margin-bottom: 12px;
}

.role-panel-copy h3 {
  font-size: clamp(1.55rem, 2.4vw, 2.15rem);
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--delft);
}

.role-panel-copy > p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0 0 22px;
  font-weight: 500;
}

.role-chips {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.role-chips li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(40, 55, 86, 0.05);
  border: 1px solid rgba(40, 55, 86, 0.08);
  font-size: .9rem;
  font-weight: 700;
  color: var(--delft);
}

.role-chips i {
  color: #b8843f;
  font-size: .8rem;
}

.role-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
  text-align: start;
  width: 100%;
  max-width: none;
}

.role-points li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.role-points i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(232, 180, 114, 0.22);
  color: var(--delft);
  font-size: .78rem;
  margin-top: 2px;
}

.role-points strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--delft);
  line-height: 1.35;
  margin-bottom: 2px;
}

.role-points span {
  display: block;
  font-size: .95rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.5;
}

.role-panel-copy > p,
.role-panel-copy-solo > p {
  max-width: none;
  margin-inline: 0;
}

.role-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-ghost-delft {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(40, 55, 86, 0.22);
  color: var(--delft) !important;
  font-weight: 700;
  background: transparent;
  transition: border-color .2s ease, background .2s ease;
}

.btn-ghost-delft:hover {
  border-color: var(--gold);
  background: rgba(232, 180, 114, 0.1);
}

.role-panel-visual {
  position: relative;
  background: var(--delft);
  min-height: 100%;
  display: flex;
  align-items: stretch;
}

.role-panel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-gold.svg");
  background-size: 280px auto;
  opacity: 0.08;
  pointer-events: none;
}

.role-shot {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  padding: 22px;
}

.role-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(232, 180, 114, 0.28);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.role-shot-empty {
  display: grid;
  place-items: center;
  color: rgba(251, 247, 239, 0.35);
  font-size: 2rem;
}

@media (max-width: 1100px) {
  .journey-rail {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .journey-rail::before { display: none; }
}

@media (max-width: 991px) {
  .role-studio {
    padding: 40px 0 64px;
  }
  .role-studio-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 0;
  }
  .role-phone {
    position: static;
    width: 100%;
    max-width: none;
    justify-self: stretch;
  }
  .role-phone-shell {
    border-radius: 22px;
    padding: 14px 12px;
  }
  .role-phone-label {
    margin-bottom: 10px;
    font-size: .9rem;
  }
  .role-phone-shell {
    animation: none;
  }
  .role-switcher {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .role-tab-glow {
    display: none;
  }
  .role-tab {
    min-height: 52px;
    font-size: .95rem;
    padding: 10px 12px;
    gap: 8px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .role-tab.is-active {
    background: var(--gold);
    color: var(--delft);
  }
  .role-switcher > .role-tab:last-child {
    grid-column: 1 / -1;
  }
  .role-tab span {
    flex: none;
  }
  .role-tab i {
    width: 30px;
    height: 30px;
  }
  .role-panel,
  .role-panel.is-active {
    display: none;
    min-height: 0;
  }
  .role-panel.is-active {
    display: block;
  }
  .role-panel-copy,
  .role-panel-copy-solo {
    padding: 4px 2px 0;
    text-align: start;
  }
  .role-panel-copy h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
  }
  .role-panel-copy > p {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }
  .role-points {
    gap: 12px;
  }
}

@media (max-width: 640px) {
  .journey-rail { grid-template-columns: 1fr 1fr; }
  .journey-step-btn { min-height: 132px; padding: 14px 12px; }
  .story-journey { padding-top: 64px; }
  .role-studio { padding-bottom: 56px; }
  .role-studio .story-head {
    margin-bottom: 22px;
  }
}

/* ========== Growth sections — cinematic film flow ========== */
.shop-switch-stage,
.audience-stage {
  padding: 88px 0 48px;
  background:
    linear-gradient(180deg, #efe8da 0%, var(--floral) 38%, var(--floral) 100%);
  color: var(--delft);
}

.shop-switch-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 420px;
  border-bottom: 1px solid rgba(40, 55, 86, 0.14);
}

.shop-switch-tab {
  flex: 1;
  min-height: 52px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: rgba(40, 55, 86, 0.55);
  font-family: var(--font);
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  position: relative;
  transition: color .25s ease;
}

.shop-switch-tab::after {
  content: "";
  position: absolute;
  inset-inline: 16px;
  bottom: -1px;
  height: 2px;
  background: transparent;
  transition: background .25s ease;
}

.shop-switch-tab:hover {
  color: var(--delft);
}

.shop-switch-tab.is-active {
  background: transparent;
  color: var(--delft);
}

.shop-switch-tab.is-active::after {
  background: var(--gold);
}

.shop-switch-panel {
  display: none;
  animation: shopPanelIn .45s ease both;
}

.shop-switch-panel.is-active {
  display: block;
}

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

.shop-hero-panel {
  max-width: none;
  margin: 0 0 48px;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.audience-panel {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audience-media {
  display: block;
  aspect-ratio: 21 / 9;
  overflow: hidden;
  border-radius: 0;
  background: #101826;
  border: none;
  box-shadow: none;
}

.audience-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.audience-panel:hover .audience-media img {
  transform: scale(1.04);
}

.audience-panel figcaption {
  color: var(--delft);
  padding-inline: 2px;
  max-width: 640px;
}

.audience-panel figcaption strong {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--delft);
}

.audience-panel figcaption em {
  display: block;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.55;
}

.stages-section {
  padding: 72px 0 64px;
  background:
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(40, 55, 86, 0.08), transparent 60%),
    linear-gradient(180deg, #efe8da 0%, var(--floral) 45%, var(--floral) 100%);
}

.stages-path {
  max-width: 980px;
  margin: 0 auto;
}

.stages-nav {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.stages-nav::-webkit-scrollbar { display: none; }

.stages-nav li {
  flex: 1 0 auto;
  min-width: 96px;
}

.stages-nav-btn {
  width: 100%;
  min-height: 64px;
  border: 1px solid rgba(40, 55, 86, 0.1);
  background: rgba(255, 255, 255, 0.55);
  border-radius: 16px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
  font-family: var(--font);
  color: var(--delft);
  transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
  -webkit-tap-highlight-color: transparent;
}

.stages-nav-num {
  font-size: .78rem;
  font-weight: 800;
  color: rgba(40, 55, 86, 0.4);
  letter-spacing: 0.04em;
}

.stages-nav-btn em {
  font-style: normal;
  font-weight: 800;
  font-size: .95rem;
  line-height: 1.25;
}

.stages-nav-btn:hover {
  border-color: rgba(232, 180, 114, 0.55);
  transform: translateY(-1px);
}

.stages-nav-btn.is-active {
  background: var(--delft);
  border-color: transparent;
  color: var(--floral);
  box-shadow: 0 12px 28px rgba(40, 55, 86, 0.22);
}

.stages-nav-btn.is-active .stages-nav-num {
  color: var(--gold);
}

.stages-viewport {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: var(--delft-ink);
  box-shadow: 0 28px 60px rgba(20, 28, 44, 0.22);
  aspect-ratio: 16 / 10;
  min-height: 280px;
}

.stages-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .45s ease, visibility .45s ease;
}

.stages-slide.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.stages-media {
  position: absolute;
  inset: 0;
}

.stages-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 4.5s ease-out;
}

.stages-slide.is-active .stages-media img {
  transform: scale(1);
}

.stages-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 44, 0.05) 35%, rgba(20, 28, 44, 0.82) 100%);
  pointer-events: none;
  z-index: 1;
}

.stages-caption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  padding: 28px 24px 26px;
  color: #fff;
}

.stages-caption-num {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: .9;
  color: var(--gold);
  letter-spacing: -0.02em;
}

.stages-caption-copy strong {
  display: block;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stages-caption-copy em {
  display: block;
  font-style: normal;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(251, 247, 239, 0.78);
}

.stages-bar {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  height: 3px;
  background: rgba(251, 247, 239, 0.15);
  z-index: 3;
}

.stages-bar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gold);
  transition: width .35s linear;
}

.stages-path.is-playing .stages-bar i {
  width: 100%;
  transition: width 4.2s linear;
}

.audience-media,
.visual-media,
.proof-media,
.stages-media {
  pointer-events: none;
}

@media (max-width: 700px) {
  .stages-nav li {
    min-width: 78px;
  }
  .stages-nav-btn {
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 14px;
  }
  .stages-nav-btn em {
    font-size: .86rem;
  }
  .stages-viewport {
    aspect-ratio: 5 / 4;
    border-radius: 18px;
  }
  .stages-caption {
    padding: 20px 16px 18px;
    gap: 12px;
  }
  .stages-caption-copy em {
    font-size: .95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .stages-slide,
  .stages-media img,
  .stages-bar i {
    transition: none !important;
  }
  .stages-path.is-playing .stages-bar i {
    width: 0 !important;
  }
}

.proof-stage {
  padding: 80px 0 56px;
  background:
    linear-gradient(180deg, var(--floral) 0%, #f3ebe0 48%, var(--floral) 100%);
}

.partners-strip {
  margin: 8px 0 36px;
  text-align: center;
}

.partners-label {
  margin: 0 0 16px;
  font-size: .95rem;
  font-weight: 800;
  color: rgba(40, 55, 86, 0.55);
  letter-spacing: 0.02em;
}

.partners-track-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  padding: 6px 0;
}

.partners-track {
  display: flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  animation: partnersSlide 28s linear infinite;
}

.partners-strip:hover .partners-track {
  animation-play-state: paused;
}

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

[dir="rtl"] .partners-track {
  animation-name: partnersSlideRtl;
}

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

.partner-logo {
  margin: 0;
  flex: 0 0 auto;
  width: 148px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(40, 55, 86, 0.08);
  padding: 6px 10px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(0.15);
  opacity: .9;
  transition: filter .25s ease, opacity .25s ease;
}

.partner-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(232, 180, 114, 0.55);
  background: #fff;
}

.partner-logo:hover img {
  filter: none;
  opacity: 1;
}

.demo-band {
  padding: 56px 0;
  background:
    linear-gradient(135deg, var(--delft-ink) 0%, var(--delft) 55%, #32486e 100%);
  color: var(--floral);
  position: relative;
  overflow: hidden;
}

.demo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/brand/pattern/fill-gold.svg");
  background-size: 320px auto;
  opacity: 0.06;
  pointer-events: none;
}

.demo-band-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.demo-band-copy h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.15rem);
  margin: 12px 0 10px;
  color: #fff;
}

.demo-band-copy p {
  margin: 0;
  color: rgba(251, 247, 239, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  font-weight: 500;
  max-width: 520px;
}

.tag-on-dark {
  background: rgba(232, 180, 114, 0.16);
  color: var(--gold);
  border-color: rgba(232, 180, 114, 0.35);
}

.demo-band-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

.faq-stage {
  padding: 72px 0 40px;
  background:
    linear-gradient(180deg, var(--floral), var(--floral-soft) 40%, var(--floral));
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.faq-item {
  border-bottom: 1px solid rgba(40, 55, 86, 0.12);
  padding: 4px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--delft);
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(232, 180, 114, 0.2);
  color: var(--delft);
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--gold);
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
  max-width: 640px;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .shop-switch-tabs {
    max-width: 100%;
  }
  .audience-media {
    aspect-ratio: 16 / 10;
  }
  .demo-band-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .nav-actions .btn-nav-ghost { display: none; }
  .footer-actions .btn-main,
  .footer-actions .btn-secondary { width: 100%; }

  .hero-stage {
    min-height: 100svh;
    padding: calc(var(--nav-h) + 12px) 0 36px;
  }
  .hero-brand-mark {
    width: min(220px, 56vw);
    margin-bottom: 16px;
  }
  .hero-shop-tabs {
    width: min(100%, 340px);
    display: flex;
    margin-bottom: 20px;
  }
  .hero-shop-tab {
    flex: 1;
    min-width: 0;
    min-height: 46px;
    padding: 8px 10px;
    font-size: .9rem;
    gap: 7px;
  }
  .hero-shop-icon {
    width: 26px;
    height: 26px;
    font-size: .88rem;
  }
  .hero-copy h1 {
    font-size: clamp(1.7rem, 7.2vw, 2.15rem);
    margin-bottom: 10px;
  }
  .hero-copy .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-scroll {
    margin-top: 22px;
  }
  .hero-bg-img {
    object-fit: cover;
    object-position: center 30%;
  }

  .shop-switch-stage,
  .audience-stage { padding: 56px 0 36px; }
  .shop-hero-panel { margin-bottom: 36px; }
  .stages-section { padding: 56px 0 48px; }
  .faq-stage { padding-top: 48px; }
  .proof-stage { padding: 56px 0 40px; }
  .journey-step-btn { min-height: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-img.is-active,
  .hero-scroll span::after,
  .hero-copy,
  .role-phone-shell,
  .role-phone-shell::before,
  .role-phone-dots i,
  .role-panel.is-enter .role-panel-copy,
  .role-panel.is-enter .role-icon-burst,
  .role-panel.is-enter .role-points li,
  .role-studio-grid.is-switching .role-phone-shell,
  .partners-track {
    animation: none !important;
  }
  .audience-media img,
  .visual-media img,
  .proof-media img,
  .role-tab-glow {
    transition: none !important;
  }
  .partners-track {
    flex-wrap: wrap;
    width: auto;
    justify-content: center;
    margin-inline: auto;
  }
  .partners-track-wrap {
    mask-image: none;
    -webkit-mask-image: none;
  }
}

/* ========== Mobile polish ========== */
body.nav-locked {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 1099px) {
  .nav-toggle { display: inline-flex; }

  .site-nav {
    z-index: 5000;
    overflow: visible;
  }

  .nav-links-desktop {
    display: none !important;
  }

  .nav-mobile-panel {
    display: none;
    position: fixed;
    top: calc(var(--nav-h) + env(safe-area-inset-top, 0px));
    inset-inline: 0;
    bottom: 0;
    z-index: 4990;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px max(28px, env(safe-area-inset-bottom, 0px));
    background: #1b253b;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid rgba(232, 180, 114, 0.22);
  }

  .nav-mobile-panel.is-open,
  .nav-mobile-panel:not([hidden]) {
    display: flex;
  }

  .site-nav.is-menu-open {
    background: #283756;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  }

  .nav-mobile-panel a {
    padding: 14px 12px;
    font-size: 1.08rem;
    border-bottom: 1px solid rgba(251, 247, 239, 0.08);
    color: rgba(251, 247, 239, 0.92);
    min-height: 48px;
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
  }

  .nav-mobile-panel .nav-links-wa {
    display: flex;
    margin-top: 10px;
    border: 1px solid rgba(232, 180, 114, 0.4);
    border-radius: 14px;
    justify-content: center;
    gap: 8px;
    color: var(--gold);
    background: rgba(232, 180, 114, 0.1);
  }
}

@media (max-width: 991px) {
  :root { --nav-h: 64px; }

  .container-box { width: calc(100% - 28px); }

  .section-head h2,
  .story-head h2 {
    font-size: clamp(1.45rem, 5.5vw, 1.9rem);
  }

  .pricing-toggle {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
  }

  .currency-selector-wrapper {
    gap: 8px;
  }

  .custom-select-modern {
    max-width: 100%;
    font-size: 1rem;
  }

  .pricing-cards-row > [class*="col-"] {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
  }

  .pricing-col-popular .pricing-card {
    margin-top: 0;
    margin-bottom: 0;
    min-height: 0;
  }

  input.form-control,
  select.form-select,
  textarea.form-control,
  .custom-select-modern,
  .kh-chat-form input[type="text"],
  .kh-chat-meta input {
    font-size: 16px !important; /* يمنع زوم iOS */
  }
}

@media (max-width: 640px) {
  .site-nav .nav-inner {
    width: calc(100% - 20px);
    gap: 8px;
  }

  .nav-actions {
    gap: 6px;
  }

  .lang-btn {
    padding: 8px 10px;
    font-size: .82rem;
  }

  .btn-nav-solid {
    padding: 0 12px;
    min-height: 40px;
    font-size: .82rem;
    max-width: 42vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-copy {
    width: min(100%, calc(100% - 28px));
    padding-inline: 0;
  }

  .hero-cta {
    width: 100%;
  }

  .hero-cta .btn-main,
  .hero-cta .btn-secondary,
  .demo-band-actions .btn-main,
  .demo-band-actions .btn-secondary,
  .footer-actions .btn-main,
  .footer-actions .btn-secondary {
    width: 100%;
    min-height: 48px;
  }

  .journey-rail {
    grid-template-columns: 1fr;
  }

  .journey-step-btn {
    min-height: 0;
    flex-direction: row;
    align-items: center;
    text-align: start;
    gap: 12px;
    padding: 12px;
  }

  .journey-thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
  }

  .role-switcher {
    grid-template-columns: 1fr 1fr;
  }

  .partners-track {
    gap: 12px;
  }

  .partner-logo {
    width: 120px;
    height: 46px;
  }

  .faq-item summary {
    font-size: 1rem;
    padding: 14px 0;
  }

  .stages-section .row,
  .bento-grid {
    gap: 14px;
  }
}

@media (max-width: 400px) {
  .nav-actions .btn-nav-solid { display: none; }
  .hero-shop-label { font-size: .82rem; }
}

@supports (padding: max(0px)) {
  .site-nav {
    padding-top: env(safe-area-inset-top);
    height: calc(var(--nav-h) + env(safe-area-inset-top));
  }
  .nav-mobile-panel {
    top: calc(var(--nav-h) + env(safe-area-inset-top));
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }
  .floating-contact,
  .kh-chat-root {
    bottom: max(14px, env(safe-area-inset-bottom));
  }
}
