/* ═══════════════════════════════════════════════════════════
   RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-0: #050514;
  --bg-1: #0a0a24;
  --bg-2: #111133;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.72);
  --text-dim: rgba(255, 255, 255, 0.5);
  --accent-1: #a78bfa;
  --accent-2: #22d3ee;
  --accent-3: #f472b6;
  --grad-primary: linear-gradient(135deg, #8b5cf6 0%, #22d3ee 50%, #f472b6 100%);
  --grad-btn: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
  --grad-btn-hover: linear-gradient(135deg, #a78bfa 0%, #818cf8 100%);
  --shadow-glow: 0 20px 60px -15px rgba(139, 92, 246, 0.55);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.35);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
}

html {
  scroll-behavior: smooth;
  /* Lock horizontal scroll + sideways "rubber-band" so swipes only go up/down. */
  overflow-x: hidden;
  max-width: 100vw;
  /* Prevent pinch-zoom and horizontal pan; only vertical scroll allowed. */
  touch-action: pan-y;
  overscroll-behavior-x: none;
  /* iOS Safari ignores user-scalable=no — also tell webkit to never scale. */
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: 'Heebo', 'Rubik', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-0);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  touch-action: pan-y;
  overscroll-behavior-x: none;
  min-height: 100vh;
  position: relative;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Signature canvas needs free pan so the pen captures every pixel. */
.sig-canvas-wrap, .sig-canvas-wrap canvas { touch-action: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ═══════════════════════════════════════════════════════════
   BACKGROUND BLOBS
═══════════════════════════════════════════════════════════ */
.bg-blobs {
  position: fixed; inset: 0; z-index: -1;
  overflow: hidden; pointer-events: none;
  background:
    radial-gradient(ellipse at top, #1a1040 0%, transparent 50%),
    radial-gradient(ellipse at bottom, #0a0a24 0%, var(--bg-0) 60%);
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: blob-float 20s ease-in-out infinite;
}
.blob-1 { width: 620px; height: 620px; background: radial-gradient(#8b5cf6, transparent 70%); top: -150px; right: -100px; animation-delay: 0s; }
.blob-2 { width: 500px; height: 500px; background: radial-gradient(#22d3ee, transparent 70%); top: 30%; left: -100px; animation-delay: -6s; }
.blob-3 { width: 560px; height: 560px; background: radial-gradient(#f472b6, transparent 70%); bottom: -100px; left: 40%; animation-delay: -12s; opacity: 0.3; }

@keyframes blob-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.08); }
  66% { transform: translate(-20px, 30px) scale(0.94); }
}

.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

/* ═══════════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════════ */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; }
.section { padding: 100px 0; position: relative; }

.section-head { text-align: center; max-width: 780px; margin: 0 auto 64px; }
.eyebrow {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--accent-1);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.section-title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
}

.gradient-text {
  background: var(--grad-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--grad-btn);
  color: white;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.6);
}
.btn-primary:hover {
  background: var(--grad-btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(139, 92, 246, 0.8);
}
.btn-ghost {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border-strong);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: var(--surface-strong);
  border-color: var(--accent-1);
  transform: translateY(-2px);
}
.btn-large { padding: 15px 30px; font-size: 16px; border-radius: 14px; }
.btn-block { display: flex; width: 100%; }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 16px 24px;
  background: rgba(5, 5, 20, 0.72);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 20px; }
.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--grad-btn);
  border-radius: 10px;
  font-size: 18px;
  box-shadow: 0 4px 14px -4px rgba(139, 92, 246, 0.6);
}
.logo-text { letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text-soft);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-cta { display: flex; gap: 10px; align-items: center; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  padding: 80px 24px 100px;
  position: relative;
}
.hero-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  font-size: 13px; font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}
.pill-small { padding: 4px 10px; font-size: 11px; }
.pill-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 10px #22d3ee;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-trust {
  display: flex; align-items: center; gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.trust-item { display: flex; flex-direction: column; gap: 2px; }
