/* ================================================================
   HOME V3 — Modern Landing Page
   OnayTR.com
   ================================================================ */

/* ---------- 1. CSS Variables ---------- */
:root {
  --v3-primary: #6c4de6;
  --v3-primary-light: #8b6cf6;
  --v3-primary-bg: #f0ebff;
  --v3-primary-rgb: 108, 77, 230;
  --v3-surface: #f8fafc;
  --v3-text: #334155;
  --v3-text-dark: #1e293b;
  --v3-text-light: #64748b;
  --v3-border: #e2e8f0;
  --v3-white: #ffffff;
  --v3-radius: 16px;
  --v3-radius-sm: 10px;
  --v3-radius-pill: 999px;
  --v3-shadow: 0 4px 24px rgba(0,0,0,.06);
  --v3-shadow-lg: 0 12px 40px rgba(0,0,0,.10);
  --v3-font: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --v3-transition: .3s cubic-bezier(.4,0,.2,1);
  --v3-max-w: 1200px;
}

/* ---------- 2. Base ---------- */
.v3-body {
  margin: 0;
  padding: 0;
  font-family: var(--v3-font);
  color: var(--v3-text);
  background: var(--v3-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.v3-body *, .v3-body *::before, .v3-body *::after { box-sizing: border-box; }

.v3-container {
  max-width: var(--v3-max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.v3-section {
  padding: 80px 0;
}

.v3-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--v3-radius-pill);
  background: var(--v3-primary-bg);
  color: var(--v3-primary);
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.v3-section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--v3-text-dark);
  line-height: 1.2;
  margin: 0 0 16px;
}

.v3-section-subtitle {
  font-size: 1.05rem;
  color: var(--v3-text-light);
  max-width: 600px;
  margin: 0;
}

.v3-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--v3-radius-sm);
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: var(--v3-transition);
  font-family: var(--v3-font);
}
.v3-btn-primary {
  background: var(--v3-primary);
  color: var(--v3-white);
}
.v3-btn-primary:hover {
  background: var(--v3-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--v3-primary-rgb), .35);
}
.v3-btn-outline {
  background: transparent;
  color: var(--v3-primary);
  border: 2px solid var(--v3-primary);
}
.v3-btn-outline:hover {
  background: var(--v3-primary);
  color: var(--v3-white);
}

/* ---------- 3. Sticky Header (Full Width) ---------- */
.v3-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--v3-border);
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--v3-transition);
}
.v3-header.scrolled {
  background: rgba(255,255,255,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.v3-header-logo img {
  height: 38px;
  display: block;
}
.v3-header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v3-header-nav a {
  padding: 8px 14px;
  font-size: .875rem;
  font-weight: 500;
  color: var(--v3-text);
  text-decoration: none;
  border-radius: var(--v3-radius-pill);
  transition: var(--v3-transition);
}
.v3-header-nav a:hover,
.v3-header-nav a.active {
  color: var(--v3-primary);
  background: var(--v3-primary-bg);
}
.v3-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v3-header-cta {
  padding: 10px 24px;
  font-size: .85rem;
  border-radius: 8px;
  background: var(--v3-primary);
  color: var(--v3-white);
  text-decoration: none;
  font-weight: 600;
  transition: var(--v3-transition);
}
.v3-header-cta:hover {
  background: var(--v3-primary-light);
  box-shadow: 0 4px 16px rgba(var(--v3-primary-rgb), .3);
}
.v3-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--v3-text-dark);
  cursor: pointer;
  padding: 4px;
}

/* ---------- 4. Hero Section ---------- */
.v3-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: #fff;
}
.v3-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--v3-surface));
  z-index: 1;
  pointer-events: none;
}

