@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700&display=swap");

:root {
  --bg: #050507;
  --bg-soft: #0a0910;
  --panel: rgba(18, 15, 24, 0.92);
  --panel-strong: rgba(22, 18, 30, 0.96);
  --panel-muted: rgba(17, 15, 22, 0.82);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f3fb;
  --text-soft: rgba(247, 243, 251, 0.78);
  --text-muted: rgba(247, 243, 251, 0.52);
  --accent: #ff2b7a;
  --accent-2: #ff5aa0;
  --accent-3: #8a30ff;
  --accent-4: #240616;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 0 1px rgba(255, 255, 255, 0.03), 0 24px 90px rgba(255, 43, 122, 0.12);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 43, 122, 0.18), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(138, 48, 255, 0.16), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 43, 122, 0.08), transparent 24%),
    linear-gradient(180deg, #030304 0%, #08070b 42%, #09070c 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

body.locked {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.warn,
.site-header,
.hero-shell,
.about-panel,
.identity-panel,
.models-overview,
.results-strip,
.guide-panel,
footer,
.modal-content {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: var(--shadow);
}

.warn {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 16px 22px;
  border-radius: 18px;
  text-align: center;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.site-shell {
  position: relative;
  z-index: 1;
  width: min(1440px, calc(100% - 28px));
  margin: 16px auto 40px;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 18px;
  border-radius: 24px;
  backdrop-filter: blur(16px);
}

.brand-block,
.footer-brand {
  min-width: 0;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo,
.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.18), transparent 52%),
    linear-gradient(135deg, rgba(255, 43, 122, 0.24), rgba(138, 48, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 34px rgba(255, 43, 122, 0.15);
}

.brand-logo img,
.footer-brand-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.brand-copy,
.footer-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-copy strong,
.footer-brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  letter-spacing: -0.03em;
}

.brand-copy small,
.footer-brand-copy small {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.navBar {
  margin-left: auto;
}

.navBar ul,
.footer-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navBar a,
.footer-links a,
.footer-column a,
.footer-contact a,
.foot-cont-three a,
.mobile-menu a {
  color: var(--text-soft);
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.navBar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 600;
}

.navBar a:hover,
.navBar a.active,
.footer-links a:hover,
.footer-column a:hover,
.footer-contact a:hover,
.foot-cont-three a:hover,
.mobile-menu a:hover {
  color: var(--text);
}

.navBar a.active {
  border-color: rgba(255, 43, 122, 0.4);
  background: linear-gradient(180deg, rgba(255, 43, 122, 0.14), rgba(255, 43, 122, 0));
}

.header-cta,
.bunner-btn a,
.model-card-body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  border-radius: 14px;
  padding: 0 22px;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border: 1px solid rgba(255, 96, 164, 0.34);
  color: #fff5fb;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 36px rgba(255, 43, 122, 0.28);
}

.header-cta::after,
.bunner-btn a:first-child::after,
.model-card-body a::after {
  content: "→";
  font-size: 1rem;
}

.bunner-btn a:last-child {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
  box-shadow: none;
}

.bunner-btn a:last-child::after {
  content: "▸";
}

.header-cta:hover,
.bunner-btn a:hover,
.model-card-body a:hover {
  transform: translateY(-1px);
}

.mobile-navbar {
  display: none;
  margin-left: auto;
  position: relative;
  z-index: 41;
}

.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.hamburger .bar {
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu {
  position: fixed;
  top: 88px;
  right: 18px;
  width: min(88vw, 360px);
  max-height: calc(100vh - 108px);
  overflow: auto;
  border-radius: 26px;
  border: 1px solid var(--line-strong);
  background:
    radial-gradient(circle at top right, rgba(255, 43, 122, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    rgba(18, 15, 24, 0.995);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.68);
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
  z-index: 120;
}

.mobile-menu[aria-hidden="false"] {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 22px;
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}

.mobile-menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.mobile-close {
  align-self: flex-end;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 2, 4, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
  z-index: 110;
}

.mobile-menu-backdrop.visible {
  opacity: 1;
  pointer-events: auto;
}

.page-main {
  margin-top: 18px;
}

.hero-shell,
.about-panel,
.identity-panel,
.models-overview,
.results-strip,
.guide-panel,
footer {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-shell {
  padding: 30px 32px 86px;
  min-height: 700px;
}

.hero-shell::before,
.about-panel::before,
.identity-panel::before,
.models-overview::before,
.guide-panel::before,
footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 43, 122, 0.1), transparent 24%),
    radial-gradient(circle at left bottom, rgba(138, 48, 255, 0.12), transparent 22%);
  pointer-events: none;
}

.slider {
  position: relative;
}

.slider-item {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 520px);
  grid-template-areas:
    "title visual"
    "buttons visual"
    "proof visual";
  align-items: start;
  column-gap: 48px;
  row-gap: 24px;
  min-height: 580px;
  max-width: 1320px;
  margin: 0 auto;
}

.slider-item.active {
  display: grid;
}

.title-one {
  grid-area: title;
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  max-width: 600px;
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 18px rgba(255, 43, 122, 0.8);
}

.title-one h1,
.title-one h2,
.section-heading h2,
.about-copy h2 {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.06em;
}

.title-one h1,
.title-one h2 {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  font-size: clamp(3rem, 4.7vw, 4.9rem);
  line-height: 0.98;
}

.title-one h2 {
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
}

.title-one h1 span,
.title-one h2 span {
  color: #ffffff;
}

.title-one h1 strong,
.title-one h2 strong {
  font-weight: 700;
  color: #ff4f96;
}

.title-one > span {
  display: block;
  max-width: 520px;
  margin-top: 24px;
  font-size: 1.04rem;
  line-height: 1.68;
  color: var(--text-soft);
}

.bunner-btn {
  grid-area: buttons;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 600px;
}

.hero-proof {
  grid-area: proof;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 500px;
}

.hero-proof p {
  max-width: 360px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.hero-bubbles {
  display: flex;
  align-items: center;
}

.hero-bubbles span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 58px;
  margin-right: -10px;
  border-radius: 50%;
  border: 2px solid rgba(18, 15, 24, 0.92);
  background:
    linear-gradient(135deg, rgba(255, 43, 122, 0.22), rgba(138, 48, 255, 0.2)),
    rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.36);
}

.hero-visual {
  grid-area: visual;
  align-self: start;
  position: relative;
  width: 100%;
  max-width: 520px;
  min-height: 560px;
  margin-left: auto;
}

.hero-ring {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
}

.hero-ring-a {
  top: 36px;
  right: 44px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 43, 122, 0.72), rgba(255, 43, 122, 0) 68%);
}

