:root {
  --ink: #12141a;
  --ink-soft: #2a2f3a;
  --muted: #6b7280;
  --line: rgba(18, 20, 26, 0.1);
  --surface: #ffffff;
  --bg: #f2f3f5;
  --bg-deep: #0e0f12;
  --accent: #e11d48;
  --accent-soft: #fff1f3;
  --accent-2: #f97316;
  --ok: #10b981;
  --radius: 20px;
  --radius-sm: 12px;
  --container: 1180px;
  --font: "Sora", system-ui, sans-serif;
  --display: "Bricolage Grotesque", Georgia, sans-serif;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 243, 245, 0.78);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
}

.header__inner {
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand__mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.15rem;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand__text strong {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand__text small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.68rem 1.15rem;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}

.btn--primary:hover {
  background: #be123c;
}

.btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost-dark {
  width: 100%;
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn--ghost-dark:hover,
.btn--ghost:hover {
  border-color: var(--ink);
}

.btn--light {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn--lg {
  padding: 0.95rem 1.45rem;
  font-size: 0.98rem;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, #0e0f12 0%, #171a22 45%, #1a1218 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at 30% 20%, #000 20%, transparent 70%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: drift 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 420px;
  height: 420px;
  background: rgba(225, 29, 72, 0.28);
  top: -10%;
  right: 5%;
}

.hero__orb--2 {
  width: 320px;
  height: 320px;
  background: rgba(249, 115, 22, 0.16);
  bottom: -5%;
  left: 10%;
  animation-delay: -5s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -18px) scale(1.05); }
}

.hero__layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}

.bik-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.9rem 0.45rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.88);
}

.bik-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.bik-badge strong {
  color: #fff;
  font-weight: 650;
}

.hero__title {
  margin: 0;
}

.hero__brand {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
  margin-bottom: 0.9rem;
  color: #fff;
}

.hero__tagline {
  display: block;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: rgba(255, 255, 255, 0.72);
  max-width: 18ch;
}

.hero__lead {
  margin: 1.35rem 0 1.75rem;
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.75rem;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin: 0;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.86rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.hero__meta span {
  position: relative;
}

.hero__meta span:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.7rem;
  top: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.hero__visual {
  margin: 0;
}

.hero__stage {
  position: relative;
  padding: 0 2.4rem 1.25rem 0;
}

.browser-frame {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) translateY(0);
  animation: frameIn 1.1s var(--ease) both;
  transition: transform 0.3s var(--ease);
}

.browser-frame:hover {
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg) translateY(-4px);
}

.hero-phone {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: min(32%, 148px);
  padding: 10px 8px 12px;
  border-radius: 28px;
  background: #1a1d24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 28px 48px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) translateY(0);
  animation: phoneIn 1.2s var(--ease) 0.15s both;
  transition: transform 0.3s var(--ease);
}

.hero-phone:hover {
  transform: perspective(1200px) rotateY(-5deg) rotateX(1deg) translateY(-6px);
}

.hero-phone__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 8px;
  border-radius: 999px;
  background: #0a0b0e;
  transform: translateX(-50%);
}

.hero-phone__screen {
  aspect-ratio: 9 / 19;
  border-radius: 18px;
  overflow: hidden;
  background: #0a0b0e;
}

.hero-phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

@keyframes frameIn {
  from {
    opacity: 0;
    transform: perspective(1400px) rotateY(-10deg) rotateX(6deg) translateY(36px);
  }
  to {
    opacity: 1;
    transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) translateY(0);
  }
}

@keyframes phoneIn {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateY(-14deg) rotateX(6deg) translateY(40px);
  }
  to {
    opacity: 1;
    transform: perspective(1200px) rotateY(-8deg) rotateX(2deg) translateY(0);
  }
}

.browser-frame__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.4);
}