/* Animated blob background */
.v3-hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.v3-hero-bg span {
  width: 50vmin;
  height: 50vmin;
  border-radius: 50vmin;
  backface-visibility: hidden;
  position: absolute;
  animation: v3BlobMove linear infinite;
}
.v3-hero-bg span:nth-child(1)  { color: rgba(var(--v3-primary-rgb), .15); top: 10%; left: 85%;  animation-duration: 220s; animation-delay: -180s; transform-origin: -15vw -24vh; box-shadow: -100vmin 0 13vmin currentColor; }
.v3-hero-bg span:nth-child(2)  { color: rgba(var(--v3-primary-rgb), .12); top: 80%; left: 48%;  animation-duration: 34s;  animation-delay: -100s; transform-origin: -19vw 20vh;  box-shadow: -100vmin 0 13vmin currentColor; }
.v3-hero-bg span:nth-child(3)  { color: rgba(var(--v3-primary-rgb), .15); top: 18%; left: 50%;  animation-duration: 140s; animation-delay: -130s; transform-origin: -6vw -13vh;  box-shadow: 100vmin 0 12.5vmin currentColor; }
.v3-hero-bg span:nth-child(4)  { color: rgba(var(--v3-primary-rgb), .12); top: 36%; left: 38%;  animation-duration: 90s;  animation-delay: -30s;  transform-origin: 10vw -11vh;  box-shadow: -100vmin 0 12.5vmin currentColor; }
.v3-hero-bg span:nth-child(5)  { color: rgba(var(--v3-primary-rgb), .15); top: 95%; left: 22%;  animation-duration: 36s;  animation-delay: -9s;   transform-origin: 5vw 3vh;    box-shadow: 100vmin 0 13vmin currentColor; }
.v3-hero-bg span:nth-child(6)  { color: rgba(var(--v3-primary-rgb), .12); top: 95%; left: 12%;  animation-duration: 150s; animation-delay: -15s;  transform-origin: -2vw 12vh;   box-shadow: -100vmin 0 13vmin currentColor; }
.v3-hero-bg span:nth-child(7)  { color: rgba(var(--v3-primary-rgb), .15); top: 72%; left: 55%;  animation-duration: 32s;  animation-delay: -230s; transform-origin: -18vw -4vh;  box-shadow: -100vmin 0 13vmin currentColor; }
.v3-hero-bg span:nth-child(8)  { color: rgba(var(--v3-primary-rgb), .12); top: 42%; left: 80%;  animation-duration: 76s;  animation-delay: -130s; transform-origin: -7vw 7vh;    box-shadow: -100vmin 0 12.5vmin currentColor; }
.v3-hero-bg span:nth-child(9)  { color: rgba(var(--v3-primary-rgb), .15); top: 55%; left: 76%;  animation-duration: 105s; animation-delay: -145s; transform-origin: 2vw -6vh;    box-shadow: -100vmin 0 13.4vmin currentColor; }
.v3-hero-bg span:nth-child(10) { color: rgba(var(--v3-primary-rgb), .12); top: 75%; left: 32%;  animation-duration: 33s;  animation-delay: -60s;  transform-origin: -17vw 6vh;   box-shadow: -100vmin 0 12.8vmin currentColor; }
.v3-hero-bg span:nth-child(11) { color: rgba(var(--v3-primary-rgb), .15); top: 96%; left: 55%;  animation-duration: 160s; animation-delay: -175s; transform-origin: -3vw -5vh;   box-shadow: -100vmin 0 13.4vmin currentColor; }
.v3-hero-bg span:nth-child(12) { color: rgba(var(--v3-primary-rgb), .12); top: 40%; left: 26%;  animation-duration: 210s; animation-delay: -110s; transform-origin: -21vw -24vh;  box-shadow: 100vmin 0 12.8vmin currentColor; }

.v3-hero-grid,
.v3-hero-content,
.v3-phone-wrapper {
  position: relative;
  z-index: 1;
}
.v3-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.v3-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.v3-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--v3-radius-pill);
  background: var(--v3-white);
  border: 1px solid var(--v3-border);
  font-size: .78rem;
  font-weight: 500;
  color: var(--v3-text-light);
  animation: v3FloatTag 3s ease-in-out infinite;
}
.v3-hero-tag:nth-child(2) { animation-delay: .5s; }
.v3-hero-tag:nth-child(3) { animation-delay: 1s; }
.v3-hero-tag:nth-child(4) { animation-delay: 1.5s; }

.v3-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--v3-text-dark);
  margin: 0 0 20px;
}
.v3-hero-title .v3-highlight {
  color: var(--v3-primary);
  position: relative;
}
.v3-hero-title .v3-highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 8px;
  background: rgba(var(--v3-primary-rgb), .18);
  border-radius: 4px;
  z-index: -1;
}
.v3-hero-desc {
  font-size: 1.05rem;
  color: var(--v3-text-light);
  margin: 0 0 28px;
  line-height: 1.7;
}
.v3-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.v3-hero-prices-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--v3-primary);
  font-size: .88rem;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s, gap .25s;
}
.v3-hero-prices-link:hover {
  color: var(--v3-accent);
  gap: 8px;
}
.v3-hero-prices-link .fa-chevron-down {
  font-size: .65rem;
  animation: v3BounceDown 1.8s ease-in-out infinite;
}
@keyframes v3BounceDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(3px); }
}
.v3-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
}
.v3-hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--v3-text-dark);
  display: block;
}
.v3-hero-stat-label {
  font-size: .82rem;
  color: var(--v3-text-light);
  font-weight: 500;
}

.v3-hero-stores {
  display: flex;
  gap: 14px;
  margin-top: 20px;
  grid-column: 1 / -1;
  justify-content: center;
  align-items: center;
}
.v3-hero-store-btn {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform .25s, opacity .25s;
  border-radius: 10px;
  overflow: hidden;
}
.v3-hero-store-btn:hover {
  transform: translateY(-2px);
  opacity: .85;
}
.v3-store-badge {
  height: 46px;
  width: auto;
  display: block;
  border-radius: 10px;
}

