/* ========================================
   IPHONE PHOTO TRANSFER — LANDING PAGE
   Unique Desktop App Design
   ======================================== */

/* === DESIGN TOKENS === */
:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Surface palette — dark editorial feel */
  --bg-page: #fafafa;
  --bg-card: #ffffff;
  --bg-dark: #0b0f1a;
  --bg-dark-2: #131827;
  --bg-dark-card: rgba(255,255,255,0.04);

  /* Brand colors */
  --blue: #3b82f6;
  --cyan: #06b6d4;
  --purple: #8b5cf6;
  --emerald: #10b981;
  --orange: #f59e0b;
  --pink: #ec4899;
  --red: #ef4444;

  --grad-brand: linear-gradient(135deg, #3b82f6, #06b6d4);
  --grad-accent: linear-gradient(135deg, #8b5cf6, #ec4899);
  --grad-hero: linear-gradient(180deg, #0b0f1a 0%, #111631 50%, #1a1040 100%);

  /* Text */
  --text-1: #0f172a;
  --text-2: #475569;
  --text-3: #94a3b8;
  --text-inv: #f1f5f9;
  --text-inv-2: rgba(255,255,255,0.6);

  /* Radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.12);
  --shadow-glow-blue: 0 0 40px rgba(59,130,246,0.25);
  --shadow-glow-cyan: 0 0 40px rgba(6,182,212,0.2);

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { font-size:16px; scroll-behavior:smooth; scroll-padding-top:80px; }
body {
  font-family: var(--font);
  color: var(--text-1);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width:100%; height:auto; display:block; }
a { text-decoration:none; color:inherit; }
button { border:none; background:none; font-family:var(--font); cursor:pointer; }

.container { max-width:1120px; margin:0 auto; padding:0 24px; }


/* =====================================
   NAVIGATION
   ===================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 12px 0;
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

.nav.scrolled {
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
}

.nav-logo-text {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-inv);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-inv-2);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-full);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #fff;
  transition: all 0.25s var(--ease);
}

.nav-cta:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.25);
}

.nav-cta-icon {
  width: 14px;
  height: 14px;
}


/* =====================================
   HERO SECTION
   ===================================== */
.hero {
  background: var(--grad-hero);
  padding: 140px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: rgba(59,130,246,0.15);
  top: -200px;
  right: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: rgba(139,92,246,0.12);
  bottom: 0;
  left: -150px;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Transfer Visual */
.transfer-visual {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.2s var(--ease) forwards;
}

.device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.device-screen {
  width: 64px;
  height: 64px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s var(--ease);
}

.device:hover .device-screen {
  background: rgba(255,255,255,0.1);
  border-color: rgba(59,130,246,0.4);
  box-shadow: var(--shadow-glow-blue);
}

.device-icon {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.5);
}

.device-label {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-inv-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.transfer-flow {
  width: 160px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.transfer-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(6,182,212,0.5), rgba(139,92,246,0.3));
}

.transfer-badge-mid {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(59,130,246,0.4);
  animation: pulseGlow 2s ease-in-out infinite;
}

.transfer-badge-mid i,
.transfer-badge-mid svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* Transfer particles */
.transfer-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.t-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  animation: transferDot 2s linear infinite;
}

.t-particle:nth-child(1) { background: var(--blue); animation-delay: 0s; }
.t-particle:nth-child(2) { background: var(--cyan); animation-delay: 0.5s; }
.t-particle:nth-child(3) { background: var(--purple); animation-delay: 1s; }
.t-particle:nth-child(4) { background: var(--blue); animation-delay: 1.5s; }

@keyframes transferDot {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: calc(100% - 6px); opacity: 0; }
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 20px rgba(59,130,246,0.4); }
  50% { box-shadow: 0 0 30px rgba(59,130,246,0.6), 0 0 60px rgba(6,182,212,0.2); }
}

/* Hero Text */
.hero-text {
  max-width: 880px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.4s var(--ease) forwards;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}

.hero-highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.125rem;
  color: var(--text-inv-2);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s var(--ease) forwards;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.hero-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8125rem;
  color: var(--text-inv-2);
  font-weight: 500;
}