.trust-item strong { font-size: 22px; font-weight: 800; }
.trust-item span { font-size: 13px; color: var(--text-dim); }
.trust-divider { width: 1px; height: 36px; background: var(--border-strong); }

/* ─── Hero visual (mockup) ─── */
.hero-visual { position: relative; }
.mockup {
  position: relative;
  transform: perspective(1200px) rotateY(6deg) rotateX(-4deg) rotate(-1deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.mockup:hover { transform: perspective(1200px) rotateY(2deg) rotateX(-2deg); }
.mockup-glow {
  position: absolute; inset: -40px;
  background: var(--grad-primary);
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  border-radius: 40px;
}
.mockup-frame {
  background: linear-gradient(180deg, #1a1a40 0%, #0f0f2e 100%);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.mockup-header {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  background: rgba(0,0,0,0.3);
  border-bottom: 1px solid var(--border);
}
.mockup-header .dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28c840; }
.mockup-url {
  margin-right: auto;
  font-size: 11px;
  color: var(--text-dim);
  font-family: 'SF Mono', Monaco, monospace;
  direction: ltr;
}
.mockup-body { padding: 22px; }
.m-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.m-label { font-size: 12px; color: var(--text-dim); margin-bottom: 4px; }
.m-big {
  font-size: 32px; font-weight: 800;
  background: var(--grad-primary);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.m-spark { width: 120px; height: 48px; }
.m-spark svg { width: 100%; height: 100%; }
.m-grid { display: grid; grid-template-columns: 1fr; gap: 8px; margin-bottom: 16px; }
.m-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex; align-items: center; gap: 12px;
  position: relative;
  transition: transform 0.3s;
}
.m-card:hover { transform: translateX(4px); }
.m-card-title { font-size: 13px; font-weight: 600; }
.m-card-sub { font-size: 11px; color: var(--text-dim); }
.m-card > div:first-child { flex: 1; }
.m-badge {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 20px;
  letter-spacing: 0.3px;
}
.m-badge-green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.m-badge-yellow { background: rgba(234, 179, 8, 0.2); color: #facc15; }
.m-badge-blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.m-cta {
  padding: 12px;
  background: var(--grad-btn);
  border-radius: 10px;
  text-align: center;
  font-size: 13px; font-weight: 600;
}

.mockup-float {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  background: rgba(15, 15, 46, 0.85);
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
  animation: float 5s ease-in-out infinite;
}
.mockup-float-1 { top: 10%; left: -18%; animation-delay: -1s; }
.mockup-float-2 { bottom: 15%; right: -14%; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.mf-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #4ade80; color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
}
.mf-icon.emoji { background: rgba(234, 179, 8, 0.2); }
.mf-title { font-size: 12px; font-weight: 700; }
.mf-sub { font-size: 10px; color: var(--text-dim); }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .mockup { transform: none; }
  .mockup-float-1 { left: -4%; }
  .mockup-float-2 { right: -4%; }
  .hero-trust { flex-wrap: wrap; gap: 16px; }
  .trust-divider { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   COMPARISON
═══════════════════════════════════════════════════════════ */
.compare {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; max-width: 900px; margin: 0 auto;
}
.compare-col {
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.compare-others { opacity: 0.66; }
.compare-kalwork {
  border-color: var(--accent-1);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.1), rgba(34, 211, 238, 0.05));
  box-shadow: 0 20px 50px -20px rgba(139, 92, 246, 0.4);
  position: relative;
}
.compare-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 20px; margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.compare-logo-gray { font-size: 17px; font-weight: 700; color: var(--text-dim); }
.compare-logo-kalwork {
  display: flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 800;
}
.compare-list { list-style: none; }
.compare-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .x, .compare-list .v {
  width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px;
  flex-shrink: 0;
}
.compare-list .x { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.compare-list .v { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

@media (max-width: 700px) {
  .compare { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL
═══════════════════════════════════════════════════════════ */
.testimonial-section { padding: 40px 0; }
.testimonial {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 40px; align-items: center;
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  position: relative;
}
.testimonial-media { position: relative; }
.testimonial-avatar {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; font-weight: 800;
  color: white;
  position: relative; z-index: 2;
}
.testimonial-ring {
  position: absolute; inset: -10px;
  border: 2px dashed var(--accent-1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
  opacity: 0.5;
}
@keyframes rotate { to { transform: rotate(360deg); } }
.quote-mark {
  font-size: 72px; font-weight: 900;
  color: var(--accent-1);
  line-height: 0.5;
  margin-bottom: 10px;
  opacity: 0.6;
}
.testimonial-quote {
  font-size: 20px; font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.5;
}
.testimonial-author strong { font-size: 16px; display: block; }
.testimonial-author span { font-size: 14px; color: var(--text-dim); }

@media (max-width: 700px) {
  .testimonial { grid-template-columns: 1fr; text-align: center; padding: 28px; }
  .testimonial-avatar { margin: 0 auto; }
}

/* ═══════════════════════════════════════════════════════════
   CARDS 3
═══════════════════════════════════════════════════════════ */
.cards-3 {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cards-2 {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px; margin: 0 auto;
}
@media (max-width: 700px) { .cards-2 { grid-template-columns: 1fr; } }
.feature-card {
  padding: 36px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(139, 92, 246, 0.08) 100%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
  border-radius: inherit;
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.feature-card:hover::before { opacity: 1; }
.feature-card.featured {
  border-color: var(--accent-1);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), transparent);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.grad-a { background: linear-gradient(135deg, #8b5cf6, #6366f1); }
.grad-b { background: linear-gradient(135deg, #22d3ee, #0ea5e9); }
.grad-c { background: linear-gradient(135deg, #f472b6, #ec4899); }
.feature-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.feature-card p { color: var(--text-soft); margin-bottom: 20px; font-size: 15px; }
.card-link {
  color: var(--accent-1);
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s;
}
.card-link:hover { color: var(--accent-2); }

@media (max-width: 900px) { .cards-3 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   STEPS
═══════════════════════════════════════════════════════════ */
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 1100px; margin: 0 auto;
}
.step {
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s;
}
.step:hover {
  border-color: var(--accent-1);
  transform: translateY(-4px);
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--grad-btn);
  color: white;
  font-size: 24px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.7);
}
.step h3 { font-size: 20px; margin-bottom: 10px; font-weight: 700; }
.step p { color: var(--text-soft); font-size: 15px; }
.step-connector {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--accent-1), var(--accent-2));
  align-self: center;
  opacity: 0.5;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   TOOLS GRID
═══════════════════════════════════════════════════════════ */
.tools-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.tool {
  padding: 28px 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.tool:hover {
  transform: translateY(-4px);
  border-color: var(--accent-1);
  background: var(--surface-strong);
}
.tool-emoji { font-size: 38px; margin-bottom: 14px; display: block; }
.tool h4 { font-size: 16px; margin-bottom: 6px; font-weight: 700; }
.tool p { font-size: 13px; color: var(--text-soft); line-height: 1.4; }

@media (max-width: 900px) { .tools-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════════
   APP SECTION
═══════════════════════════════════════════════════════════ */
.app-section { padding: 140px 0; }
.app-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.app-text .eyebrow { margin-bottom: 20px; }
.app-text .section-title { text-align: right; }
.app-features {
  list-style: none;
  margin: 32px 0;
}
.app-features li {
  padding: 10px 0;
  font-size: 16px;
  color: var(--text-soft);
}
.app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: black;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-size: 13px; font-weight: 500;
  transition: all 0.2s;
}
.store-badge:hover { transform: translateY(-2px); border-color: var(--accent-1); }
.store-badge small { font-size: 10px; font-weight: 400; color: var(--text-dim); }

/* Phone mockup */
.app-phone { display: flex; justify-content: center; }
.phone {
  width: 280px; height: 560px;
  background: linear-gradient(180deg, #1a1a40 0%, #0f0f2e 100%);
  border-radius: 44px;
  border: 8px solid #0a0a24;
  padding: 20px;
  position: relative;
  box-shadow: 0 40px 80px -20px rgba(139, 92, 246, 0.5);
  transition: transform 0.5s;
}
.phone:hover { transform: rotate(-2deg) translateY(-6px); }
.phone-notch {
  width: 100px; height: 24px;
  background: #0a0a24;
  border-radius: 0 0 16px 16px;
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
}
.phone-screen { padding-top: 24px; }
.phone-time {
  font-size: 12px; font-weight: 600; text-align: left;
  padding: 4px 16px;
  color: var(--text-soft);
  direction: ltr;
}
.phone-card {
  margin: 20px 0;
  padding: 20px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.phone-card-title { font-size: 14px; font-weight: 700; margin-bottom: 14px; color: var(--accent-1); }
.phone-row {
  display: flex; justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.phone-row:last-child { border: none; }
.phone-row span { color: var(--text-dim); }
.phone-btn {
  margin-top: 16px;
  padding: 14px;
  background: var(--grad-btn);
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 900px) {
  .app-inner { grid-template-columns: 1fr; }
  .app-text .section-title { text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════ */
.pricing {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px; margin: 0 auto;
}
.price-card {
  padding: 40px 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.price-featured {
  border-color: var(--accent-1);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.15), transparent);
  box-shadow: 0 20px 50px -20px rgba(139, 92, 246, 0.5);
  transform: scale(1.04);
}
.price-featured:hover { transform: scale(1.04) translateY(-6px); }
.price-badge {
  position: absolute; top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px; font-weight: 700;
  color: white;
}
.price-name { font-size: 18px; font-weight: 700; color: var(--accent-1); }
.price-desc { font-size: 14px; color: var(--text-dim); margin-bottom: 20px; }
.price-num {
  font-size: 52px; font-weight: 800; line-height: 1;
  margin-bottom: 28px;
}
.price-num .cur { font-size: 24px; vertical-align: top; margin-left: 2px; color: var(--text-soft); }
.price-num .per { font-size: 15px; font-weight: 400; color: var(--text-dim); margin-right: 4px; }
.price-list { list-style: none; margin-bottom: 28px; }
.price-list li {
  padding: 10px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.price-list li:last-child { border: none; }

@media (max-width: 900px) {
  .pricing { grid-template-columns: 1fr; }
  .price-featured { transform: none; }
  .price-featured:hover { transform: translateY(-6px); }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE PRICE (dramatic)
═══════════════════════════════════════════════════════════ */
.single-price-wrap { display: flex; justify-content: center; }
.single-price {
  position: relative;
  max-width: 560px; width: 100%;
  padding: 50px 44px 40px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(139, 92, 246, 0.18), rgba(34, 211, 238, 0.1) 60%, rgba(244, 114, 182, 0.1)),
    rgba(10, 10, 36, 0.9);
  border: 1.5px solid transparent;
  background-clip: padding-box;
  text-align: center;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.single-price::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: 32px; padding: 1.5px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.single-price-glow {
  position: absolute; inset: -80px;
  background: var(--grad-primary);
  filter: blur(120px);
  opacity: 0.35;
  z-index: 0;
  animation: glow-pulse 7s ease-in-out infinite;
}
.single-price > *:not(.single-price-glow) { position: relative; z-index: 2; }
.single-price-badge {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-strong);
  font-size: 13px; font-weight: 600;
  color: var(--accent-1);
  margin-bottom: 22px;
  letter-spacing: 0.3px;
}
.single-price-name {
  font-size: 22px; font-weight: 700;
  margin-bottom: 6px;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.single-price-desc { color: var(--text-soft); margin-bottom: 32px; font-size: 15px; }
.single-price-num {
  display: flex; align-items: flex-start; justify-content: center; gap: 8px;
  margin-bottom: 14px;
  line-height: 1;
}
.single-price-num .cur { font-size: 40px; font-weight: 700; color: var(--text-soft); margin-top: 14px; }
.single-price-num .amount {
  font-size: 128px; font-weight: 900;
  letter-spacing: -0.06em;
  background: var(--grad-primary);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 6s ease infinite;
  text-shadow: 0 0 80px rgba(139, 92, 246, 0.5);
}
.single-price-num .per {
  font-size: 16px; font-weight: 600;
  text-align: right;
  margin-top: 14px;
  color: var(--text-soft);
}
.single-price-num .per em { font-size: 13px; font-style: normal; color: var(--text-dim); }
.single-price-highlight {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: rgba(34, 211, 238, 0.12);
  border: 1px solid rgba(34, 211, 238, 0.4);
  border-radius: 100px;
  font-size: 15px; font-weight: 600;
  color: #67e8f9;
  margin-bottom: 36px;
}
.single-price-highlight .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22d3ee;
  box-shadow: 0 0 12px #22d3ee;
  animation: pulse-dot 2s ease-in-out infinite;
}
.single-price-features {
  list-style: none;
  text-align: right;
  margin-bottom: 32px;
  display: grid; grid-template-columns: 1fr;
  gap: 4px;
}
.single-price-features li {
  padding: 10px 0;
  font-size: 15px;
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.single-price-features li:last-child { border: none; }
.single-price-features .ic {
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(34, 197, 94, 0.2); color: #4ade80;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.single-price-features .feat-note {
  margin-top: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--border-strong);
  font-size: 13px;
  color: var(--text-soft);
  font-style: italic;
}
.single-price-features .feat-note .ic-info {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  font-family: serif;
  font-style: italic;
}
.single-price-foot {
  margin-top: 20px;
  font-size: 12px; color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   CTA actions wrapper
═══════════════════════════════════════════════════════════ */
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item[open] { border-color: var(--accent-1); background: rgba(139, 92, 246, 0.05); }
.faq-item summary {
  padding: 20px 26px;
  font-size: 17px; font-weight: 600;
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 24px; font-weight: 400;
  color: var(--accent-1);
  transition: transform 0.3s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-body {
  padding: 0 26px 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════════════════════ */
.cta-section { padding: 80px 0; }
.cta-card {
  max-width: 900px; margin: 0 auto;
  padding: 70px 40px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(34, 211, 238, 0.1)),
    var(--surface);
  border: 1px solid var(--accent-1);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}
.cta-glow {
  position: absolute; inset: -100px;
  background: var(--grad-primary);
  filter: blur(140px);
  opacity: 0.25;
  z-index: 0;
  animation: glow-pulse 8s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}
.cta-card > * { position: relative; z-index: 1; }
.cta-title { font-size: clamp(34px, 5vw, 56px); font-weight: 900; margin-bottom: 16px; line-height: 1.1; }
.cta-sub { font-size: 18px; color: var(--text-soft); margin-bottom: 36px; }
.cta-form {
  display: flex; gap: 12px;
  max-width: 520px; margin: 0 auto;
  flex-wrap: wrap;
}
.cta-form input {
  flex: 1;
  padding: 15px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  color: white;
  font-size: 15px;
  font-family: inherit;
  min-width: 200px;
  outline: none;
  transition: border-color 0.2s;
}
.cta-form input:focus { border-color: var(--accent-1); }
.cta-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
}
.footer-top {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  color: var(--text-soft);
  margin-top: 14px;
  font-size: 14px;
  max-width: 320px;
}
.footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.footer-cols h5 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  padding: 5px 0;
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--accent-1); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap; gap: 14px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase;
  transition: all 0.2s;
}
.footer-social a:hover {
  background: var(--grad-btn);
  border-color: transparent;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL (handled by JS via .revealed)
═══════════════════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s, transform 0.7s; }
.reveal.revealed { opacity: 1; transform: none; }

/* Selection */
::selection { background: var(--accent-1); color: white; }
::-moz-selection { background: var(--accent-1); color: white; }

/* Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-0); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent-1), var(--accent-2)); border-radius: 10px; }