/* ---------- 5. Phone Mockup ---------- */
.v3-phone-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.v3-phone {
  width: 280px;
  background: var(--v3-text-dark);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.1) inset;
  position: relative;
}
.v3-phone-notch {
  width: 100px;
  height: 24px;
  background: var(--v3-text-dark);
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.v3-phone-screen {
  background: var(--v3-surface);
  border-radius: 26px;
  overflow: hidden;
  height: 480px;
  position: relative;
}
.v3-phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px 6px;
  font-size: .65rem;
  font-weight: 600;
  color: var(--v3-text-dark);
  background: var(--v3-white);
  position: relative;
  z-index: 2;
}
.v3-phone-header {
  background: var(--v3-white);
  padding: 10px 16px 10px;
  border-bottom: 1px solid var(--v3-border);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-phone-logo {
  height: 28px;
  display: block;
}

.v3-notif-track {
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.v3-notif-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 10px;
  animation: v3ScrollNotifs 18s linear infinite;
}
.v3-phone-screen:hover .v3-notif-list {
  animation-play-state: paused;
}
.v3-notif-card {
  background: var(--v3-white);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  flex-shrink: 0;
}
.v3-notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  color: var(--v3-white);
  flex-shrink: 0;
}
.v3-notif-icon.wa { background: #25d366; }
.v3-notif-icon.tg { background: #0088cc; }
.v3-notif-icon.go { background: #4285f4; }
.v3-notif-icon.ig { background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af); }
.v3-notif-icon.fb { background: #1877f2; }
.v3-notif-icon.am { background: #ff9900; }
.v3-notif-icon.tw { background: #1da1f2; }
.v3-notif-icon.dc { background: #5865f2; }
.v3-notif-icon.tk { background: #010101; }
.v3-notif-icon.ub { background: #000000; }

.v3-notif-body {
  flex: 1;
  min-width: 0;
}
.v3-notif-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3px;
}
.v3-notif-name {
  font-size: .72rem;
  font-weight: 700;
  color: var(--v3-text-dark);
}
.v3-notif-time {
  font-size: .6rem;
  color: var(--v3-text-light);
}
.v3-notif-code {
  font-size: .68rem;
  color: var(--v3-text);
  line-height: 1.3;
}
.v3-notif-code strong {
  color: var(--v3-primary);
  font-weight: 700;
}

/* ---------- 6. Logo Marquee ---------- */
.v3-marquee-heading {
  text-align: center;
  padding: 48px 24px 20px;
  background: transparent;
}
.v3-marquee-heading .v3-section-title {
  margin-bottom: 0;
}
.v3-marquee-section {
  padding: 40px 0;
  background: transparent;
  overflow: hidden;
  position: relative;
}
.v3-marquee-section::before,
.v3-marquee-section::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.v3-marquee-section::before {
  left: 0;
  background: linear-gradient(90deg, #f5f3fb, transparent);
}
.v3-marquee-section::after {
  right: 0;
  background: linear-gradient(270deg, #f5f3fb, transparent);
}
.v3-marquee-track {
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
  animation: v3Marquee 90s linear infinite;
}
.v3-marquee-item:hover ~ .v3-marquee-item,
.v3-marquee-item:hover {
  animation-play-state: paused;
}
.v3-marquee-track:has(.v3-marquee-item:hover) {
  animation-play-state: paused;
}
.v3-marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--v3-white);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-radius-sm);
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 600;
  color: var(--v3-text);
  transition: var(--v3-transition);
  flex-shrink: 0;
}
a.v3-marquee-item {
  text-decoration: none;
  color: var(--v3-text);
}
.v3-marquee-item:hover {
  box-shadow: var(--v3-shadow);
  border-color: var(--v3-primary);
  color: var(--v3-primary);
  background: var(--v3-primary-bg);
}
.v3-marquee-item i {
  font-size: 1.2rem;
}

/* Country marquee (reverse direction) */
.v3-marquee-countries {
  border-top: none;
  padding-top: 0;
}
.v3-marquee-countries::before {
  background: linear-gradient(90deg, #f5f3fb, transparent);
}
.v3-marquee-countries::after {
  background: linear-gradient(270deg, #f5f3fb, transparent);
}
.v3-marquee-reverse {
  animation: v3MarqueeReverse 100s linear infinite;
}
.v3-marquee-flag {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.v3-marquee-country-item {
  gap: 8px;
}
.v3-marquee-code {
  font-size: .75rem;
  color: var(--v3-text-light);
  font-weight: 500;
}

/* ---------- 7. Global Stats ---------- */
.v3-stats-section {
  padding: 48px 0;
  background: linear-gradient(to bottom, var(--v3-surface), #fff);
}
.v3-stats-card {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border-radius: 24px;
  padding: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--v3-max-w);
  margin: 0 auto;
  box-shadow: 0 20px 60px rgba(15, 23, 42, .25);
}
.v3-stat-item {
  text-align: center;
  position: relative;
}
.v3-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.v3-stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--v3-white);
  display: block;
  line-height: 1.1;
}
.v3-stat-number .v3-stat-suffix {
  font-size: .6em;
  color: var(--v3-primary-light);
  margin-left: 2px;
}
.v3-stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  margin-top: 8px;
  display: block;
  font-weight: 500;
}

/* ---------- 8. Gradient Service Cards ---------- */
.v3-features-section {
  background: linear-gradient(to bottom, #fff, var(--v3-surface) 30%, var(--v3-surface) 70%, #fff);
  padding: 80px 0;
}
.v3-features-header {
  text-align: center;
  margin-bottom: 48px;
}
.v3-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-feature-card {
  border-radius: var(--v3-radius);
  padding: 32px 28px;
  border: 1px solid transparent;
  transition: var(--v3-transition);
  position: relative;
  overflow: hidden;
}
.v3-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--v3-shadow-lg);
}

.v3-feature-card.card-blue   { background: linear-gradient(135deg, #eff6ff 0%, #fff 100%); border-color: #bfdbfe; }
.v3-feature-card.card-green  { background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%); border-color: #bbf7d0; }
.v3-feature-card.card-purple { background: linear-gradient(135deg, #f5f3ff 0%, #fff 100%); border-color: #ddd6fe; }
.v3-feature-card.card-orange { background: linear-gradient(135deg, #fff7ed 0%, #fff 100%); border-color: #fed7aa; }
.v3-feature-card.card-indigo { background: linear-gradient(135deg, #eef2ff 0%, #fff 100%); border-color: #c7d2fe; }
.v3-feature-card.card-red    { background: linear-gradient(135deg, #fef2f2 0%, #fff 100%); border-color: #fecaca; }

.v3-feature-card.card-blue:hover   { border-color: #3b82f6; }
.v3-feature-card.card-green:hover  { border-color: #22c55e; }
.v3-feature-card.card-purple:hover { border-color: #8b5cf6; }
.v3-feature-card.card-orange:hover { border-color: #f97316; }
.v3-feature-card.card-indigo:hover { border-color: #6366f1; }
.v3-feature-card.card-red:hover    { border-color: #ef4444; }

.v3-feature-anim {
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.v3-feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--v3-text-dark);
  margin: 0 0 10px;
}
.v3-feature-card p {
  font-size: .88rem;
  color: var(--v3-text-light);
  margin: 0;
  line-height: 1.6;
}

/* Card 1: Code typing animation */
.v3-anim-code {
  background: #1e293b;
  border-radius: 10px;
  padding: 14px 18px;
  font-family: 'Courier New', monospace;
  font-size: .85rem;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 160px;
}
.v3-anim-code-prefix { opacity: .6; }
.v3-anim-code-text {
  overflow: hidden;
  white-space: nowrap;
  animation: v3TypeCode 3s steps(6) infinite;
  border-right: 2px solid #22c55e;
}

/* Card 2: Shield pulse */
.v3-anim-shield {
  width: 64px;
  height: 64px;
  position: relative;
}
.v3-anim-shield-icon {
  font-size: 2.5rem;
  color: #22c55e;
  animation: v3PulseShield 2s ease-in-out infinite;
}
.v3-anim-shield-check {
  position: absolute;
  bottom: 0;
  right: -4px;
  width: 22px;
  height: 22px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .6rem;
  animation: v3PopCheck 2s ease-in-out infinite;
}

/* Card 3: Privacy lock */
.v3-anim-privacy {
  display: flex;
  gap: 6px;
  align-items: center;
}
.v3-anim-privacy-bar {
  width: 6px;
  height: 32px;
  border-radius: 3px;
  background: var(--v3-primary-light);
  animation: v3BarPulse 1.5s ease-in-out infinite;
}
.v3-anim-privacy-bar:nth-child(2) { animation-delay: .2s; height: 48px; }
.v3-anim-privacy-bar:nth-child(3) { animation-delay: .4s; height: 24px; }
.v3-anim-privacy-bar:nth-child(4) { animation-delay: .6s; height: 40px; }
.v3-anim-privacy-bar:nth-child(5) { animation-delay: .8s; height: 28px; }

/* Card 4: Orbiting flags */
.v3-anim-orbit {
  width: 120px;
  height: 120px;
  position: relative;
  margin: 0 auto;
}
.v3-anim-orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38px;
  height: 38px;
  background: var(--v3-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 2px 12px rgba(var(--v3-primary-rgb), .3);
}
.v3-anim-orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px dashed rgba(var(--v3-primary-rgb), .2);
  border-radius: 50%;
}
.v3-anim-orbit-dot {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,.12);
  top: 50%;
  left: 50%;
  margin: -13px 0 0 -13px;
  animation: v3OrbitDot 14s linear infinite;
}
.v3-anim-orbit-dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes v3OrbitDot {
  from { transform: rotate(var(--angle)) translateX(56px) rotate(calc(-1 * var(--angle))); }
  to   { transform: rotate(calc(var(--angle) + 360deg)) translateX(56px) rotate(calc(-1 * (var(--angle) + 360deg))); }
}

.v3-orbit-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 8px;
}
.v3-orbit-flags img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.1);
}
.v3-orbit-flags-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 22px;
  border-radius: 11px;
  background: var(--v3-primary-bg);
  color: var(--v3-primary);
  font-size: .65rem;
  font-weight: 700;
}

/* Card 5: Chat support */
.v3-anim-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 160px;
}
.v3-anim-chat-bubble {
  padding: 8px 14px;
  border-radius: 12px 12px 12px 4px;
  font-size: .72rem;
  max-width: 130px;
  opacity: 0;
  animation: v3ChatBubble 4s ease-in-out infinite;
}
.v3-anim-chat-bubble.user {
  background: var(--v3-primary);
  color: #fff;
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
  animation-delay: 0s;
}
.v3-anim-chat-bubble.agent {
  background: #e2e8f0;
  color: var(--v3-text-dark);
  align-self: flex-start;
  animation-delay: 1.5s;
}

/* Card 6: SIM card */
.v3-anim-sim {
  display: flex;
  align-items: center;
  gap: 12px;
}
.v3-anim-sim-card {
  width: 40px;
  height: 52px;
  background: linear-gradient(135deg, var(--v3-primary), var(--v3-primary-light));
  border-radius: 6px 6px 6px 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.v3-anim-sim-chip {
  width: 18px;
  height: 14px;
  background: #fbbf24;
  border-radius: 2px;
  border: 1px solid #d97706;
}
.v3-anim-sim-info {
  font-size: .78rem;
}
.v3-anim-sim-number {
  font-weight: 700;
  color: var(--v3-text-dark);
  display: block;
}
.v3-anim-sim-label {
  font-size: .68rem;
  color: var(--v3-text-light);
}
.v3-anim-sim-signal {
  display: flex;
  gap: 2px;
  margin-top: 4px;
}
.v3-anim-sim-bar {
  width: 3px;
  border-radius: 2px;
  background: #22c55e;
  animation: v3SimBar 2s ease-in-out infinite;
}
.v3-anim-sim-bar:nth-child(1) { height: 6px; }
.v3-anim-sim-bar:nth-child(2) { height: 10px; animation-delay: .15s; }
.v3-anim-sim-bar:nth-child(3) { height: 14px; animation-delay: .3s; }
.v3-anim-sim-bar:nth-child(4) { height: 18px; animation-delay: .45s; }

/* ---------- 9. How It Works (Phone Mockups) ---------- */
.v3-steps-section {
  padding: 80px 0;
}
.v3-steps-header {
  text-align: center;
  margin-bottom: 56px;
}

.v3-steps-phones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.v3-step-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}
.v3-step-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--v3-primary);
  color: var(--v3-white);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 16px rgba(var(--v3-primary-rgb), .3);
}
.v3-step-phone-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--v3-text-dark);
  margin: 18px 0 6px;
}
.v3-step-phone-desc {
  font-size: .85rem;
  color: var(--v3-text-light);
  margin: 0;
  max-width: 280px;
  line-height: 1.5;
}

/* Smaller phone for steps */
.v3-phone-sm {
  width: 250px;
  border-radius: 32px;
  padding: 10px;
}
.v3-phone-sm .v3-phone-notch {
  width: 80px;
  height: 20px;
  border-radius: 0 0 12px 12px;
  top: 10px;
}
.v3-phone-sm .v3-phone-screen {
  border-radius: 22px;
  height: 440px;
}

/* Mock panel inside phones */
.v3-mock-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.v3-mock-panel-title {
  font-size: .78rem;
  font-weight: 700;
  color: var(--v3-white);
  background: var(--v3-primary);
  padding: 8px 14px;
  border-radius: 6px;
  margin: 8px 10px 6px;
  text-align: left;
}
.v3-mock-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 10px 6px;
  padding: 8px 12px;
  border: 1px solid var(--v3-border);
  border-radius: 8px;
  font-size: .68rem;
  color: var(--v3-text-light);
  background: var(--v3-white);
}
.v3-mock-search i { font-size: .6rem; color: #cbd5e1; }

/* App list mockup */
.v3-mock-app-list {
  flex: 1;
  overflow: hidden;
  padding: 0 6px;
}
.v3-mock-app-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 500;
  color: var(--v3-text-dark);
  transition: var(--v3-transition);
  cursor: default;
}
.v3-mock-app-row:hover {
  background: var(--v3-surface);
}
.v3-mock-app-active {
  background: var(--v3-primary) !important;
  color: var(--v3-white) !important;
}
.v3-mock-app-icon {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.v3-mock-panel-footer {
  padding: 8px;
  text-align: center;
  font-size: .68rem;
  font-weight: 600;
  color: var(--v3-primary);
  border-top: 1px solid var(--v3-border);
  margin-top: auto;
}
.v3-mock-panel-footer i { font-size: .6rem; }

/* Country list mockup */
.v3-mock-country-list {
  flex: 1;
  overflow: hidden;
  padding: 0 6px;
}
.v3-mock-country-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: .7rem;
  font-weight: 500;
  color: var(--v3-text-dark);
  transition: var(--v3-transition);
  cursor: default;
}
.v3-mock-country-row:hover {
  background: var(--v3-surface);
}
.v3-mock-country-active {
  background: rgba(var(--v3-primary-rgb), .08);
  border: 1px solid rgba(var(--v3-primary-rgb), .25);
}
.v3-mock-country-row img {
  width: 22px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.v3-mock-country-row span:first-of-type {
  flex: 1;
}
.v3-mock-price {
  font-weight: 700;
  color: var(--v3-primary);
  font-size: .68rem;
}

/* Result screen mockup */
.v3-mock-result {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 16px;
  gap: 8px;
}
.v3-mock-result-icon {
  font-size: 2.8rem;
  color: #22c55e;
  animation: v3PulseShield 2s ease-in-out infinite;
}
.v3-mock-result-app {
  font-size: .82rem;
  font-weight: 600;
  color: var(--v3-text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.v3-mock-result-app i { font-size: 1rem; }
.v3-mock-result-country {
  font-size: .72rem;
  color: var(--v3-text-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.v3-mock-result-country img {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
}
.v3-mock-result-number {
  font-size: .85rem;
  font-weight: 600;
  color: var(--v3-text);
  letter-spacing: .03em;
  margin-top: 4px;
}
.v3-mock-result-label {
  font-size: .65rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--v3-text-light);
  margin-top: 10px;
}
.v3-mock-result-code {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--v3-primary);
  letter-spacing: .08em;
  animation: v3PopCheck 2.5s ease-in-out infinite;
}
.v3-mock-result-copy {
  margin-top: 12px;
  padding: 8px 20px;
  background: var(--v3-primary);
  color: var(--v3-white);
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---------- 10. Pricing Table ---------- */
.v3-pricing-section {
  background: linear-gradient(to bottom, #fff, var(--v3-surface) 30%, var(--v3-surface) 70%, #fff);
  padding: 80px 0;
}
.v3-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}
.v3-pricing-card {
  background: var(--v3-white);
  border-radius: 20px;
  border: 1px solid var(--v3-border);
  overflow: hidden;
  box-shadow: var(--v3-shadow);
}
.v3-pricing-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--v3-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.v3-pricing-tabs::-webkit-scrollbar { display: none; }
.v3-pricing-tab {
  padding: 8px 18px;
  border-radius: var(--v3-radius-pill);
  border: 1px solid var(--v3-border);
  background: transparent;
  font-size: .82rem;
  font-weight: 600;
  color: var(--v3-text);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--v3-transition);
  font-family: var(--v3-font);
  display: flex;
  align-items: center;
  gap: 6px;
}
.v3-pricing-tab:hover { border-color: var(--v3-primary); color: var(--v3-primary); }
.v3-pricing-tab.active {
  background: var(--v3-primary);
  color: var(--v3-white);
  border-color: var(--v3-primary);
}
.v3-pricing-tab.active i { color: var(--v3-white) !important; }
.v3-pricing-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.v3-pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.v3-pricing-table thead th {
  padding: 14px 20px;
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--v3-text-light);
  background: var(--v3-surface);
  text-align: left;
  border-bottom: 1px solid var(--v3-border);
}
.v3-pricing-table tbody td {
  padding: 14px 20px;
  font-size: .88rem;
  color: var(--v3-text);
  border-bottom: 1px solid var(--v3-border);
}
.v3-pricing-table tbody tr:hover {
  background: rgba(var(--v3-primary-rgb), .03);
}
.v3-pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.v3-pricing-country {
  display: flex;
  align-items: center;
  gap: 10px;
}
.v3-pricing-country img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 2px;
}
.v3-pricing-service {
  display: flex;
  align-items: center;
  gap: 8px;
}
.v3-pricing-service i {
  font-size: 1.1rem;
  flex-shrink: 0;
}
.v3-pricing-service span {
  font-weight: 500;
}
.v3-pricing-success {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--v3-radius-pill);
  font-size: .75rem;
  font-weight: 600;
}
.v3-pricing-success.high { background: #dcfce7; color: #16a34a; }
.v3-pricing-success.medium { background: #fef9c3; color: #ca8a04; }
.v3-pricing-price {
  font-weight: 700;
  color: var(--v3-text-dark);
}
.v3-pricing-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--v3-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.v3-pricing-note {
  font-size: .78rem;
  color: var(--v3-text-light);
}
.v3-pricing-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  display: inline-block;
  animation: v3BlinkLive 1.5s ease-in-out infinite;
  margin-right: 6px;
}

/* ---------- 11. FAQ Accordion ---------- */
.v3-faq-section {
  padding: 80px 0;
}
.v3-faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.v3-faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.v3-faq-item {
  background: var(--v3-white);
  border: 1px solid var(--v3-border);
  border-radius: var(--v3-radius);
  overflow: hidden;
  transition: var(--v3-transition);
}
.v3-faq-item:hover,
.v3-faq-item.open {
  border-color: rgba(var(--v3-primary-rgb), .3);
  box-shadow: 0 4px 16px rgba(var(--v3-primary-rgb), .06);
}
.v3-faq-header-btn {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--v3-font);
}
.v3-faq-question {
  font-size: 1rem;
  font-weight: 600;
  color: var(--v3-text-dark);
  margin: 0;
}
.v3-faq-chevron {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--v3-primary-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--v3-primary);
  font-size: .75rem;
  flex-shrink: 0;
  transition: var(--v3-transition);
}
.v3-faq-item.open .v3-faq-chevron {
  background: var(--v3-primary);
  color: var(--v3-white);
  transform: rotate(180deg);
}
.v3-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1);
}
.v3-faq-item.open .v3-faq-body {
  max-height: 500px;
}
.v3-faq-answer {
  padding: 0 24px 20px;
  font-size: .92rem;
  color: var(--v3-text-light);
  line-height: 1.7;
  margin: 0;
}
.v3-faq-answer a {
  color: var(--v3-primary);
  text-decoration: none;
  font-weight: 600;
}
.v3-faq-answer a:hover { text-decoration: underline; }
.v3-faq-video-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 6px 24px;
  padding: 9px 18px;
  border-radius: 10px;
  background: #ff0000;
  color: #fff !important;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .25s, transform .25s;
}
.v3-faq-video-link:hover { background: #cc0000; transform: translateY(-1px); }
.v3-faq-video-link i { font-size: 1.1rem; }

/* ---------- 12. Blog Cards ---------- */
.v3-blog-section {
  background: linear-gradient(to bottom, #fff, var(--v3-surface) 30%, var(--v3-surface) 70%, #fff);
  padding: 80px 0;
}
.v3-blog-header {
  text-align: center;
  margin-bottom: 48px;
}
.v3-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.v3-blog-card {
  background: var(--v3-white);
  border-radius: var(--v3-radius);
  overflow: hidden;
  border: 1px solid var(--v3-border);
  transition: var(--v3-transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.v3-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--v3-shadow-lg);
  border-color: rgba(var(--v3-primary-rgb), .2);
}
.v3-blog-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.v3-blog-card:hover .v3-blog-card-img {
  transform: scale(1.04);
}
.v3-blog-card-img-wrap {
  overflow: hidden;
}
.v3-blog-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.v3-blog-card-date {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 600;
  color: var(--v3-text-light);
}
.v3-blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v3-text-dark);
  margin: 0;
  line-height: 1.4;
}
.v3-blog-card:hover .v3-blog-card-title {
  color: var(--v3-primary);
}
.v3-blog-card-excerpt {
  font-size: .85rem;
  color: var(--v3-text-light);
  line-height: 1.6;
  margin: 0;
}
.v3-blog-card-readmore {
  font-size: .82rem;
  font-weight: 600;
  color: var(--v3-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: auto;
  padding-top: 8px;
}

/* ---------- 13. SEO Text Section ---------- */
.v3-seo-section {
  padding: 60px 0;
}
.v3-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.v3-seo-block {
  padding: 24px;
  background: var(--v3-surface);
  border-radius: var(--v3-radius);
  border: 1px solid var(--v3-border);
}
.v3-seo-block h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--v3-text-dark);
  margin: 0 0 10px;
}
.v3-seo-block p {
  font-size: .88rem;
  color: var(--v3-text-light);
  margin: 0;
  line-height: 1.7;
}

/* ---------- 14. CTA Section ---------- */
.v3-cta-section {
  padding: 80px 0;
}
.v3-cta-card {
  background: linear-gradient(135deg, var(--v3-primary) 0%, var(--v3-primary-light) 100%);
  border-radius: 24px;
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: var(--v3-white);
  position: relative;
  overflow: hidden;
}
.v3-cta-card::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  right: -100px;
  top: -100px;
  pointer-events: none;
}
.v3-cta-btn {
  position: relative;
  z-index: 2;
}
.v3-cta-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 0 10px;
}
.v3-cta-desc {
  font-size: 1rem;
  opacity: .85;
  margin: 0;
}
.v3-cta-btn {
  padding: 16px 32px;
  border-radius: var(--v3-radius-sm);
  background: var(--v3-white);
  color: var(--v3-primary);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--v3-transition);
}
.v3-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