.hero-meta-icon {
  width: 14px;
  height: 14px;
  color: var(--emerald);
}

.hero-meta-divider {
  color: rgba(255,255,255,0.2);
}

/* Screenshot Window */
.hero-screenshot {
  width: 100%;
  max-width: 960px;
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s 0.8s var(--ease) forwards;
}

.screenshot-window {
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 80px rgba(59,130,246,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.screenshot-window:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 100px rgba(59,130,246,0.12);
}

.window-bar {
  background: #1e293b;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}

.window-dots span:nth-child(1) { background: #ef4444; }
.window-dots span:nth-child(2) { background: #f59e0b; }
.window-dots span:nth-child(3) { background: #10b981; }

.window-title {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.window-title-icon {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.window-controls {
  display: flex;
  gap: 12px;
}

.wc {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
  line-height: 1;
  font-weight: 300;
}

.window-content {
  background: #0f172a;
}

.window-screenshot {
  width: 100%;
  display: block;
}

.screenshot-reflection {
  height: 100px;
  background: linear-gradient(180deg, rgba(11,15,26,0.5), transparent);
  margin-top: -1px;
}


/* =====================================
   SOCIAL PROOF BAR
   ===================================== */
.proof-bar {
  background: var(--bg-card);
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
  padding: 40px 0;
}

.proof-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.proof-item {
  text-align: center;
}

.proof-number {
  font-size: 2rem;
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.proof-suffix {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.proof-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(0,0,0,0.08);
}


/* =====================================
   SECTIONS COMMON
   ===================================== */
section { padding: 100px 0; }

.section-header { margin-bottom: 56px; }
.section-header-center { text-align: center; }

.chip {
  display: inline-block;
  padding: 5px 14px;
  background: rgba(59,130,246,0.08);
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--r-full);
  margin-bottom: 16px;
  border: 1px solid rgba(59,130,246,0.12);
}

.chip-dark {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.08);
}

.section-header h2 {
  font-size: clamp(1.875rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-light {
  background: linear-gradient(135deg, #60a5fa, #22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--text-2);
  margin-top: 12px;
  max-width: 480px;
}

.section-header-center .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-desc-light {
  font-size: 1.0625rem;
  color: var(--text-inv-2);
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}


/* =====================================
   BENTO FEATURES
   ===================================== */
.features {
  background: var(--bg-page);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl);
  padding: 32px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(59,130,246,0.15);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.bento-lg {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 40px;
}

.bento-md {
  grid-column: span 2;
}

.bento-sm {
  grid-column: span 1;
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.bento-icon i,
.bento-icon svg {
  width: 22px;
  height: 22px;
}

.bento-icon-blue { background: rgba(59,130,246,0.1); color: var(--blue); }
.bento-icon-green { background: rgba(16,185,129,0.1); color: var(--emerald); }
.bento-icon-purple { background: rgba(139,92,246,0.1); color: var(--purple); }
.bento-icon-cyan { background: rgba(6,182,212,0.1); color: var(--cyan); }
.bento-icon-emerald { background: rgba(16,185,129,0.1); color: var(--emerald); }
.bento-icon-orange { background: rgba(245,158,11,0.1); color: var(--orange); }
.bento-icon-pink { background: rgba(236,72,153,0.1); color: var(--pink); }

.bento-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bento-card p {
  color: var(--text-2);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.bento-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 3px 10px;
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bento-tag-premium {
  background: linear-gradient(135deg, rgba(139,92,246,0.12), rgba(236,72,153,0.1));
  color: var(--purple);
  border: 1px solid rgba(139,92,246,0.2);
}

/* Speed meter */
.bento-visual {
  padding: 24px;
}

.speed-meter {
  width: 100%;
}

.speed-bar {
  height: 32px;
  background: rgba(0,0,0,0.04);
  border-radius: var(--r-full);
  overflow: hidden;
  position: relative;
  margin-bottom: 12px;
}

.speed-fill {
  height: 100%;
  width: 0;
  border-radius: var(--r-full);
  background: var(--grad-brand);
  transition: width 1.5s var(--ease);
  position: relative;
}

.speed-fill::after {
  content: 'Max';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  opacity: 0;
  transition: opacity 0.3s 1.2s;
}

.speed-fill.animated {
  width: 92%;
}

.speed-fill.animated::after {
  opacity: 1;
}

.speed-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 12%;
  height: 100%;
  background: rgba(0,0,0,0.08);
  border-radius: var(--r-full);
}

.speed-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-3);
  font-weight: 500;
}

.speed-highlight {
  color: var(--blue);
  font-weight: 700;
}


/* =====================================
   HOW IT WORKS
   ===================================== */
.how {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
  color: var(--text-inv);
}

.how h2 {
  color: #ffffff;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.2), transparent);
}

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
}

.step {
  flex: 1;
  max-width: 300px;
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--r-xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.35s var(--ease);
}

.step:hover {
  border-color: rgba(59,130,246,0.3);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.step-num {
  font-size: 0.6875rem;
  font-weight: 800;
  color: #60a5fa;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-circle i,
.step-circle svg {
  width: 28px;
  height: 28px;
  color: #60a5fa;
}

.step-circle-accent {
  background: rgba(6,182,212,0.15);
  border-color: rgba(6,182,212,0.35);
}

.step-circle-accent i,
.step-circle-accent svg {
  color: #22d3ee;
}

.step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.step p {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  line-height: 1.6;
}

.step-arrow {
  color: rgba(255,255,255,0.4);
  padding-top: 80px;
  flex-shrink: 0;
}

.step-arrow i,
.step-arrow svg {
  width: 28px;
  height: 28px;
}


/* =====================================
   PRICING TABLE
   ===================================== */
.pricing {
  background: var(--bg-page);
}

.pricing-table-wrap {
  max-width: 720px;
  margin: 0 auto;
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0,0,0,0.06);
}

.pricing-table th,
.pricing-table td {
  padding: 14px 24px;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.pricing-table thead th {
  background: var(--bg-page);
  padding: 24px;
  vertical-align: bottom;
}

.pt-feature-col {
  text-align: left !important;
  width: 45%;
}

.pt-plan-col {
  width: 27.5%;
}

.pt-plan-featured {
  position: relative;
  background: linear-gradient(180deg, rgba(59,130,246,0.04), transparent) !important;
}

.pt-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 14px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pt-plan {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.pt-plan-name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-2);
}

.pt-plan-price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--text-1);
}

.pt-plan-period {
  font-size: 0.6875rem;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-table tbody td {
  text-align: center;
  color: var(--text-2);
}

.pricing-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-1);
}

.pt-check {
  width: 18px;
  height: 18px;
  color: var(--emerald);
}

.pt-x {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  opacity: 0.4;
}

.pt-highlight {
  color: var(--blue) !important;
  font-weight: 600;
}

.pt-row-accent {
  background: linear-gradient(90deg, rgba(139,92,246,0.04), rgba(236,72,153,0.03));
}

.pt-row-accent td:first-child {
  color: var(--purple) !important;
  font-weight: 600 !important;
}

.pricing-table tfoot td {
  padding: 24px;
  border-bottom: none;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--text-3);
}

.pricing-note-icon {
  width: 16px;
  height: 16px;
  color: var(--emerald);
}



/* Mobile pricing cards (hidden by default on desktop) */
.pricing-cards-mobile {
  display: none;
}

.pricing-card-mob {
  background: var(--bg-card);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-xl);
  padding: 32px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
}

.pricing-card-mob h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-1);
}

.pricing-card-mob .price {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card-mob .price span {
  font-size: 0.8125rem;
  color: var(--text-3);
  font-weight: 500;
}

.pricing-card-mob ul {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card-mob li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
}

.pricing-card-mob li strong {
  color: var(--text-1);
}

.pricing-card-mob li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.pricing-card-mob li .check-icon {
  color: var(--emerald);
}

.pricing-card-mob li .x-icon {
  color: var(--text-3);
  opacity: 0.5;
}

.pricing-card-mob .btn {
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: auto;
}

.pricing-card-mob.featured {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-glow-blue), var(--shadow-lg);
}

.pricing-card-mob.featured .badge {
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 12px;
  background: var(--grad-brand);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 12px rgba(59,130,246,0.25);
}


/* =====================================
   FAQ
   ===================================== */
.faq {
  background: var(--bg-card);
  border-top: 1px solid rgba(0,0,0,0.04);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s var(--ease);
  background: var(--bg-page);
}

.faq-item:hover {
  border-color: rgba(59,130,246,0.15);
}

.faq-item.active {
  border-color: rgba(59,130,246,0.2);
  box-shadow: 0 2px 12px rgba(59,130,246,0.06);
}

.faq-q {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-1);
  text-align: left;
  gap: 12px;
}

