/* ============================================================
   Deminio Apps — Main Stylesheet
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-primary:   #6c47ff;
  --color-primary-d: #5533e0;
  --color-primary-l: #ede8ff;
  --color-accent:    #ff6b6b;
  --color-dark:      #0d0d1a;
  --color-dark-2:    #1a1a2e;
  --color-text:      #3d3d56;
  --color-text-light:#7a7a9d;
  --color-border:    #e8e8f0;
  --color-bg:        #fafafa;
  --color-white:     #ffffff;

  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 2px 8px rgba(108,71,255,.08);
  --shadow-md: 0 8px 32px rgba(108,71,255,.12);
  --shadow-lg: 0 24px 64px rgba(108,71,255,.18);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

html {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--color-text);
  background: var(--color-bg);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body { overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: .9375rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  padding: 14px 28px;
}
.btn--lg   { padding: 16px 36px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(108,71,255,.35);
}
.btn--primary:hover {
  background: var(--color-primary-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(108,71,255,.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn--ghost:hover {
  background: var(--color-primary-l);
  transform: translateY(-2px);
}

/* ---------- Section Shared ---------- */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-primary-l);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section-label--light {
  color: var(--color-white);
  background: rgba(255,255,255,.15);
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.section-title--light { color: var(--color-white); }
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-subtitle--light { color: rgba(255,255,255,.75); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,250,250,.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}
.footer__logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 6px;
}
.header__logo-text {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-dark);
  letter-spacing: -.01em;
}
.header__logo-text strong { color: var(--color-primary); font-weight: 800; }

/* Nav */
.nav__list {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav__link:hover { color: var(--color-primary); background: var(--color-primary-l); }
.nav__link--cta {
  background: var(--color-primary);
  color: var(--color-white) !important;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 14px rgba(108,71,255,.3);
}
.nav__link--cta:hover {
  background: var(--color-primary-d);
  transform: translateY(-1px);
}

/* Burger */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius-sm);
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: var(--transition);
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.shape--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #6c47ff 0%, transparent 70%);
  top: -200px; right: -150px;
}
.shape--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #ff6b6b 0%, transparent 70%);
  bottom: -100px; left: -100px;
  opacity: .2;
}
.shape--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #00c9a7 0%, transparent 70%);
  top: 40%; left: 40%;
  opacity: .15;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__content { max-width: 580px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-primary);
  background: var(--color-primary-l);
  border: 1px solid rgba(108,71,255,.2);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1.1;
  letter-spacing: -.03em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--color-primary), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-dark);
  line-height: 1;
}
.stat__label {
  font-size: .8125rem;
  color: var(--color-text-light);
  font-weight: 500;
}
.stat__divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* Phone Mockup */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 260px;
  height: 520px;
  background: var(--color-dark);
  border-radius: 40px;
  padding: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(255,255,255,.06);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}
.phone-mockup__screen {
  width: 100%;
  height: 100%;
  background: #16163a;
  border-radius: 28px;
  overflow: hidden;
  padding: 20px 16px;
}

.mock-ui { display: flex; flex-direction: column; gap: 12px; }
.mock-ui__bar {
  height: 8px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  width: 60%;
}
.mock-ui__card {
  border-radius: 16px;
  height: 80px;
}
.mock-ui__card--purple {
  background: linear-gradient(135deg, var(--color-primary), #a78bfa);
  opacity: .9;
}
.mock-ui__card--light {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.mock-ui__card--sm { height: 56px; }
.mock-ui__row { display: flex; gap: 10px; }
.mock-ui__block {
  flex: 1;
  height: 72px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}
.mock-ui__block--sm { flex: 0 0 72px; }

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  box-shadow: var(--shadow-md);
  font-size: .875rem;
  font-weight: 600;
  color: var(--color-dark);
  white-space: nowrap;
  z-index: 2;
}
.floating-card__icon { font-size: 1.25rem; }
.floating-card--1 {
  left: -40px;
  top: 60px;
  animation: float 3.5s ease-in-out infinite;
}
.floating-card--2 {
  right: -30px;
  bottom: 80px;
  animation: float 4.5s ease-in-out infinite reverse;
}

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

/* ============================================================
   ANDROID MOCKUP — Hero
   ============================================================ */
.android-mockup {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.android-phone {
  width: 260px;
  background: #0d0d1a;
  border-radius: 40px;
  padding: 12px 10px 8px;
  box-shadow: 0 0 0 2px #222, 0 0 0 4px #111, 0 32px 80px rgba(0,0,0,.5), 0 0 60px rgba(108,71,255,.2);
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
}

/* Status bar */
.android-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 14px 6px;
  color: rgba(255,255,255,.9);
  font-size: .65rem;
  font-weight: 600;
}
.android-status__icons { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,.8); }
.android-status__time { letter-spacing: .05em; }