/* ---------- 15. Scroll Reveal ---------- */
.v3-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.v3-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.v3-reveal-delay-1 { transition-delay: .1s; }
.v3-reveal-delay-2 { transition-delay: .2s; }
.v3-reveal-delay-3 { transition-delay: .3s; }
.v3-reveal-delay-4 { transition-delay: .4s; }
.v3-reveal-delay-5 { transition-delay: .5s; }

/* ---------- 16. Keyframe Animations ---------- */
@keyframes v3BlobMove {
  100% { transform: translate3d(0, 0, 1px) rotate(360deg); }
}

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

@keyframes v3ScrollNotifs {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes v3Marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes v3MarqueeReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

@keyframes v3TypeCode {
  0%, 100% { width: 0; }
  50%, 80% { width: 5.5ch; }
}

@keyframes v3PulseShield {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 8px rgba(34,197,94,.4)); }
}

@keyframes v3PopCheck {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes v3BarPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

@keyframes v3Orbit {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes v3ChatBubble {
  0%, 10%  { opacity: 0; transform: translateY(8px) scale(.9); }
  20%, 80% { opacity: 1; transform: translateY(0) scale(1); }
  90%, 100%{ opacity: 0; transform: translateY(-4px) scale(.95); }
}

@keyframes v3SimBar {
  0%, 100% { opacity: .3; }
  50% { opacity: 1; }
}

@keyframes v3BlinkLive {
  0%, 100% { opacity: 1; }
  50% { opacity: .3; }
}

/* ---------- 17. Responsive ---------- */
@media (max-width: 1024px) {
  .v3-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .v3-hero-tags { justify-content: center; }
  .v3-hero-buttons { justify-content: center; }
  .v3-hero-prices-link { justify-content: center; width: 100%; }
  .v3-hero-stats { justify-content: center; }
  .v3-hero-stores { display: flex; justify-content: center; }
  .v3-phone-wrapper { margin-top: 16px; }
  .v3-phone { width: 260px; }
  .v3-phone-screen { height: 420px; }

  .v3-features-grid { grid-template-columns: repeat(2, 1fr); }

  .v3-steps-phones { gap: 20px; }
  .v3-phone-sm { width: 220px; }
  .v3-phone-sm .v3-phone-screen { height: 400px; }

  .v3-blog-grid { grid-template-columns: repeat(2, 1fr); }
  .v3-seo-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .v3-header {
    padding: 0 16px;
    height: 58px;
  }
  .v3-header-nav { display: none; }
  .v3-mobile-toggle { display: block; }

  .v3-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(16px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    pointer-events: none;
    transition: var(--v3-transition);
  }
  .v3-mobile-menu.open {
    opacity: 1;
    pointer-events: all;
  }
  .v3-mobile-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--v3-text-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: var(--v3-radius-sm);
    transition: var(--v3-transition);
  }
  .v3-mobile-menu a:hover { color: var(--v3-primary); background: var(--v3-primary-bg); }
  .v3-mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--v3-text-dark);
    cursor: pointer;
  }

  .v3-hero { padding: 100px 0 40px; }
  .v3-hero-title { font-size: 1.8rem; }
  .v3-hero-stats { flex-wrap: wrap; gap: 20px; }
  .v3-hero-stores { flex-wrap: wrap; gap: 10px; }
  .v3-store-badge { height: 40px; }

  .v3-stats-card {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 24px;
    margin: -30px 16px 0;
  }
  .v3-stat-item:not(:last-child)::after { display: none; }
  .v3-stat-item:not(:last-child) {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .v3-features-grid { grid-template-columns: 1fr; }
  .v3-steps-phones { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto; }
  .v3-blog-grid { grid-template-columns: 1fr; }

  .v3-cta-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  .v3-section { padding: 56px 0; }
}