.hero-ring-b {
  left: 22px;
  bottom: 82px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(138, 48, 255, 0.62), rgba(138, 48, 255, 0) 70%);
}

.device-frame {
  position: absolute;
  top: 18px;
  left: 50%;
  width: min(100%, 390px);
  transform: translateX(-50%) rotate(7deg);
  border-radius: 48px;
  padding: 16px 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, #15131b, #07070a);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55);
}

.device-notch {
  width: 120px;
  height: 18px;
  margin: 0 auto 12px;
  border-radius: 999px;
  background: #0d0b10;
}

.device-screen {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 38px;
  min-height: 500px;
  padding: 24px 24px 22px;
  background:
    radial-gradient(circle at 65% 28%, rgba(255, 43, 122, 0.34), transparent 24%),
    radial-gradient(circle at 30% 72%, rgba(138, 48, 255, 0.26), transparent 26%),
    linear-gradient(180deg, rgba(15, 12, 18, 0.72), rgba(5, 5, 8, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.device-screen img {
  width: 60%;
  max-height: 250px;
  margin: 18px auto 0;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 28px 40px rgba(255, 43, 122, 0.22));
}

.device-copy {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  display: grid;
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 9, 16, 0), rgba(11, 9, 16, 0.36));
}

.device-copy p {
  color: var(--text-muted);
  font-size: 0.88rem;
}

.device-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.32rem, 1.9vw, 1.68rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.device-copy span {
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.48;
}

.float-card {
  position: absolute;
  z-index: 3;
  width: 184px;
  padding: 16px 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at top left, rgba(255, 43, 122, 0.18), transparent 42%),
    rgba(18, 15, 24, 0.88);
  box-shadow: var(--glow);
  backdrop-filter: blur(10px);
}