/* Screen area */
.android-screen {
  background: linear-gradient(160deg, #1a1040 0%, #0d1f3c 60%, #0d2b22 100%);
  border-radius: 30px;
  padding: 14px 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 460px;
}

/* Widget */
.android-widget {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 12px 16px;
  backdrop-filter: blur(8px);
}
.android-widget__label { color: #fff; font-size: .8rem; font-weight: 700; }
.android-widget__sub { color: rgba(255,255,255,.5); font-size: .65rem; margin-top: 2px; }

/* App grid */
.android-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  flex: 1;
}
.android-app {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.android-app__icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
}
.android-app__icon svg { width: 100%; height: 100%; }
.android-app__name { color: rgba(255,255,255,.85); font-size: .55rem; font-weight: 500; text-align: center; }

.android-app--purple .android-app__icon { background: linear-gradient(135deg,#6c47ff,#a78bfa); }
.android-app--green  .android-app__icon { background: linear-gradient(135deg,#0ca678,#38d9a9); }
.android-app--blue   .android-app__icon { background: linear-gradient(135deg,#1971c2,#74c0fc); }
.android-app--orange .android-app__icon { background: linear-gradient(135deg,#e8590c,#ffa94d); }
.android-app--red    .android-app__icon { background: linear-gradient(135deg,#c92a2a,#ff6b6b); }
.android-app--teal   .android-app__icon { background: linear-gradient(135deg,#0b7285,#66d9e8); }

/* Dock */
.android-dock {
  display: flex;
  justify-content: space-around;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  padding: 10px 8px;
  backdrop-filter: blur(10px);
}
.android-dock__app {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.android-dock__app svg { width: 100%; height: 100%; }
.android-dock__app--cam    { background: linear-gradient(135deg,#495057,#868e96); }
.android-dock__app--chrome { background: linear-gradient(135deg,#2f9e44,#51cf66); }
.android-dock__app--music  { background: linear-gradient(135deg,#862e9c,#cc5de8); }
.android-dock__app--settings{ background: linear-gradient(135deg,#1864ab,#339af0); }

/* Nav bar */
.android-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 6px 0 2px;
}
.android-nav__btn {
  width: 20px;
  height: 3px;
  background: rgba(255,255,255,.25);
  border-radius: 4px;
}
.android-nav__btn--home {
  width: 20px;
  height: 20px;
  background: none;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
}

/* Floating notification cards */
.notif-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  z-index: 3;
  white-space: nowrap;
}
.notif-card--1 { left: -70px; top: 80px;  animation: float 3.5s ease-in-out infinite; }
.notif-card--2 { right: -60px; bottom: 110px; animation: float 4.5s 0.5s ease-in-out infinite reverse; }

.notif-card__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  flex-shrink: 0;
}
.notif-card__icon svg { width: 100%; height: 100%; }
.notif-card__icon--purple { background: #6c47ff; }
.notif-card__icon--green  { background: #0ca678; }

.notif-card__body { display: flex; flex-direction: column; }
.notif-card__app  { font-size: .65rem; font-weight: 700; color: #555; text-transform: uppercase; letter-spacing: .05em; }
.notif-card__text { font-size: .75rem; font-weight: 600; color: #111; }

/* ============================================================
   APP PAGE — shared (Galerinio & ShopogoliQ)
   ============================================================ */
.app-page { padding: 120px 0; }

.app-page--galerinio { background: var(--color-bg); }
.app-page--shopogoliq {
  background: linear-gradient(135deg, #f0fdf9 0%, #ecfdf5 100%);
}

.app-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-page__inner--reverse { direction: rtl; }
.app-page__inner--reverse > * { direction: ltr; }

.app-page__title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.app-page__title--green { color: #0ca678; }

.app-page__tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 20px;
}
.app-page__desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}
.app-page__actions { margin-top: 40px; }

/* Section label variant */
.section-label--green {
  color: #0ca678;
  background: #d1fae5;
}

/* App feature list */
.app-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.app-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.app-feature__icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  background: color-mix(in srgb, var(--f-color) 12%, #fff);
  color: var(--f-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-feature__icon svg { width: 22px; height: 22px; }
.app-feature strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}
.app-feature p {
  font-size: .875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

/* Green button */
.btn--green {
  background: #0ca678;
  color: #fff;
  box-shadow: 0 4px 20px rgba(12,166,120,.35);
}
.btn--green:hover {
  background: #099268;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(12,166,120,.45);
}

/* ---- App screenshot inside phone frame ---- */
.app-screenshot-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: float 4s ease-in-out infinite;
}

.app-screenshot-wrapper--green {
  animation-delay: .5s;
}

/* Phone frame */
.phone-frame {
  position: relative;
  width: 272px;
  background: #111;
  border-radius: 44px;
  padding: 14px 10px;
  box-shadow:
    0 0 0 2px #333,
    0 0 0 4px #1a1a1a,
    0 32px 64px rgba(0,0,0,.45),
    0 0 40px rgba(108,71,255,.25);
}

.phone-frame--green {
  box-shadow:
    0 0 0 2px #333,
    0 0 0 4px #1a1a1a,
    0 32px 64px rgba(0,0,0,.45),
    0 0 40px rgba(12,166,120,.25);
}

/* Notch / punch-hole camera */
.phone-frame__notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: #222;
  border-radius: 50%;
  z-index: 2;
  border: 2px solid #2a2a2a;
}

/* Side buttons */
.phone-frame::before {
  content: '';
  position: absolute;
  right: -4px;
  top: 80px;
  width: 4px;
  height: 50px;
  background: #222;
  border-radius: 0 4px 4px 0;
  box-shadow: 0 65px 0 #222;
}
.phone-frame::after {
  content: '';
  position: absolute;
  left: -4px;
  top: 60px;
  width: 4px;
  height: 36px;
  background: #222;
  border-radius: 4px 0 0 4px;
  box-shadow: 0 50px 0 #222, 0 96px 0 #222;
}

.phone-frame__screen {
  border-radius: 34px;
  overflow: hidden;
  background: #000;
  line-height: 0;
}

.app-screenshot {
  width: 100%;
  display: block;
  border-radius: 0;
}

/* Galerinio — plain screenshot (no frame) */
.app-screenshot-wrapper > .app-screenshot {
  width: 260px;
  border-radius: 36px;
  filter: drop-shadow(0 24px 48px rgba(108,71,255,.30));
}

/* ---- Galerinio phone mockup ---- */
.app-page__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-phone {
  width: 240px;
  height: 480px;
  border-radius: 36px;
  padding: 14px;
  position: relative;
  animation: float 4s ease-in-out infinite;
}
.app-phone--galerinio {
  background: var(--color-dark);
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(108,71,255,.3);
}
.app-phone--shopogoliq {
  background: #0d2b22;
  box-shadow: 0 24px 64px rgba(12,166,120,.25), 0 0 0 2px rgba(12,166,120,.3);
}
.app-phone__screen {
  width: 100%;
  height: 100%;
  border-radius: 26px;
  overflow: hidden;
  padding: 16px 12px;
}
.app-phone--galerinio .app-phone__screen { background: #1a1a3e; }
.app-phone--shopogoliq .app-phone__screen { background: #0a2218; }

/* Gallery mock UI */
.gallery-mock { display: flex; flex-direction: column; gap: 10px; height: 100%; }
.gallery-mock__header { display: flex; align-items: center; justify-content: space-between; }
.gallery-mock__title-bar {
  height: 10px; width: 80px;
  background: rgba(255,255,255,.15); border-radius: 5px;
}
.gallery-mock__tabs { display: flex; gap: 6px; }
.gallery-mock__tab {
  height: 6px; width: 28px;
  background: rgba(255,255,255,.1); border-radius: 3px;
}
.gallery-mock__tab--active { background: var(--color-primary); width: 36px; }
.gallery-mock__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  flex: 1;
}
.gallery-mock__cell {
  border-radius: 6px;
  aspect-ratio: 1;
}
.gallery-mock__cell--1 { background: linear-gradient(135deg,#6c47ff,#a78bfa); }
.gallery-mock__cell--2 { background: linear-gradient(135deg,#ff6b6b,#ffa94d); }
.gallery-mock__cell--3 { background: linear-gradient(135deg,#00c9a7,#38d9a9); }
.gallery-mock__cell--4 { background: linear-gradient(135deg,#748ffc,#4dabf7); }
.gallery-mock__cell--5 { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }
.gallery-mock__cell--6 { background: linear-gradient(135deg,#f783ac,#ff6b6b); }
.gallery-mock__cell--7 { background: linear-gradient(135deg,#ffa94d,#ffe066); }
.gallery-mock__cell--8 { background: linear-gradient(135deg,#a78bfa,#748ffc); }
.gallery-mock__cell--9 { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.08); }

/* Shopping mock UI */
.shop-mock { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.shop-mock__header { display: flex; flex-direction: column; gap: 8px; }
.shop-mock__title-bar {
  height: 10px; width: 100px;
  background: rgba(255,255,255,.15); border-radius: 5px;
}
.shop-mock__search {
  height: 28px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
}
.shop-mock__list { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.shop-mock__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,.05);
  border-radius: 8px;
}
.shop-mock__item--checked { background: rgba(12,166,120,.15); }
.shop-mock__check {
  width: 14px; height: 14px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,.2);
  flex-shrink: 0;
}
.shop-mock__item--checked .shop-mock__check {
  background: #0ca678;
  border-color: #0ca678;
}
.shop-mock__item-bar {
  flex: 1; height: 8px;
  background: rgba(255,255,255,.1); border-radius: 4px;
}
.shop-mock__item-bar--lg { width: 70%; }
.shop-mock__price {
  width: 28px; height: 8px;
  background: rgba(255,255,255,.1); border-radius: 4px; flex-shrink: 0;
}
.shop-mock__price--sale { background: #0ca678; }
.shop-mock__total {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px;
  background: rgba(12,166,120,.2); border-radius: 10px;
  gap: 8px;
}
.shop-mock__total-bar { flex:1; height:8px; background:rgba(255,255,255,.15); border-radius:4px; }
.shop-mock__total-num { width: 36px; height:10px; background:#0ca678; border-radius:4px; flex-shrink:0; }

/* ============================================================
   PRIVACY & TERMS
   ============================================================ */
.privacy-section { padding: 120px 0; background: var(--color-bg); }

.privacy-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 48px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 0;
}
.privacy-tab {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--color-text-light);
  padding: 12px 28px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.privacy-tab:hover { color: var(--color-primary); }
.privacy-tab--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  background: var(--color-primary-l);
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.privacy-content--hidden { display: none; }

.privacy-block p {
  font-size: .9375rem;
  color: var(--color-text);
  line-height: 1.75;
  margin: 0;
}
.privacy-block__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 10px;
}

.privacy-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 560px;
  margin: 0 auto 48px;
}

.privacy-link-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 28px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: var(--transition);
}
.privacy-link-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.privacy-link-card--green:hover { border-color: #0ca678; }

.privacy-link-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--color-primary-l);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.privacy-link-card__icon svg { width: 24px; height: 24px; }
.privacy-link-card--green .privacy-link-card__icon {
  background: #d1fae5;
  color: #0ca678;
}

.privacy-link-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.privacy-link-card__name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
}
.privacy-link-card__label {
  font-size: .875rem;
  color: var(--color-text-light);
}

.privacy-link-card__arrow {
  width: 20px;
  height: 20px;
  color: var(--color-text-light);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.privacy-updated {
  text-align: center;
  font-size: .8125rem;
  color: var(--color-text-light);
  margin-top: 8px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f3ff 0%, #fff0f0 100%);
}
.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}
.about__content--full {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.about__content--full .about__list {
  align-items: center;
}
.about__content--full .about__list-item {
  justify-content: center;
}

.about__text {
  font-size: 1rem;
  color: var(--color-text);
  line-height: 1.75;
  margin-bottom: 20px;
}

.about__list { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.about__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--color-dark);
}
.about__check {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process { padding: 120px 0; }

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process__steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary) 0%, rgba(108,71,255,.1) 100%);
  z-index: 0;
}

.process__step {
  position: relative;
  z-index: 1;
  text-align: center;
}
.process__step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 20px rgba(108,71,255,.4);
  letter-spacing: -.01em;
}
.process__step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 12px;
}
.process__step-text {
  font-size: .9rem;
  color: var(--color-text-light);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-2) 100%);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,71,255,.3) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}

.contact__inner { position: relative; z-index: 1; }
.section-header--light { margin-bottom: 56px; }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.contact-info__item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.85);
  font-size: 1rem;
  font-weight: 500;
  transition: color var(--transition);
}
.contact-info__item:hover { color: var(--color-white); }
.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition);
}
.contact-info__item:hover .contact-info__icon { background: rgba(255,255,255,.2); }
.contact-info__icon svg { width: 18px; height: 18px; }

/* ...existing code... */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
}
.form-input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,.07);
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  font-size: .9375rem;
  font-family: var(--font-sans);
  color: var(--color-white);
  transition: var(--transition);
  outline: none;
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-input:focus {
  border-color: var(--color-primary);
  background: rgba(108,71,255,.1);
  box-shadow: 0 0 0 3px rgba(108,71,255,.2);
}
.form-input--textarea { resize: vertical; min-height: 120px; }

.contact-form__note {
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.35);
  margin-top: -4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__brand-name {
  font-size: 1.0625rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
}
.footer__brand-name strong { color: var(--color-white); font-weight: 800; }

.footer__copy {
  font-size: .875rem;
  color: rgba(255,255,255,.35);
}
.footer__copy--small {
  font-size: .75rem;
  color: rgba(255,255,255,.22);
}
.footer__nav { display: flex; gap: 24px; }
.footer__link {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--transition);
}
.footer__link:hover { color: var(--color-white); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .app-page__inner { gap: 48px; }
  .process__steps { grid-template-columns: repeat(2, 1fr); }
  .process__steps::before { display: none; }
}

@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 80px 0 60px; min-height: auto; }
  .hero__visual { order: -1; }
  .phone-mockup { width: 200px; height: 400px; }
  .floating-card--1 { left: 0; top: 20px; }
  .floating-card--2 { right: 0; bottom: 20px; }

  .app-page__inner,
  .app-page__inner--reverse { grid-template-columns: 1fr; direction: ltr; gap: 48px; }
  .app-page__visual { order: -1; }

  .process__steps { grid-template-columns: 1fr; gap: 24px; }

  .contact-form__row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__nav { justify-content: center; flex-wrap: wrap; }

  /* Mobile nav */
  .nav__list {
    display: none;
    position: fixed;
    inset: 72px 0 0;
    background: rgba(250,250,250,.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 99;
  }
  .nav__list.open { display: flex; }
  .nav__burger { display: flex; }
  .nav__link { font-size: 1.125rem; padding: 12px 32px; }
}

@media (max-width: 480px) {
  .hero__stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat__divider { width: 40px; height: 1px; }
  .hero__actions { flex-direction: column; }
  .btn--lg { width: 100%; justify-content: center; }
  .privacy-tabs { flex-direction: column; border-bottom: none; }
  .privacy-tab { border-radius: var(--radius-sm); border-bottom: none; }
  .privacy-tab--active { border-bottom: none; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
::-moz-selection { background: var(--color-primary-l); text-shadow: none; }
::selection       { background: var(--color-primary-l); text-shadow: none; }

.hidden   { display: none !important; }
.visually-hidden {
  border: 0; clip: rect(0,0,0,0); height: 1px; margin: -1px;
  overflow: hidden; padding: 0; position: absolute; white-space: nowrap; width: 1px;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1) var(--reveal-delay, 0ms),
              transform .6s cubic-bezier(.4,0,.2,1) var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .phone-mockup, .floating-card, .about__logo-big { animation: none; }
}