.browser-frame__bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.browser-frame__bar i:first-child { background: #ff5f57; }
.browser-frame__bar i:nth-child(2) { background: #febc2e; }
.browser-frame__bar i:nth-child(3) { background: #28c840; }

.browser-frame__bar span {
  margin-left: 0.45rem;
}

.browser-frame__screen {
  aspect-ratio: 16 / 10;
  background: #0a0b0e;
}

.browser-frame__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* ——— Sections ——— */
.section {
  padding: 6rem 0;
}

.section-head {
  max-width: 560px;
  margin-bottom: 3rem;
}

.section-title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.section-lead a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-head--light .eyebrow {
  color: #fb7185;
}

.section-head--light .section-title {
  color: #fff;
}

.section-head--light .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

/* ——— Slogans ——— */
.slogans {
  background: var(--surface);
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.slogans__head {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.slogans__lead {
  margin: 0.85rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.3;
  color: var(--ink-soft);
}

.slogans__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.slogan {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.4rem;
  border-radius: var(--radius);
  background: var(--bg-deep);
  color: #fff;
  min-height: 180px;
}

.slogan__tag {
  align-self: flex-start;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.slogan p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.92);
}

.slogan strong {
  color: #fff;
  font-weight: 800;
}

.mobile-app {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.75rem 1.85rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-deep);
  color: #fff;
}

.mobile-app .eyebrow {
  color: #fb7185;
}

.mobile-app h3 {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  letter-spacing: -0.03em;
}

.mobile-app p {
  margin: 0;
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.mobile-app .btn--primary {
  flex-shrink: 0;
  background: #fff;
  color: var(--ink);
}

.mobile-app .btn--primary:hover {
  background: #fda4af;
}

/* ——— About ——— */
.about {
  background: var(--bg);
}

.about__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: start;
}

.about__copy p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about__copy strong {
  color: var(--ink);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.stat-row div {
  padding: 1.25rem 1rem 0 0;
}

.stat-row strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.about__panel {
  background: var(--bg-deep);
  color: #fff;
  border-radius: calc(var(--radius) + 4px);
  padding: 1.75rem;
}

.about__panel h3 {
  margin: 0 0 1.25rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

.about__panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.about__panel li {
  display: grid;
  gap: 0.15rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about__panel li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about__panel span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8rem;
  text-decoration: line-through;
}

.about__panel strong {
  font-size: 0.98rem;
  color: #fff;
}

/* ——— Features ——— */
.features {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.features__atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 70% 55% at 8% 0%, rgba(225, 29, 72, 0.09), transparent 58%),
    radial-gradient(ellipse 55% 45% at 96% 18%, rgba(249, 115, 22, 0.07), transparent 52%),
    linear-gradient(180deg, #f7f7f8 0%, var(--bg) 42%, #eceef1 100%);
}

.features .container {
  position: relative;
  z-index: 1;
}

.section-head--features {
  max-width: 640px;
  margin-bottom: 2.75rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(18, 20, 26, 0.08);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.35s var(--ease);
}

.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleY(0.4);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}

.feature:hover {
  transform: translateY(-5px);
  background: #fff;
  border-color: rgba(225, 29, 72, 0.22);
  box-shadow:
    0 18px 40px rgba(18, 20, 26, 0.08),
    0 0 0 1px rgba(225, 29, 72, 0.04);
}

.feature:hover::before {
  opacity: 1;
  transform: scaleY(1);
}

.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.55rem;
  height: 2.55rem;
  margin-bottom: 1.05rem;
  border-radius: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 0 0 1px rgba(225, 29, 72, 0.08);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.35s var(--ease);
}

.feature:hover .feature__icon {
  background: var(--accent);
  color: #fff;
  transform: scale(1.05);
}

.feature h3 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  font-weight: 700;
  line-height: 1.3;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.feature p strong {
  color: var(--ink-soft);
  font-weight: 600;
}

/* ——— Compare ——— */
.compare {
  background: var(--bg-deep);
  color: #fff;
}

.compare-table {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-table__head,
.compare-table [role="row"] {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}

.compare-table__head {
  background: rgba(225, 29, 72, 0.15);
  font-weight: 650;
  font-size: 0.9rem;
}

.compare-table [role="columnheader"],
.compare-table [role="cell"] {
  padding: 1.05rem 1.3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.compare-table [role="row"]:last-child [role="cell"] {
  border-bottom: 0;
}

.compare-table [role="cell"] {
  color: rgba(255, 255, 255, 0.88);
}

.compare-table [role="cell"]:last-child {
  color: #fecdd3;
  font-weight: 560;
}

/* ——— Gallery ——— */
.gallery {
  background: var(--surface);
  overflow: hidden;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head--center .section-lead {
  margin-inline: auto;
}

.gallery-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin: -0.5rem 0 2rem;
  flex-wrap: wrap;
}

.gallery-toolbar__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.theme-switch {
  display: inline-flex;
  padding: 0.25rem;
  border-radius: 999px;
  background: var(--bg);
  border: 1px solid var(--line);
  gap: 0.15rem;
}

.theme-switch__btn {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.theme-switch__btn:hover {
  color: var(--ink);
}

.theme-switch__btn.is-active {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 6px 16px rgba(18, 20, 26, 0.18);
}

.gallery[data-gallery-theme="dark"] .theme-switch__btn.is-active {
  background: #1f2937;
}

.device.is-theme-switching .device__screen img {
  opacity: 0.35;
}

.device-showcase {
  --device-ink: #1a1d24;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.72fr) minmax(0, 0.42fr);
  align-items: end;
  gap: 1.25rem 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0.5rem 0 0.25rem;
}

.device {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-align: center;
  color: inherit;
  transition: transform 0.35s var(--ease);
}

.device:hover {
  transform: translateY(-8px);
}

.device:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 6px;
  border-radius: 12px;
}

.device__chrome {
  filter: drop-shadow(0 22px 36px rgba(18, 20, 26, 0.18));
}

.device__label {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.device:hover .device__label {
  color: var(--ink);
}

.device__screen {
  overflow: hidden;
  background: #0a0b0e;
}

.device__screen img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: opacity 0.28s var(--ease);
}

/* Desktop monitor */
.device__monitor {
  border-radius: 14px 14px 10px 10px;
  overflow: hidden;
  background: var(--device-ink);
  border: 1px solid rgba(18, 20, 26, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.4);
}

.device__bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.device__bar i:first-child { background: #ff5f57; }
.device__bar i:nth-child(2) { background: #febc2e; }
.device__bar i:nth-child(3) { background: #28c840; }

.device__bar span {
  margin-left: 0.35rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.device--desktop .device__screen {
  aspect-ratio: 16 / 10;
}

.device__neck {
  width: 18%;
  height: 28px;
  margin: 0 auto;
  background: linear-gradient(180deg, #9ca3af, #6b7280);
  clip-path: polygon(22% 0, 78% 0, 100% 100%, 0 100%);
}

.device__foot {
  width: 42%;
  height: 10px;
  margin: 0 auto;
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(180deg, #4b5563, #1f2937);
}

/* Tablet */
.device__tablet {
  width: min(100%, 240px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 22px;
  background: var(--device-ink);
  border: 1px solid rgba(18, 20, 26, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device--tablet .device__screen {
  aspect-ratio: 3 / 4;
  border-radius: 10px;
}

/* Phone */
.device__phone {
  position: relative;
  width: min(100%, 148px);
  margin: 0 auto;
  padding: 10px 8px 12px;
  border-radius: 28px;
  background: var(--device-ink);
  border: 1px solid rgba(18, 20, 26, 0.35);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 8px;
  border-radius: 999px;
  background: #0a0b0e;
  transform: translateX(-50%);
}

.device--phone .device__screen {
  aspect-ratio: 9 / 19;
  border-radius: 18px;
}

.panel-gallery {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid var(--line);
}

.panel-gallery__head {
  max-width: 520px;
  margin: 0 auto 2rem;
  text-align: center;
}

.panel-gallery__title {
  margin: 0 0 0.5rem;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  letter-spacing: -0.02em;
}

.panel-gallery__lead {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.panel-card {
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg);
  cursor: pointer;
  text-align: left;
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.panel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 20, 26, 0.1);
}

.panel-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #111318;
}

.panel-card span {
  display: block;
  padding: 0.85rem 1rem;
  font-weight: 600;
  font-size: 0.9rem;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

/* ——— Packages ——— */
.setup-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
}

.setup-banner strong {
  display: block;
  font-family: var(--display);
  font-size: 1.15rem;
}

.setup-banner span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.setup-banner__price {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.setup-banner__price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
}

.pricing {
  display: grid;
  gap: 0.85rem;
  align-items: stretch;
}

.pricing--4 {
  grid-template-columns: repeat(4, 1fr);
}

.price {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.3rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
}

.price--featured {
  background: var(--ink);
  color: #fff;
  border-color: transparent;
}

.price__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.price__label {
  margin: 0;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.price h3 {
  margin: 0.4rem 0;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.price__desc {
  margin: 0 0 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.price__value {
  margin: 0 0 1.15rem;
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price__value small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.price ul {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  flex: 1;
}

.price li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.price li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.price--featured .price__label {
  color: #fda4af;
}

.price--featured h3,
.price--featured .price__value {
  color: #fff;
}

.price--featured .price__value small {
  color: rgba(255, 255, 255, 0.72);
}

.price--featured li {
  color: rgba(255, 255, 255, 0.9);
}

.price--featured li::before {
  background: #fda4af;
}

.price--featured .btn--primary {
  background: #fff;
  color: var(--ink);
}

.price--featured .btn--primary:hover {
  background: #fda4af;
}

.special-pack {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border: 1px solid rgba(225, 29, 72, 0.12);
}

.special-pack h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.special-pack p {
  margin: 0;
  color: var(--muted);
  max-width: 38rem;
}

.packages__note {
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 720px;
}

/* ——— CTA ——— */
.cta-band {
  padding-top: 0;
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2rem;
  align-items: center;
  padding: 2.75rem;
  border-radius: calc(var(--radius) + 8px);
  background:
    radial-gradient(circle at 90% 10%, rgba(225, 29, 72, 0.35), transparent 40%),
    var(--bg-deep);
  color: #fff;
}

.cta-band .eyebrow {
  color: #fb7185;
}

.cta-band .section-title {
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
}

.cta-band__list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.cta-band__list li {
  position: relative;
  padding-left: 1rem;
  font-weight: 500;
  font-size: 0.92rem;
}

.cta-band__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.cta-band__actions {
  display: grid;
  gap: 0.7rem;
}

/* ——— FAQ ——— */
.faq-list {
  display: grid;
  gap: 0.65rem;
  max-width: 760px;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 0 1.15rem;
  border: 1px solid transparent;
}

.faq-item[open] {
  border-color: rgba(225, 29, 72, 0.18);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.05rem 0;
  font-weight: 600;
  font-size: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  margin: 0 0 1.05rem;
  color: var(--muted);
}

/* ——— Contact ——— */
.contact {
  background: var(--surface);
}

.contact__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.15rem;
}

.contact-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-list span {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

.contact-list a,
.contact-list strong {
  font-size: 1.2rem;
  font-weight: 650;
  font-family: var(--display);
  letter-spacing: -0.02em;
}

.contact-list a:hover {
  color: var(--accent);
}

.contact-form,
.modal__panel form {
  display: grid;
  gap: 0.85rem;
}

.contact-form {
  padding: 1.75rem;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg);
}

.contact-form h3 {
  margin: 0 0 0.2rem;
  font-family: var(--display);
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  font-weight: 560;
  color: var(--ink-soft);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(18, 20, 26, 0.12);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: #fff;
  border-color: rgba(18, 20, 26, 0.12);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(225, 29, 72, 0.45);
  box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.12);
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 72px;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-weight: 500;
}

.checkbox input {
  width: auto;
  margin-top: 0.2rem;
}

.form-note {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  background: var(--accent-soft);
  color: #9f1239;
  font-size: 0.9rem;
}

/* ——— Footer ——— */
.site-footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.72);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand .brand__text strong {
  color: #fff;
}

.footer__brand .brand__text small,
.footer__brand p {
  color: rgba(255, 255, 255, 0.7);
}

.footer__brand p {
  margin: 1rem 0 0;
  max-width: 26rem;
  font-size: 0.92rem;
}

.site-footer h4 {
  margin: 0 0 0.85rem;
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer a {
  display: block;
  margin-bottom: 0.45rem;
  color: rgba(255, 255, 255, 0.72);
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #fda4af;
}

.footer__bottom {
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer__brand .brand__mark {
  background: var(--accent);
}

/* ——— WhatsApp float ——— */
.wa-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: inline-flex;
  /* pulse için */
  isolation: isolate;
  align-items: center;
  gap: 0.55rem;
  min-height: 3.4rem;
  padding: 0.7rem 1.05rem 0.7rem 0.85rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.wa-float:hover {
  transform: translateY(-3px);
  background: #1ebe57;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.42);
  color: #fff;
}

.wa-float__icon {
  width: 1.55rem;
  height: 1.55rem;
  flex-shrink: 0;
}

.wa-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
  animation: waPulse 2.2s var(--ease) infinite;
  pointer-events: none;
}

@keyframes waPulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 720px) {
  .wa-float {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem;
    min-height: 3.35rem;
    min-width: 3.35rem;
    justify-content: center;
  }

  .wa-float__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

/* ——— Modal / Lightbox ——— */
.modal[hidden],
.lightbox[hidden] {
  display: none !important;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-y: auto;
}

.modal__backdrop,
.lightbox__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 9, 12, 0.72);
  backdrop-filter: blur(8px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  margin: auto;
  max-height: none;
  overflow: visible;
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(18, 20, 26, 0.08);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  animation: modalIn 0.3s var(--ease);
}

.modal__head {
  padding-right: 2.2rem;
  margin-bottom: 1.1rem;
}

.modal__head h2 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.modal__head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.modal__panel form {
  gap: 0.7rem;
}

.modal__panel input,
.modal__panel select,
.modal__panel textarea {
  background: var(--bg);
  border: 1px solid rgba(18, 20, 26, 0.14);
}

.modal__panel .btn {
  width: 100%;
  margin-top: 0.25rem;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--bg);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.modal__close:hover {
  background: #e8e9ec;
}

.lightbox {
  z-index: 120;
}

.lightbox__panel {
  position: relative;
  z-index: 1;
  margin: 0;
  width: min(100%, 980px);
  max-height: 92vh;
  overflow: auto;
  border-radius: 16px;
  background: #0e0f12;
  transition: width 0.2s var(--ease);
}

.lightbox__panel.is-desktop {
  width: min(100%, 980px);
}

.lightbox__panel.is-tablet {
  width: min(100%, 560px);
}

.lightbox__panel.is-phone {
  width: min(100%, 400px);
}

.lightbox__panel img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  background: #0a0b0e;
}

.lightbox__panel figcaption {
  padding: 0.85rem 1rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
  text-align: center;
}

/* ——— Motion ——— */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.modal-open {
  overflow: hidden;
}

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .pricing--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 980px) {
  .hero__layout {
    grid-template-columns: 1fr;
    padding: 3rem 0 3.5rem;
    gap: 2.5rem;
  }

  .hero__tagline {
    max-width: none;
  }

  .browser-frame,
  .hero-phone {
    transform: none;
    animation: none;
  }

  .hero__stage {
    max-width: 560px;
    margin-inline: auto;
    padding-right: 2rem;
  }

  .hero-phone {
    width: min(30%, 132px);
  }

  .about__grid,
  .pricing,
  .pricing--4,
  .slogans__grid,
  .contact__grid,
  .cta-band__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .mobile-app {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .device-showcase {
    grid-template-columns: 1fr 0.85fr 0.55fr;
    gap: 1rem;
  }

  .panel-gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .device__tablet {
    width: min(100%, 200px);
  }

  .device__phone {
    width: min(100%, 120px);
  }

  .stat-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .setup-banner,
  .special-pack {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h) + 8px) 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.5rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 0.85rem 1rem;
    border-radius: 10px;
  }

  .nav a:hover {
    background: var(--bg);
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  .hero {
    min-height: auto;
  }

  .hero__pills,
  .hero__meta,
  .feature-grid,
  .pricing--4,
  .form-row,
  .cta-band__list,
  .compare-table__head,
  .compare-table [role="row"] {
    grid-template-columns: 1fr;
  }

  .device-showcase {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2rem;
  }

  .panel-gallery__grid {
    grid-template-columns: 1fr;
  }

  .device--desktop {
    width: min(100%, 420px);
  }

  .device__tablet {
    width: min(100%, 220px);
  }

  .device__phone {
    width: min(100%, 140px);
  }

  .hero__meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero__meta span:not(:last-child)::after {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .cta-band__inner {
    padding: 1.6rem;
  }

  .feature {
    padding: 1.25rem 1.15rem 1.3rem;
  }

  .feature__icon {
    width: 2.3rem;
    height: 2.3rem;
    font-size: 0.78rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__orb,
  .browser-frame,
  .hero-phone,
  .device,
  .feature,
  .wa-float__pulse,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
