/* =============================================
   APPIT — CLONE
   ============================================= */

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

:root {
  --bg: #000;
  --bg2: #0a0a0a;
  --card: #111111;
  --card2: #161616;
  --border: #1e1e1e;
  --border2: #2a2a2a;
  --white: #ffffff;
  --text: #ffffff;
  --muted: #888888;
  --dim: #555555;
  --green: #4ADE80;
  --font-head: 'Inter Tight', sans-serif;
  --font-body: 'Instrument Sans', sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --section-pad: 120px 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =============================================
   UTILITIES
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
}
.btn-white {
  background: #fff;
  color: #000;
}
.btn-white:hover { background: #e8e8e8; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--border2);
}
.btn-outline:hover { border-color: #555; background: rgba(255,255,255,0.04); }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--muted);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: white; }
.nav-cta { margin-left: auto; }
.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 140px;
  overflow: hidden;
  background: #000;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1060px;
  width: 90%;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 7px 16px 7px 10px;
  font-size: 13px;
  color: #ccc;
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 28px;
}
.trust-avatars {
  display: flex;
  align-items: center;
}
.avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #111;
  margin-right: -7px;
  object-fit: cover;
  overflow: hidden;
  display: block;
}
.trust-badge .trust-avatars { margin-right: 4px; }
.net-av {
  padding: 2px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 4.8vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.hero-commission-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 8px 22px;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 500;
  color: #e0e0e0;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.hero-commission-badge strong {
  color: #fff;
  font-weight: 700;
}
.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.65;
}
.app-available {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 13px;
  color: var(--muted);
}
.store-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 12px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
}
.store-pill:hover { background: rgba(255,255,255,0.14); }

/* ---- PHONE IMAGES — absolute overlay inside hero ---- */
.hero-phones {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* bottom fade so phones dissolve into page */
.hero-phones::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 220px;
  background: linear-gradient(to top, #000 20%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* Real phone images */
.phone {
  position: absolute;
  display: block;
  pointer-events: auto;
}
.phone-left {
  width: 205px;
  top: 39%;
  left: 50%;
  transform: translateX(-620px) rotate(-6deg);
  z-index: 2;
  opacity: 0.85;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.85));
}
.phone-center {
  width: 260px;
  top: 63%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.9));
}
.phone-right {
  width: 205px;
  top: 37%;
  left: 50%;
  transform: translateX(415px) rotate(6deg);
  z-index: 2;
  opacity: 0.85;
  filter: drop-shadow(0 40px 60px rgba(0,0,0,0.85));
}