.float-card strong {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.float-card small,
.float-label {
  display: block;
}

.float-label {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.float-card small {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.5;
}

.card-one {
  top: 138px;
  left: -22px;
}

.card-two {
  top: 92px;
  right: -22px;
}

.card-three {
  right: -16px;
  bottom: 18px;
  width: 194px;
}

.hero-tags {
  position: absolute;
  left: 50%;
  bottom: -2px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 390px;
  transform: translateX(-50%);
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dots,
.slider-arrow {
  position: absolute;
  z-index: 5;
}

.dots {
  left: 28px;
  bottom: 28px;
  display: flex;
  gap: 8px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.dot.active {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: scale(1.1);
}

.slider-arrow {
  right: 28px;
  bottom: 24px;
  display: flex;
  gap: 10px;
}

#prev,
#next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  user-select: none;
}

.about-panel,
.identity-panel,
.models-overview,
.guide-panel,
footer {
  margin-top: 18px;
  padding: 30px;
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(280px, 1fr) minmax(280px, 1fr);
  gap: 22px;
}

.about-visual {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  min-height: 320px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 43, 122, 0.22), transparent 22%),
    linear-gradient(145deg, rgba(23, 17, 30, 0.98), rgba(10, 8, 14, 0.94));
  border: 1px solid var(--line);
}

.about-visual-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 43, 122, 0.48), transparent 26%),
    radial-gradient(circle at 82% 28%, rgba(138, 48, 255, 0.3), transparent 28%);
}

.about-visual img {
  position: absolute;
  right: -20px;
  bottom: -10px;
  width: 74%;
  max-width: 320px;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.4));
}

.about-copy {
  padding: 12px 6px;
}

.about-copy h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.04;
}

.about-copy p:last-child {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.75;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-features article,
.guide-card,
.result-card,
.model-card,
.identity-copy,
.identity-palette,
.identity-visuals {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
}

.about-features article {
  padding: 20px;
}

.about-features strong,
.model-card-body h3,
.guide-card h3 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
}

.about-features strong {
  font-size: 1.1rem;
}

.about-features span {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.96rem;
  line-height: 1.65;
}

.identity-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(300px, 1.05fr) minmax(260px, 0.95fr);
  gap: 22px;
}

.identity-copy,
.identity-palette,
.identity-visuals {
  padding: 22px;
}

.identity-typography {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

.identity-aa {
  font-family: "Space Grotesk", sans-serif;
  font-size: 4.6rem;
  line-height: 1;
  letter-spacing: -0.08em;
}

.identity-typography strong,
.identity-palette strong,
.identity-visuals strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 12px;
}

.identity-typography small,
.palette-labels small {
  color: var(--text-muted);
}

.palette-row,
.visual-row {
  display: grid;
  gap: 10px;
}

.palette-row {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-top: 18px;
}

.palette-row span {
  display: block;
  aspect-ratio: 1 / 1;
  min-height: 58px;
  border-radius: 14px;
  background: var(--chip);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.palette-labels {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.palette-labels small {
  font-size: 0.76rem;
  text-transform: uppercase;
}

.visual-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.visual-box {
  display: block;
  aspect-ratio: 1 / 1.04;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.visual-gradient {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 43, 122, 0.7), transparent 34%),
    linear-gradient(135deg, #200613, #3d0f2c 45%, #221535 100%);
}

.visual-photo-a {
  background:
    linear-gradient(rgba(6, 6, 10, 0.18), rgba(6, 6, 10, 0.18)),
    url("photos/jednorazówki-blur-20K-cherry-watermelon.webp") center/cover;
}

.visual-photo-b {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 43, 122, 0.08), rgba(138, 48, 255, 0.06));
  background-size: 10px 10px, auto;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin-top: 18px;
  font-size: clamp(2.2rem, 3.2vw, 3.5rem);
  line-height: 1.04;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.model-card {
  overflow: hidden;
}

.model-card-media {
  position: relative;
  min-height: 280px;
  padding: 22px;
  background:
    radial-gradient(circle at top left, rgba(255, 43, 122, 0.22), transparent 24%),
    radial-gradient(circle at right bottom, rgba(138, 48, 255, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
}

.model-card-media img {
  width: 100%;
  max-height: 236px;
  object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(255, 43, 122, 0.14));
}

.model-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.model-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.model-card-body h3 {
  font-size: 1.7rem;
  line-height: 1.08;
}

.model-card-body p,
.guide-card p,
.result-card small,
.footer-column a,
.footer-contact p {
  color: var(--text-soft);
  line-height: 1.7;
}

.model-card-body a {
  width: fit-content;
  margin-top: 4px;
}

.results-strip {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
}

.result-card {
  padding: 24px 22px;
}

.result-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.result-card span {
  display: block;
  margin-top: 14px;
  font-size: 1.08rem;
  font-weight: 700;
}

.result-card small {
  display: block;
  margin-top: 8px;
  font-size: 0.94rem;
}

.guide-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.guide-card {
  padding: 24px 22px;
}

.guide-card h3 {
  font-size: 1.35rem;
  line-height: 1.14;
}

.guide-card p {
  margin-top: 14px;
  font-size: 0.98rem;
}

footer {
  margin-top: 18px;
  padding: 30px;
}

.footer-top,
.footer-middle {
  display: grid;
  gap: 18px;
}

.footer-top {
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.2fr);
  align-items: center;
}

.footer-links {
  justify-content: flex-end;
  flex-wrap: wrap;
}

.footer-links a,
.footer-column a,
.foot-cont-three a {
  padding: 10px 12px;
  border-radius: 12px;
}

.footer-middle {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.footer-column,
.footer-contact,
.foot-cont-three {
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
}

.footer-column,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 6px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  fill: var(--accent-2);
  flex-shrink: 0;
}

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

.foot-cont-three {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.city {
  width: 100%;
}

#city {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-weight: 700;
  cursor: pointer;
}

#city::after {
  content: "+";
  font-size: 1.05rem;
}