@media (max-width: 480px) {
  .v3-hero-title { font-size: 1.5rem; }
  .v3-hero-desc { font-size: .92rem; }
  .v3-hero-buttons { flex-direction: column; align-items: stretch; }
  .v3-hero-buttons .v3-btn { justify-content: center; }

  .v3-phone { width: 230px; }
  .v3-phone-screen { height: 380px; }

  .v3-steps-phones { grid-template-columns: 1fr; max-width: 280px; margin: 0 auto; }
  .v3-phone-sm { width: 100%; }
  .v3-phone-sm .v3-phone-screen { height: 420px; }

  .v3-section-title { font-size: 1.5rem; }

  .v3-pricing-tabs { gap: 6px; padding: 14px 16px; }
  .v3-pricing-table thead th,
  .v3-pricing-table tbody td { padding: 10px 12px; font-size: .8rem; }
}

/* ========== FOOTER ========== */
.v3-footer {
  background: #f4f5f9;
  color: #4a4f63;
  font-size: .9rem;
  line-height: 1.7;
  margin-top: 0;
}
.v3-footer a { color: #4a4f63; text-decoration: none; transition: color .25s, transform .25s; }
.v3-footer a:hover { color: var(--v3-primary); }

.v3-footer-top { padding: 72px 0 48px; }
.v3-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}