.faq-toggle {
  width: 18px;
  height: 18px;
  color: var(--text-3);
  transition: transform 0.3s var(--ease), color 0.3s;
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  color: var(--blue);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-item.active .faq-a {
  max-height: 250px;
}

.faq-a p {
  padding: 0 20px 18px;
  color: var(--text-2);
  font-size: 0.875rem;
  line-height: 1.7;
}

.faq-a strong {
  color: var(--text-1);
  font-weight: 600;
}


/* =====================================
   FINAL CTA
   ===================================== */
.cta-final {
  background: var(--bg-dark);
  padding: 100px 0;
}

.cta-final-inner {
  position: relative;
  text-align: center;
  padding: 64px 40px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(139,92,246,0.04));
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.cta-final-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(59,130,246,0.15), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.cta-final-logo {
  width: 72px;
  height: 72px;
  border-radius: var(--r-lg);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.cta-final h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.cta-final p {
  color: var(--text-inv-2);
  font-size: 1rem;
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-final-note {
  display: block;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}


/* =====================================
   FOOTER
   ===================================== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid rgba(255,255,255,0.04);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
  font-weight: 500;
}

.footer-logo {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-links a:hover { color: rgba(255,255,255,0.8); }

.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.25);
}

.footer-copy a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-copy a:hover { color: var(--blue); }


/* =====================================
   BUTTONS (GLOBAL)
   ===================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: var(--r-full);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  padding: 14px 28px;
  font-size: 1rem;
  background: var(--grad-brand);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.4);
}

.btn-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: var(--grad-brand);
  z-index: -1;
  filter: blur(12px);
  opacity: 0.4;
  transition: opacity 0.3s;
}

.btn-glow:hover::before {
  opacity: 0.6;
}

.btn-outline {
  padding: 12px 24px;
  font-size: 0.875rem;
  background: transparent;
  color: var(--text-1);
  border: 1.5px solid rgba(0,0,0,0.12);
}

.btn-outline:hover {
  border-color: rgba(59,130,246,0.3);
  color: var(--blue);
  background: rgba(59,130,246,0.04);
}

.btn-white {
  padding: 16px 32px;
  font-size: 1rem;
  background: #fff;
  color: var(--text-1);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.0625rem;
}

.btn-badge {
  padding: 2px 8px;
  background: rgba(255,255,255,0.2);
  border-radius: var(--r-full);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover .btn-shine { left: 100%; }

.btn-win-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}


/* =====================================
   ANIMATIONS
   ===================================== */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(24px); }
  to { opacity:1; transform:translateY(0); }
}

/* Scroll reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}


/* =====================================
   RESPONSIVE
   ===================================== */
@media (max-width: 900px) {
  .hero { padding: 120px 0 0; }

  .bento {
    grid-template-columns: 1fr 1fr;
  }

  .bento-lg {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .bento-sm {
    grid-column: span 1;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .step-arrow {
    transform: rotate(90deg);
    padding: 0;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero { padding: 100px 0 0; }

  .hero-title {
    font-size: 2rem;
  }

  .transfer-visual {
    transform: scale(0.85);
  }

  .bento {
    grid-template-columns: 1fr;
  }

  .bento-lg, .bento-md, .bento-sm {
    grid-column: span 1;
  }

  .proof-items {
    flex-direction: column;
    gap: 24px;
  }

  .proof-divider {
    width: 40px;
    height: 1px;
  }

  .pricing-table-wrap {
    display: none;
  }

  .pricing-cards-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
    text-align: left;
  }

  .hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .hero-meta-divider { display: none; }

  .cta-final-inner {
    padding: 40px 20px;
  }
}