#city.active::after,
.foot-cont-three.is-open #city::after {
  content: "−";
}

.foot-cont-three a {
  display: none;
  background: rgba(255, 255, 255, 0.02);
}

.foot-cont-three.is-open a {
  display: inline-flex;
}

.copyright {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 3, 5, 0.82);
  backdrop-filter: blur(8px);
}

.modal-content {
  width: min(100%, 480px);
  padding: 34px 28px;
  border-radius: 28px;
  text-align: center;
}

.modal-content h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}

.modal-content p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.7;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.buttons button {
  min-width: 132px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 96, 164, 0.34);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff5fb;
  font-weight: 700;
  cursor: pointer;
}

.buttons button:last-child {
  background: rgba(255, 255, 255, 0.02);
  border-color: var(--line-strong);
}

@media (max-width: 1260px) {
  .hero-shell {
    padding-bottom: 96px;
  }

  .slider-item {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "title"
      "buttons"
      "proof"
      "visual";
    gap: 36px;
    min-height: auto;
  }

  .title-one {
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: 650px;
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
  }

  .about-panel,
  .identity-panel,
  .footer-top,
  .footer-middle {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 980px) {
  .site-header {
    position: relative;
    top: 0;
  }

  .navBar,
  .header-cta {
    display: none;
  }

  .mobile-navbar {
    display: block;
  }

  .hero-shell,
  .about-panel,
  .identity-panel,
  .models-overview,
  .guide-panel,
  footer {
    padding: 22px;
  }

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

  .about-features {
    grid-template-columns: 1fr;
  }

  .palette-row,
  .palette-labels,
  .visual-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .warn,
  .site-shell {
    width: min(100%, calc(100% - 18px));
  }

  .brand-copy small {
    display: none;
  }

  .hero-shell {
    min-height: auto;
    padding: 22px 22px 88px;
  }

  .title-one h1,
  .title-one h2 {
    font-size: clamp(2.35rem, 10vw, 3.4rem);
  }

  .title-one > span,
  .hero-proof p,
  .about-copy p:last-child,
  .guide-card p,
  .model-card-body p {
    font-size: 0.96rem;
    line-height: 1.7;
  }

  .bunner-btn {
    flex-direction: column;
  }

  .bunner-btn a,
  .model-card-body a {
    width: 100%;
  }

  .hero-proof {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-visual {
    max-width: 420px;
    min-height: 560px;
    margin: 0 auto;
  }

  .device-frame {
    width: min(100%, 320px);
    padding: 14px 12px 12px;
    border-radius: 40px;
  }

  .device-screen {
    min-height: 420px;
    padding: 22px 20px 20px;
  }

  .device-screen img {
    width: 56%;
    max-height: 210px;
    margin-top: 20px;
  }

  .device-copy strong {
    font-size: 1.72rem;
  }

  .float-card {
    width: 152px;
    padding: 13px;
  }

  .float-card strong {
    font-size: 1.28rem;
  }

  .card-one {
    top: 114px;
    left: -10px;
  }

  .card-two {
    top: 78px;
    right: -10px;
  }

  .card-three {
    right: -6px;
    bottom: 16px;
    width: 162px;
  }

  .model-grid,
  .guide-grid,
  .results-strip {
    grid-template-columns: 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .slider-arrow {
    right: 22px;
  }
}

@media (max-width: 560px) {
  .warn {
    padding: 14px 16px;
    font-size: 0.84rem;
  }

  .site-header,
  .hero-shell,
  .about-panel,
  .identity-panel,
  .models-overview,
  .guide-panel,
  footer,
  .results-strip {
    border-radius: 22px;
  }

  .site-header {
    padding: 14px;
  }

  .brand-link,
  .footer-brand {
    gap: 10px;
  }

  .brand-logo,
  .footer-brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-logo img,
  .footer-brand-logo img {
    width: 32px;
    height: 32px;
  }

  .brand-copy strong,
  .footer-brand-copy strong {
    font-size: 0.92rem;
  }

  .hero-shell {
    padding: 18px 18px 82px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.74rem;
    padding: 8px 11px;
  }

  .title-one > span {
    margin-top: 20px;
  }

  .hero-visual {
    min-height: 520px;
  }

  .device-screen {
    min-height: auto;
  }

  .device-screen img {
    width: 54%;
    max-height: 180px;
  }

  .device-frame {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 0 auto;
  }

  .hero-ring-a {
    top: 8px;
    right: 30px;
    width: 180px;
    height: 180px;
  }

  .hero-ring-b {
    left: 18px;
    bottom: 130px;
    width: 170px;
    height: 170px;
  }

  .float-card {
    position: static;
    width: 100%;
  }

  .hero-visual {
    display: grid;
    gap: 12px;
    align-content: start;
  }

  .hero-tags {
    position: static;
    transform: none;
    max-width: none;
    justify-content: flex-start;
  }

  .dots {
    left: 18px;
    bottom: 20px;
  }

  .slider-arrow {
    right: 18px;
    bottom: 16px;
  }

  .about-panel,
  .identity-panel,
  .models-overview,
  .guide-panel,
  footer {
    padding: 18px;
  }

  .about-copy h2,
  .section-heading h2 {
    font-size: clamp(1.8rem, 7vw, 2.45rem);
  }

  .identity-typography {
    flex-direction: column;
    align-items: flex-start;
  }

  .identity-aa {
    font-size: 3.5rem;
  }

  .palette-row,
  .palette-labels,
  .visual-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .buttons {
    flex-direction: column;
  }

  .buttons button {
    width: 100%;
  }
}

/* ===== TRUST BAR ===== */
.trust-bar {
  position: relative;
  z-index: 2;
  width: min(1440px, calc(100% - 28px));
  margin: 10px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 18px;
  padding: 10px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 43, 122, 0.14), rgba(138, 48, 255, 0.12));
  border: 1px solid rgba(255, 43, 122, 0.22);
  backdrop-filter: blur(10px);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}

.trust-bar span {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===== BREADCRUMB ===== */
.breadcrumb-nav {
  padding: 4px 0 6px;
  margin-bottom: 4px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 6px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb [aria-current="page"] {
  color: var(--accent);
  font-weight: 600;
}

/* ===== HEADER ACTIONS (cart + wishlist + CTA) ===== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  cursor: pointer;
}

.header-icon-btn:hover {
  color: var(--accent);
  background: rgba(255, 43, 122, 0.1);
  transform: translateY(-1px);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ===== PRODUCT BADGES ===== */
.model-card-media {
  position: relative;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  z-index: 2;
  pointer-events: none;
}

.badge-bestseller {
  background: linear-gradient(135deg, #ff2b7a, #ff5aa0);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 43, 122, 0.35);
}

.badge-sale {
  background: linear-gradient(135deg, #ff6b00, #ff9500);
  color: #fff;
  box-shadow: 0 6px 18px rgba(255, 107, 0, 0.35);
}

.badge-new {
  background: linear-gradient(135deg, #8a30ff, #b060ff);
  color: #fff;
  box-shadow: 0 6px 18px rgba(138, 48, 255, 0.35);
}

/* ===== STAR RATINGS ===== */
.card-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.review-count {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 400;
}

/* ===== STOCK URGENCY ===== */
.stock-warn {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 4px !important;
  margin-bottom: 2px !important;
  animation: pulse-warn 2s ease-in-out infinite;
}

@keyframes pulse-warn {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.65; }
}

/* ===== MOBILE: trust-bar + header-actions ===== */
@media (max-width: 700px) {
  .trust-bar {
    font-size: 0.78rem;
    gap: 4px 12px;
    padding: 8px 14px;
  }

  .header-actions {
    display: none;
  }
}