.v3-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.v3-footer-logo { height: 36px; width: auto; }
.v3-footer-tagline { color: #6b7186; font-size: .85rem; line-height: 1.65; max-width: 320px; }
.v3-footer-socials { display: flex; gap: 10px; margin-top: 4px; }
.v3-footer-socials a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(0,0,0,.05);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: #6b7186;
  transition: background .25s, color .25s, transform .25s;
}
.v3-footer-socials a:hover { background: var(--v3-primary); color: #fff; transform: translateY(-2px); }

.v3-footer-app-btn {
  display: inline-flex !important; align-items: center; gap: 8px;
  padding: 11px 22px; border-radius: 12px; margin-top: 4px;
  background: linear-gradient(135deg, #6C4DE6, #A855F7) !important;
  color: #ffffff !important; font-weight: 600; font-size: .85rem;
  transition: transform .25s, box-shadow .25s;
  width: fit-content; text-decoration: none !important;
  line-height: 1.2; letter-spacing: .3px;
}
.v3-footer-app-btn i,
.v3-footer-app-btn span { color: #ffffff !important; }
.v3-footer-app-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(108,77,230,.35); color: #ffffff !important; }

.v3-footer-col-title {
  color: #1a1d2e; font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.2px;
  margin-bottom: 18px; position: relative; padding-bottom: 10px;
}
.v3-footer-col-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--v3-primary);
}

.v3-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.v3-footer-links a { font-size: .85rem; display: inline-flex; align-items: center; gap: 6px; }
.v3-footer-links a:hover { color: var(--v3-primary); transform: translateX(3px); }
.v3-footer-links i { font-size: .8rem; color: var(--v3-primary); width: 16px; text-align: center; }
.v3-footer-separator { height: 1px; background: rgba(0,0,0,.07); margin: 6px 0; }

/* Footer bottom */
.v3-footer-bottom {
  border-top: 1px solid rgba(0,0,0,.08);
  padding: 24px 0;
}
.v3-footer-disclaimer {
  color: #8a8fa2; font-size: .78rem; line-height: 1.6;
  max-width: 900px; margin: 0 0 16px;
}
.v3-footer-copyright {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.v3-footer-copyright span { color: #8a8fa2; font-size: .8rem; }
.v3-footer-webmetri img { height: 22px; opacity: .45; transition: opacity .25s; }
.v3-footer-webmetri:hover img { opacity: .85; }

/* Footer responsive */
@media (max-width: 1024px) {
  .v3-footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .v3-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .v3-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .v3-footer-brand { grid-column: 1 / -1; }
  .v3-footer-top { padding: 48px 0 32px; }
  .v3-footer-copyright { flex-direction: column; align-items: flex-start; }
}