/* ---- THREAD SCREEN ---- */
.thread-screen { padding: 0 12px 12px; background: #0a0a0a; }
.thread-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0 12px;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  margin-bottom: 10px;
}
.thread-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.thread-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.thread-figma { background: #1a1a2e; border: 1px solid #333; }
.thread-content { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.thread-name { font-size: 10px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.thread-msg { font-size: 9px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- LOGIN SCREEN ---- */
.login-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 16px 20px;
  background: #000;
  gap: 0;
}
.login-lang { font-size: 9px; color: var(--dim); margin-bottom: 28px; }
.login-logo { margin-bottom: 32px; }
.login-fields { width: 100%; display: flex; flex-direction: column; gap: 8px; margin-top: 8px; }
.login-input {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 9px;
  color: var(--dim);
}
.login-btn {
  background: white;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 9px;
  font-weight: 600;
  color: black;
  text-align: center;
  cursor: pointer;
}

/* ---- SEARCH SCREEN ---- */
.search-screen { padding: 0 10px 10px; background: #0a0a0a; }
.search-header { font-size: 13px; font-weight: 700; padding: 8px 0 10px; }
.search-bar {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 7px 10px;
  margin-bottom: 10px;
}
.search-bar span { font-size: 9px; color: var(--dim); }
.search-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.search-avatar { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.search-info { flex: 1; min-width: 0; }
.search-name { display: block; font-size: 9px; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.search-meta { display: block; font-size: 8px; color: var(--dim); }
.search-follow-btn {
  font-size: 8px;
  font-weight: 600;
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 2px 8px;
  color: white;
  flex-shrink: 0;
  white-space: nowrap;
}
.follow-active { background: rgba(255,255,255,0.1); }

/* ---- CHAT SCREEN ---- */
.chat-screen { padding: 0 12px 10px; background: #0a0a0a; display: flex; flex-direction: column; }
.chat-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 0 10px;
  border-bottom: 1px solid var(--border);
}
.chat-avatar-sm { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; }
.chat-name { font-size: 10px; font-weight: 600; }
.chat-online { font-size: 8px; color: #4ADE80; }
.chat-messages { flex: 1; padding: 12px 0; display: flex; flex-direction: column; gap: 8px; }
.chat-msg {
  max-width: 80%;
  padding: 7px 10px;
  border-radius: 12px;
  font-size: 9px;
  line-height: 1.4;
}
.chat-msg-in { background: rgba(255,255,255,0.07); align-self: flex-start; }
.chat-msg-out { background: rgba(255,255,255,0.15); align-self: flex-end; }
.chat-input-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.chat-type-field {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 10px;
  font-size: 8px;
  color: var(--dim);
}
.chat-send {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ---- ANALYTICS SCREEN ---- */
.analytics-screen { padding: 12px 14px; background: #0a0a0a; }
.an-label { font-size: 11px; font-weight: 700; margin-bottom: 2px; }
.an-sublabel { font-size: 9px; color: var(--muted); margin-bottom: 10px; }
.an-num { font-size: 22px; font-weight: 800; font-family: var(--font-head); margin-bottom: 14px; }
.an-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 80px;
  margin-bottom: 12px;
}
.an-bar {
  flex: 1;
  background: rgba(255,255,255,0.12);
  border-radius: 3px 3px 0 0;
  transition: height 0.5s;
}
.an-bar-hi { background: white; }
.an-footer { font-size: 9px; color: var(--muted); }
.an-footer span { color: white; font-weight: 600; }

/* =============================================
   BRANDS
   ============================================= */
.brands-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
  overflow: hidden;
  background: var(--bg2);
}
.brands-title {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 32px;
  font-family: var(--font-body);
}
.marquee-outer {
  overflow: hidden;
  position: relative;
}
.marquee-outer::before,
.marquee-outer::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-outer::before {
  left: 0;
  background: linear-gradient(to right, var(--bg2), transparent);
}
.marquee-outer::after {
  right: 0;
  background: linear-gradient(to left, var(--bg2), transparent);
}
.marquee-inner {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-25%); }
}
.brand-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  font-family: var(--font-head);
  white-space: nowrap;
  transition: color 0.2s;
}
.brand-item:hover { color: white; }

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  padding: var(--section-pad);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.appit-icon-circle {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.stats-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.stats-sub {
  font-size: 16px;
  color: #888;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}
.stats-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.stat-item {
  flex: 1;
  padding: 0 32px;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.03em;
  white-space: nowrap;
  margin-bottom: 8px;
}
.stat-item p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.stat-divider {
  width: 1px;
  height: 80px;
  background: var(--border2);
  flex-shrink: 0;
  margin-top: 8px;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-section {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-top: 60px;
}
.bc-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.benefit-card {
  background: #09090a;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  min-height: 241px;
  transition: border-color 0.3s;
}
.benefit-card:hover { border-color: var(--border2); }

/* Центральная колонка с телефоном */
.bc-center {
  position: relative;
  overflow: hidden;
}
.bc-svg-bg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 391px;
  display: block;
  pointer-events: none;
}
.bc-phone-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 309px;
  display: block;
}
.bc-phone-screen {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 281px;
  height: 591px;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  display: block;
}

.benefit-icon-wrap {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.benefit-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.benefit-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* legacy — больше не используется */
.benefit-phone-img {
  width: 180px;
  border-radius: 24px;
  display: none;
  display: block;
}

/* =============================================
   CAPABILITIES
   ============================================= */
.cap-section {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.cap-grid-rev { direction: rtl; }
.cap-grid-rev > * { direction: ltr; }

.cap-text h2 {
  font-family: var(--font-head);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.cap-desc { font-size: 16px; color: var(--muted); line-height: 1.7; margin-bottom: 32px; margin-top: -20px; }

.cap-list { display: flex; flex-direction: column; gap: 20px; }
.cap-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}
.cap-item:hover { border-color: var(--border2); }
.cap-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cap-item h4 { font-family: var(--font-head); font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.cap-item p { font-size: 13px; color: var(--muted); line-height: 1.5; }

.cap-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.cap-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  color: white;
  font-weight: 500;
}

.store-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: white;
  transition: background 0.2s, border-color 0.2s;
}
.store-btn:hover { background: #202020; border-color: #444; }
.store-label { display: block; font-size: 10px; color: var(--muted); line-height: 1; }
.store-name { display: block; font-size: 14px; font-weight: 700; font-family: var(--font-head); line-height: 1.4; }

.cap-phone-wrap { display: flex; justify-content: center; align-items: flex-start; }

/* Section 1 phone box (438×548, phone LEFT) */
.cap1-phone-box {
  position: relative;
  width: 438px;
  height: 548px;
  overflow: hidden;
  border-radius: 24px;
  flex-shrink: 0;
}
.cap1-bg-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}
.cap1-frame {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 255px;
  display: block;
}
.cap1-screen {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 227px;
  height: 484px;
  object-fit: cover;
  object-position: top;
  border-radius: 28px;
  display: block;
}
.cap1-grad {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 254px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

/* Section 2 phone box (542×548, phone RIGHT) */
.cap2-phone-box {
  position: relative;
  width: 542px;
  height: 548px;
  overflow: hidden;
  border-radius: 24px;
  flex-shrink: 0;
}
.cap2-bg-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  display: block;
  pointer-events: none;
}
.cap2-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 310px;
  display: block;
}
.cap2-screen {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 282px;
  height: 591px;
  object-fit: cover;
  object-position: top;
  border-radius: 32px;
  display: block;
}
.cap2-grad {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 254px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

/* 2×2 feature cards grid (section 1) */
.cap-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.cap-card {
  background: #0d0d0e;
  border: 1px solid #1d1d20;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.25s;
}
.cap-card:hover { border-color: #333; }
.cap-card-hd {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cap-card-icon { flex-shrink: 0; }
.cap-card h4 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.cap-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.phone-float { animation: floatPhone 4s ease-in-out infinite; }
@keyframes floatPhone {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-7px); }
}

/* =============================================
   FEATURES
   ============================================= */
.features-section {
  padding: var(--section-pad);
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
  margin-top: 60px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.feature-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}
.fc-img-area {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.fc-main-img {
  display: block;
  width: 100%;
  height: 284px;
  object-fit: cover;
  object-position: top;
}
.fc-img-grad {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}
.fc-bottom {
  padding: 20px 20px 24px;
  flex: 1;
}
.fc-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.fc-title-row img { flex-shrink: 0; }
.fc-title-row h3 {
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  color: white;
}
.fc-bottom p { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* notif preview */
.fp-notif { display: flex; flex-direction: column; gap: 7px; }
.fn-item { font-size: 10px; color: var(--muted); background: rgba(255,255,255,0.04); border-radius: 8px; padding: 6px 10px; }

/* insights preview */
.fp-insights { display: flex; align-items: flex-end; justify-content: center; padding: 8px; }
.fi-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; width: 100%; }
.fi-bar { flex: 1; background: rgba(255,255,255,0.12); border-radius: 3px 3px 0 0; }
.fi-bar-hi { background: white; }

/* msg preview */
.fp-msg { display: flex; flex-direction: column; gap: 6px; }
.fm-msg { font-size: 9px; padding: 6px 10px; border-radius: 10px; max-width: 80%; }
.fm-in { background: rgba(255,255,255,0.07); align-self: flex-start; }
.fm-out { background: rgba(255,255,255,0.15); align-self: flex-end; }

/* sched preview */
.fp-sched {}
.fs-month { font-size: 10px; color: var(--muted); margin-bottom: 10px; }
.fs-days { display: flex; gap: 8px; }
.fs-day { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 600; }
.fs-active { background: white; color: black; }
.fs-dot { position: relative; }
.fs-dot::after { content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 4px; height: 4px; border-radius: 50%; background: white; }

/* =============================================
   PRICING
   ============================================= */
.pricing-section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}
.pricing-toggle {
  display: inline-flex;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 48px;
  gap: 0;
}
.ptoggle {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 100px;
  cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.ptoggle.active {
  background: white;
  color: black;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 100%;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
  transition: border-color 0.3s;
}
.pricing-card:hover { border-color: var(--border2); }
.pc-premium { border-color: #333; }
.pc-header-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.pc-name { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.pc-save-badge {
  font-size: 11px;
  font-weight: 600;
  background: rgba(74,222,128,0.12);
  color: var(--green);
  border-radius: 100px;
  padding: 4px 10px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 10px;
}
.pc-dollar { font-size: 24px; font-family: var(--font-head); font-weight: 700; }
.pc-num { font-size: 52px; font-family: var(--font-head); font-weight: 800; letter-spacing: -0.04em; line-height: 1; }
.pc-per { font-size: 14px; color: var(--muted); margin-left: 4px; }
.pc-desc { font-size: 14px; color: var(--muted); margin-bottom: 22px; line-height: 1.6; }
.pc-btn { width: 100%; justify-content: center; font-size: 15px; padding: 13px; }
.pc-line { border: none; border-top: 1px solid var(--border); margin: 24px 0; }
.pc-label { font-size: 12px; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }
.pc-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.pc-list li svg { flex-shrink: 0; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials-section {
  padding: var(--section-pad);
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
  overflow: hidden;
}
.testi-wrap {
  overflow: hidden;
  margin-top: 48px;
  position: relative;
}
.testi-wrap::before,
.testi-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.testi-wrap::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.testi-wrap::after { right: 0; background: linear-gradient(to left, #000, transparent); }
.testi-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: testi-marquee 40s linear infinite;
  padding: 8px 0 16px;
}
.testi-wrap:hover .testi-track { animation-play-state: paused; }
@keyframes testi-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testi-card {
  flex-shrink: 0;
  width: 320px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  transition: border-color 0.3s;
}
.testi-card:hover { border-color: var(--border2); }
.testi-card p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.ta-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  object-fit: cover;
  overflow: hidden;
}
.ta-name { font-size: 14px; font-weight: 700; }
.ta-role { font-size: 12px; color: var(--muted); }

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  padding: var(--section-pad);
  max-width: 780px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}
.faq-list { margin-top: 48px; text-align: left; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 22px 0;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}
.faq-q:hover { color: #ddd; }
.faq-plus {
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }
.faq-a p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* =============================================
   DOWNLOAD CTA
   ============================================= */
.download-section {
  padding: 100px 24px 0;
  text-align: center;
  overflow: hidden;
}
.dl-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 20px;
}
.dl-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.dl-btns { justify-content: center; margin-bottom: 80px; }
.dl-phones {
  position: relative;
  height: 420px;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.dlp {
  position: absolute;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.8));
}
.dlp-left {
  width: 170px;
  left: 50%;
  transform: translateX(-50%) translateX(-250px) rotate(-6deg);
  opacity: 0.8;
  bottom: 0;
}
.dlp-center {
  width: 210px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 2;
}
.dlp-right {
  width: 170px;
  left: 50%;
  transform: translateX(-50%) translateX(230px) rotate(6deg);
  opacity: 0.8;
  bottom: 0;
}
.dl-phones::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to top, #000 0%, transparent 100%);
  pointer-events: none;
  z-index: 10;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  border-top: 1px solid var(--border);
  padding: 80px 24px 40px;
  background: var(--bg2);
}
.footer-body {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo-icon { margin-bottom: 4px; }
.footer-logo-circle {
  width: 68px;
  height: 68px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.footer-tagline {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.footer-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 100px;
  padding: 10px 20px;
  transition: border-color 0.2s;
}
.footer-email:hover { border-color: #444; color: white; }
.footer-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: white; }
.footer-nav span { color: var(--border2); }
.footer-social { display: flex; gap: 12px; }
.soc-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card);
  border: 1px solid var(--border2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.soc-btn:hover { background: #222; border-color: #444; }
.footer-bottom {
  display: flex;
  gap: 32px;
  font-size: 13px;
  color: var(--dim);
  padding-top: 8px;
  border-top: 1px solid var(--border);
  width: 100%;
  justify-content: center;
}
.footer-bottom a { color: var(--dim); text-decoration: none; transition: color 0.2s; }
.footer-bottom a:hover { color: white; }

/* =============================================
   SCROLL REVEAL ANIMATIONS
   ============================================= */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-mobile-toggle { display: flex; }

  .phone-left { width: 170px; transform: translateX(-400px) rotate(-5deg); top: 42%; }
  .phone-right { width: 170px; transform: translateX(230px) rotate(5deg); top: 40%; }
  .phone-center { width: 215px; top: 58%; }

  .benefits-grid { grid-template-columns: 1fr; }
  .bc-center { min-height: 480px; }
  .bc-phone-frame { width: 260px; }
  .bc-phone-screen { width: 237px; height: 498px; }

  .cap-grid { grid-template-columns: 1fr; gap: 40px; }
  .cap-grid-rev { direction: ltr; }
  .cap1-phone-box { width: 100%; max-width: 438px; height: 420px; margin: 0 auto; }
  .cap1-frame { width: 200px; top: 20px; }
  .cap1-screen { width: 178px; height: 380px; top: 28px; }
  .cap2-phone-box { width: 100%; max-width: 438px; height: 420px; margin: 0 auto; }
  .cap2-frame { width: 240px; }
  .cap2-screen { width: 219px; height: 460px; }
  .cap-cards-grid { grid-template-columns: 1fr 1fr; }

  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; }

  .stats-row { flex-direction: column; align-items: center; gap: 32px; }
  .stat-divider { width: 80px; height: 1px; }

  .dl-phones { height: 320px; }
  .dlp-left { width: 140px; transform: translateX(-50%) translateX(-155px) rotate(-5deg); }
  .dlp-right { width: 140px; transform: translateX(-50%) translateX(140px) rotate(5deg); }
  .dlp-center { width: 175px; }
}

@media (max-width: 580px) {
  :root { --section-pad: 80px 0; }

  .hero { padding-top: 110px; }
  .phone-left, .phone-right { display: none; }
  .phone-center { width: 175px; top: 65%; transform: translateX(-50%); }

  .benefits-grid { grid-template-columns: 1fr; }
  .bc-center { min-height: 400px; }
  .bc-phone-frame { width: 220px; }
  .bc-phone-screen { width: 200px; height: 420px; }

  .features-grid { grid-template-columns: 1fr; }
  .cap-cards-grid { grid-template-columns: 1fr; }
  .cap1-phone-box { height: 340px; }
  .cap2-phone-box { height: 340px; }

  .testi-card { width: 280px; }

  .dl-phones { height: 250px; }
  .dlp-left, .dlp-right { display: none; }
  .dlp-center { transform: translateX(-50%); }

  .footer-bottom { flex-direction: column; gap: 12px; align-items: center; }
}
