/* ============================================================
   ANTI-FOUC - disable transitions/animations during initial paint
   ============================================================ */
html.preload,
html.preload *,
html.preload *::before,
html.preload *::after {
  transition: none !important;
  animation: none !important;
}

/* ============================================================
   GLOBALS - από src/app/globals.css
   ============================================================ */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #22223a;
  --bg-glass: rgba(26, 26, 46, 0.7);
  --text-primary: #ffffff;
  --text-secondary: #a0a0b8;
  --text-muted: #6b6b80;
  --accent-primary: #1e3a8a;
  --accent-secondary: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #1e40af, #3b82f6);
  --accent-blue: #60a5fa;
  --accent-green: #10b981;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  --glass-blur: blur(20px);
  --shadow-glow: 0 0 30px rgba(59, 130, 246, 0.2);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 1200px;
  --navbar-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  overscroll-behavior: none;
}
body {
  font-family: var(--font-family);
  background: var(--bg-primary);
  min-height: 100vh; position: relative;
  color: var(--text-primary); line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overscroll-behavior: none;
}

.global-bg {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-color: var(--bg-primary);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(30, 58, 138, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 5% 40%, rgba(30, 58, 138, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 95% 70%, rgba(59, 130, 246, 0.1) 0%, transparent 30%);
  background-size: 50px 50px, 50px 50px, 100% 100%, 100% 100%, 100% 100%;
  z-index: -1; pointer-events: none;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-label {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--accent-secondary); margin-bottom: 16px;
  padding: 6px 16px; border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-full); background: rgba(59, 130, 246, 0.08);
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--text-secondary); max-width: 600px; line-height: 1.7; }
.section-center { text-align: center; }
.section-center .section-subtitle { margin: 0 auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius-full);
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition-medium);
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--accent-gradient); color: white;
  box-shadow: 0 4px 20px rgba(30, 64, 175, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(30, 64, 175, 0.5); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover { border-color: var(--border-hover); background: rgba(255, 255, 255, 0.05); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn[disabled] { opacity: 0.7; cursor: wait; }

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

/* Animations (opacity-only για no-layout-shift) */
@keyframes fadeInUp { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes glow {
  0%,100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
  50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.4); }
}

/* Hero entrance */
.reveal-in { animation: fadeInUp 0.7s ease both; }

/* Type-card reveal */
.type-card.reveal-from-left,
.type-card.reveal-from-right {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.type-card.reveal-from-left { transform: translateX(-60px); }
.type-card.reveal-from-right { transform: translateX(60px); }
.type-card.is-visible { opacity: 1; transform: translateX(0); }

/* Responsive grid base */
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .container { padding: 0 16px; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 20px; left: 0; right: 0; z-index: 10000;
  height: var(--navbar-height);
  width: 95%; max-width: 1200px; margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.8) 0%, rgba(10, 10, 15, 0.9) 100%);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 32px rgba(30, 58, 138, 0.15);
  transition: all 0.3s ease; overflow: visible;
}
.navbar.navbar-scrolled {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 10, 15, 0.98) 100%);
  border-color: rgba(59, 130, 246, 0.2);
  box-shadow: 0 10px 40px rgba(30, 58, 138, 0.25);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; padding: 0 12px 0 18px;
}
.navbar-logo {
  display: flex; align-items: center; text-decoration: none;
  flex-shrink: 0; margin: -6px 0;
  position: relative; top: 3px; left: -8px;
}
.navbar-logo-img {
  height: 83px !important; width: auto !important;
  object-fit: contain; display: block;
  filter: drop-shadow(0 4px 16px rgba(59, 130, 246, 0.25));
}
.navbar-links-desktop { display: flex; align-items: center; gap: 4px; }
.navbar-link {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 18px; border-radius: 100px;
  letter-spacing: 0.2px; text-decoration: none;
  transition: all 0.25s ease;
}
.navbar-link:hover {
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.06);
}
.navbar-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.navbar-cta { padding: 9px 20px; font-size: 0.85rem; border-radius: 100px; }

@media (max-width: 768px) {
  .navbar {
    top: 10px; width: calc(100% - 20px);
    border-radius: 60px; height: 60px;
  }
  .navbar-inner { padding: 0 10px 0 10px; }
  .navbar-links-desktop { display: none; }
  .navbar-logo { margin: -12px 0; }
  .navbar-logo-img { height: 83px !important; }
  .navbar-cta { padding: 9px 18px; font-size: 0.82rem; gap: 4px; }
  .navbar-cta svg { width: 14px; height: 14px; }
}
@media (max-width: 380px) {
  .navbar-cta { padding: 8px 14px; font-size: 0.75rem; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: calc(var(--navbar-height) + 100px) 0 80px;
  min-height: 100vh; display: flex; align-items: center;
}
.hero-inner { display: flex; justify-content: center; }
.hero-text {
  text-align: center; max-width: 880px;
  display: flex; flex-direction: column; align-items: center;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  font-weight: 900; line-height: 1.04;
  letter-spacing: -1.5px; margin: 16px 0 28px;
}
.hero-subtitle {
  font-size: 1.3rem; color: var(--text-secondary);
  max-width: 720px; line-height: 1.7; margin: 0 auto 44px;
}
.hero-subtitle strong { color: var(--text-primary); }
.hero-arrow {
  display: inline-block; color: var(--accent-secondary);
  font-weight: 900; animation: bobDown 1.6s ease-in-out infinite;
}
@keyframes bobDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

.stat-tagline { display: block; margin-top: 14px; color: var(--text-muted); font-size: 0.95rem; }
.process-flow { display: inline-flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center; }
.arrow-sep { color: var(--accent-secondary); font-weight: 900; margin: 0 4px; }

.results-subtitle, .process-subtitle {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; max-width: 100%;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; justify-content: center; }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat strong {
  font-size: 1.85rem; font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat span { font-size: 0.95rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border-color); }

@media (max-width: 968px) {
  .hero-subtitle { margin-left: auto; margin-right: auto; }
}
@media (max-width: 568px) {
  .hero { padding: calc(var(--navbar-height) + 60px) 0 60px; min-height: auto; }
  .hero-title { font-size: 2.1rem !important; line-height: 1.08; margin: 0 0 18px; }
  .hero-subtitle { font-size: 1rem; line-height: 1.6; margin-bottom: 28px; padding: 0 4px; }
  .hero-actions { gap: 12px; margin-bottom: 36px; flex-direction: column; align-items: stretch; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 20px; }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: 0.8rem; }
  .stat-divider { height: 28px; }
}

/* ============================================================
   RESULTS
   ============================================================ */
.section-head { margin-bottom: 56px; }
.section-head .section-label { margin-bottom: 16px; }
.results-cta { display: flex; justify-content: center; margin-top: 48px; }

/* Carousel */
.carousel { position: relative; padding: 0 0 16px; }
.carousel-track {
  display: flex; gap: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 24px 24px; margin: 0 -24px;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto; scroll-snap-align: start;
  width: clamp(220px, 30vw, 280px);
}
.phone-frame {
  position: relative; aspect-ratio: 9 / 19.5;
  border-radius: 32px; padding: 8px;
  background: linear-gradient(160deg, #1a1a2e, #0a0a0f);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(59,130,246,0.08);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.phone-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(59,130,246,0.25), 0 0 0 1px rgba(59,130,246,0.3);
}
.phone-frame img, .phone-frame iframe {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 24px;
  display: block; border: 0;
}
.carousel-btn {
  position: absolute; top: 40%;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(20,20,30,0.85);
  border: 1px solid rgba(255,255,255,0.12);
  color: white; backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  z-index: 5; transition: all 0.2s ease;
}
.carousel-btn:hover:not(:disabled) {
  background: rgba(59,130,246,0.85);
  border-color: rgba(59,130,246,1);
  transform: translateY(-50%) scale(1.05);
}
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-btn-prev { left: 8px; transform: translateY(-50%); }
.carousel-btn-next { right: 8px; transform: translateY(-50%); }
.carousel-dots {
  display: flex; gap: 8px;
  justify-content: center; margin-top: 24px; flex-wrap: wrap;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.2s ease; padding: 0;
}
.carousel-dot.active {
  background: var(--accent-secondary);
  width: 24px; border-radius: 4px;
}
@media (max-width: 768px) {
  .carousel-btn { display: none; }
  .carousel-slide { width: 200px; }
}

/* ============================================================
   WHY
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 1.05rem; line-height: 1.6;
}
.check-list svg { color: var(--accent-green); flex-shrink: 0; margin-top: 4px; }
.why-visual { display: flex; justify-content: center; }

.notif-stack {
  width: 100%; max-width: 400px;
  display: flex; flex-direction: column; gap: 12px;
}
.notif {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: linear-gradient(180deg, rgba(30,30,50,0.85) 0%, rgba(18,18,30,0.85) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: notifIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.notif-1 { animation-delay: 0s; }
.notif-2 { animation-delay: 0.15s; }
.notif-3 { animation-delay: 0.3s; }
@keyframes notifIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.notif-icon {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.notif-tiktok { background: linear-gradient(135deg, #ff0050, #00f2ea); }
.notif-instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.notif-youtube { background: #ff0000; }
.notif-body { flex: 1; min-width: 0; }
.notif-title { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.5); margin-bottom: 2px; }
.notif-text { font-size: 0.95rem; color: white; line-height: 1.3; }
.notif-text strong { color: var(--accent-blue); font-weight: 800; }
.notif-time { font-size: 0.7rem; color: var(--text-muted); font-weight: 600; flex-shrink: 0; }

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

/* ============================================================
   TYPES
   ============================================================ */
.types-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.type-card {
  position: relative; padding: 28px;
  background: linear-gradient(180deg, rgba(30, 30, 50, 0.6) 0%, rgba(18, 18, 30, 0.6) 100%);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  overflow: hidden;
  will-change: transform, opacity;
}
.type-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,0.5), transparent);
  opacity: 0; transition: opacity 0.3s ease;
}
.type-card:hover {
  border-color: rgba(59,130,246,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(59,130,246,0.08);
}
.type-card:hover::before { opacity: 1; }
.type-card:hover .type-arrow { color: var(--accent-secondary); transform: translate(3px, -3px); }
.type-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.type-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(59,130,246,0.12);
  border: 1px solid rgba(59,130,246,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-secondary);
}
.type-num {
  font-size: 1.4rem; font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-variant-numeric: tabular-nums; letter-spacing: 1px;
}
.type-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.type-card p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.6; margin-bottom: 20px; flex: 1; }
.type-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.06);
}
.type-tag {
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--accent-secondary);
  padding: 4px 10px;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 100px;
}
.type-arrow { color: rgba(255,255,255,0.3); transition: all 0.3s ease; }
@media (max-width: 1024px) { .types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 568px) { .types-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.pricing-card {
  position: relative; padding: 36px 28px;
  background: linear-gradient(180deg, rgba(30, 30, 50, 0.95) 0%, rgba(18, 18, 30, 0.95) 100%);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; height: 100%;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}
.pricing-card:hover {
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
}
.pricing-card.popular {
  border-color: rgba(59,130,246,0.55);
  background: linear-gradient(180deg, rgba(59,130,246,0.18) 0%, rgba(30, 30, 50, 0.95) 40%, rgba(18, 18, 30, 0.95) 100%);
  box-shadow: 0 0 50px rgba(59,130,246,0.25), 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pricing-card.ultimate {
  border-color: rgba(168,85,247,0.55);
  background: linear-gradient(180deg, rgba(168,85,247,0.22) 0%, rgba(59,130,246,0.08) 30%, rgba(18, 18, 30, 0.95) 100%);
  box-shadow: 0 0 50px rgba(168,85,247,0.3), 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.pricing-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  padding: 6px 14px; border-radius: 100px;
  background: var(--accent-gradient);
  font-size: 0.7rem; font-weight: 800; letter-spacing: 1px;
  white-space: nowrap;
}
.pricing-card.ultimate .pricing-badge { background: linear-gradient(135deg, #a855f7, #3b82f6); }
.pricing-head { margin-bottom: 16px; }
.pricing-name {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); margin-bottom: 8px; font-weight: 700;
}
.pricing-videos { font-size: 1.5rem; font-weight: 700; }
.pricing-videos strong {
  font-size: 2.4rem; font-weight: 900;
  background: var(--accent-gradient);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-right: 8px;
}
.pricing-price { display: flex; align-items: flex-start; gap: 4px; margin: 8px 0 4px; }
.currency { font-size: 1.4rem; font-weight: 700; margin-top: 6px; }
.amount { font-size: 3rem; font-weight: 900; line-height: 1; }
.pricing-per { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 24px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pricing-features li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; line-height: 1.5; }
.pricing-features svg { color: var(--accent-green); flex-shrink: 0; margin-top: 3px; }
.pricing-cta { width: 100%; }
/* fix για το βελάκι στο "Το θέλω" — center align με το text */
.pricing-cta .cta-label,
.pricing-cta .cta-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.pricing-cta svg { display: block; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.85rem; margin-top: 24px; }
@media (max-width: 1024px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 568px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 800px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-glass);
  backdrop-filter: var(--glass-blur);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item.open { border-color: rgba(59,130,246,0.3); }
.faq-q {
  width: 100%; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1.05rem; font-weight: 600; color: var(--text-primary);
  text-align: left; gap: 16px;
}
.faq-chev { transition: transform 0.3s ease; flex-shrink: 0; color: var(--text-muted); }
.faq-item.open .faq-chev { transform: rotate(180deg); color: var(--accent-secondary); }
.faq-a { padding: 0 24px 20px; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-card {
  padding: 80px 40px; text-align: center;
  background: linear-gradient(160deg, rgba(59,130,246,0.08), rgba(168,85,247,0.05));
  border: 1px solid rgba(59,130,246,0.2);
  border-radius: var(--radius-xl);
  backdrop-filter: var(--glass-blur);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 32px 0; border-top: 1px solid var(--border-color); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-text, .footer-powered { font-size: 0.85rem; color: var(--text-muted); }
.footer-powered a { color: var(--accent-secondary); font-weight: 700; text-decoration: none; transition: opacity 0.2s ease; }
.footer-powered a:hover { opacity: 0.8; }

/* MOBILE GLOBAL FIXES (από page.tsx) */
@media (max-width: 568px) {
  .section { padding: 56px 0 !important; }
  .section-title { font-size: 1.7rem !important; line-height: 1.15; }
  .section-head { margin-bottom: 36px !important; }
  .section-head .section-subtitle { font-size: 0.95rem; }
  .check-list li { font-size: 0.95rem; }
  .notif { padding: 12px 14px; gap: 12px; }
  .notif-icon { width: 34px; height: 34px; }
  .notif-text { font-size: 0.9rem; }
  .type-card { padding: 22px; }
  .type-card h3 { font-size: 1.05rem; }
  .type-card p { font-size: 0.88rem; }
  .pricing-card { padding: 28px 22px; }
  .pricing-grid { gap: 28px; margin-top: 8px; }
  .pricing-videos strong { font-size: 2rem; }
  .amount { font-size: 2.6rem; }
  .pricing-features li { font-size: 0.88rem; }
  .faq-q { padding: 16px 18px; font-size: 0.95rem; }
  .faq-a { padding: 0 18px 16px; font-size: 0.9rem; }
  .cta-card { padding: 48px 24px; }
  .footer-inner { flex-direction: column; text-align: center; gap: 8px; }
  .footer-text, .footer-powered { font-size: 0.78rem; }
}

/* ============================================================
   SUCCESS PAGE
   ============================================================ */
.success-page { min-height: 100vh; display: flex; align-items: center; padding: 80px 0; }
.success-card {
  max-width: 640px; margin: 0 auto;
  padding: 56px 40px 48px; text-align: center;
  background: var(--bg-glass); backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: var(--radius-xl);
}
.success-icon {
  color: var(--accent-green); margin: 0 auto 16px;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.12);
  border-radius: 50%;
}
.success-badge {
  display: inline-block;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(16,185,129,0.12);
  color: var(--accent-green);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 16px;
}
.success-title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.success-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; }
.success-text strong { color: var(--text-primary); }
.success-mail-note {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 18px; text-align: left;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 14px;
  color: rgba(255,255,255,0.78);
  font-size: 0.92rem; line-height: 1.5;
  margin-bottom: 20px;
}
.success-mail-note svg { color: #93c5fd; flex-shrink: 0; margin-top: 2px; }
.success-mail-note strong { color: #ffffff; }
.success-next {
  padding: 18px 20px; text-align: left;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px; margin-bottom: 16px;
}
.success-next-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}
.success-next p { margin: 0; font-size: 0.95rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.success-next strong { color: #ffffff; }
.success-contact {
  padding: 18px 20px; text-align: left;
  background: linear-gradient(135deg, rgba(59,130,246,0.06), rgba(99,102,241,0.04));
  border: 1px solid rgba(59,130,246,0.18);
  border-radius: 14px;
}
.success-contact-title {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.success-contact-row { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.success-contact-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: #93c5fd; text-decoration: none; font-weight: 600;
  font-size: 0.95rem; transition: color 0.2s;
}
.success-contact-link:hover { color: #ffffff; }

@media (max-width: 540px) { .success-card { padding: 40px 22px 32px; } }

/* ============================================================
   CANCEL PAGE
   ============================================================ */
.cancel-page { min-height: 100vh; display: flex; align-items: center; padding: 80px 0; }
.cancel-card {
  max-width: 600px; margin: 0 auto;
  padding: 60px 40px; text-align: center;
  background: var(--bg-glass); backdrop-filter: var(--glass-blur);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}
.cancel-icon {
  color: var(--text-muted); margin: 0 auto 24px;
  width: 96px; height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}
.cancel-title { font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 16px; }
.cancel-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.7; }

/* ============================================================
   CHATBOT
   ============================================================ */
.cb-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 10000;
  width: 54px; height: 54px; border-radius: 16px;
  background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
  color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(59,130,246,0.35), 0 0 0 1px rgba(255,255,255,0.1) inset;
  transition: transform 0.25s, box-shadow 0.25s;
}
.cb-fab:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 12px 40px rgba(59,130,246,0.45), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.cb-fab-ring {
  position: absolute; inset: -4px; border-radius: 20px;
  border: 1.5px solid rgba(59,130,246,0.4);
  animation: cbRing 3s ease-in-out infinite;
  pointer-events: none;
}
.cb-fab-ring-2 { animation-delay: 1.5s; }
@keyframes cbRing {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}

.cb-window {
  position: fixed; bottom: 24px; right: 24px; z-index: 10000;
  width: 400px; height: 680px; max-height: calc(100vh - 48px);
  background: #0b0d1a;
  border: 1px solid rgba(59,130,246,0.12);
  border-radius: 24px;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow:
    0 24px 80px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 0 60px rgba(59,130,246,0.06);
  animation: cbOpen 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cb-window[hidden] { display: none; }
@keyframes cbOpen {
  from { opacity: 0; transform: translateY(16px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.cb-glow { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.cb-glow-1 {
  width: 200px; height: 200px; top: -60px; right: -40px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
}
.cb-glow-2 {
  width: 160px; height: 160px; bottom: -40px; left: -30px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 70%);
}

.cb-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  padding-top: max(18px, env(safe-area-inset-top, 18px));
  background: linear-gradient(180deg, rgba(59,130,246,0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative; z-index: 1; flex-shrink: 0;
}
.cb-header-l { display: flex; align-items: center; gap: 6px; }
.cb-avatar { width: 36px; height: 36px; flex-shrink: 0; }
.cb-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.cb-header-text { display: flex; flex-direction: column; gap: 2px; }
.cb-name {
  font-size: 0.9rem; font-weight: 700;
  background: linear-gradient(135deg, #3b82f6, #818cf8);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: 0.3px;
}
.cb-beta {
  font-size: 0.55rem; font-weight: 800; letter-spacing: 1px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  -webkit-background-clip: unset; -webkit-text-fill-color: white;
  padding: 2px 6px; border-radius: 6px; margin-left: 4px;
  vertical-align: middle; position: relative; top: -1px;
}
.cb-close {
  width: 30px; height: 30px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.4); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.cb-close:hover { background: rgba(255,255,255,0.08); color: white; }

.cb-body {
  flex: 1; overflow-y: hidden; position: relative; z-index: 1;
  min-height: 0;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.06) transparent;
}
.cb-body.cb-body-chat { overflow-y: auto; }
.cb-body::-webkit-scrollbar { width: 3px; }
.cb-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

.cb-home { padding: 12px 16px 14px; display: flex; flex-direction: column; height: 100%; }
.cb-home[hidden] { display: none; }
.cb-hero { text-align: center; margin-bottom: 12px; }
.cb-hero-icon {
  width: 44px; height: 44px; border-radius: 14px; margin: 0 auto 10px;
  background: linear-gradient(135deg, rgba(59,130,246,0.12), rgba(99,102,241,0.12));
  border: 1px solid rgba(59,130,246,0.15);
  display: flex; align-items: center; justify-content: center;
  color: #3b82f6;
}
.cb-hero h3 { font-size: 1.05rem; font-weight: 800; color: white; margin: 0 0 4px; letter-spacing: -0.2px; }
.cb-hero p { font-size: 0.8rem; color: rgba(255,255,255,0.4); margin: 0; }

.cb-section-label {
  font-size: 0.6rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.8px; color: rgba(255,255,255,0.2); margin-bottom: 6px; padding: 0 2px;
}
.cb-faq { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.cb-faq-btn {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; text-align: left;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
  transition: all 0.2s ease;
}
.cb-faq-btn span { flex: 1; }
.cb-faq-btn .cb-faq-arrow { color: rgba(255,255,255,0.15); transition: all 0.2s; }
.cb-faq-btn:hover { background: rgba(59,130,246,0.06); border-color: rgba(59,130,246,0.15); color: rgba(255,255,255,0.85); }
.cb-faq-btn:hover .cb-faq-arrow { color: #3b82f6; transform: translateX(2px); }

.cb-start-chat {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; margin-top: 10px; padding: 12px 20px; flex-shrink: 0;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white; font-size: 0.9rem; font-weight: 700;
  border: none; border-radius: 14px; cursor: pointer;
  transition: all 0.25s; letter-spacing: 0.3px;
  box-shadow: 0 4px 16px rgba(59,130,246,0.3);
}
.cb-start-chat:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(59,130,246,0.4); }

.cb-msgs[hidden] { display: none; }
.cb-msgs {
  padding: 18px 16px; display: flex; flex-direction: column; gap: 10px; min-height: 100%;
}
.cb-msg { display: flex; gap: 8px; align-items: flex-end; }
.cb-msg-user { flex-direction: row-reverse; }
.cb-bubble {
  max-width: 78%; padding: 11px 15px;
  font-size: 0.85rem; line-height: 1.55; border-radius: 16px;
  word-wrap: break-word;
}
.cb-bubble-user {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white; border-bottom-right-radius: 6px;
  box-shadow: 0 2px 12px rgba(59,130,246,0.2);
}
.cb-bubble-assistant {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.8); border-bottom-left-radius: 6px;
}
.cb-bubble strong { color: white; font-weight: 700; }
.cb-bubble .cb-li { display: flex; align-items: flex-start; gap: 8px; margin: 4px 0; }
.cb-bubble .cb-bullet {
  width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0;
  background: #3b82f6; margin-top: 8px;
}

.cb-dots { display: flex; gap: 4px; padding: 14px 18px; }
.cb-dots span {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(59,130,246,0.5);
  animation: cbBounce 1.4s ease-in-out infinite;
}
.cb-dots span:nth-child(2) { animation-delay: 0.15s; }
.cb-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes cbBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.cb-input-wrap[hidden] { display: none; }
.cb-input-wrap {
  display: flex; gap: 8px; padding: 14px 16px;
  padding-bottom: max(14px, env(safe-area-inset-bottom, 14px));
  border-top: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.2);
  position: relative; z-index: 1; flex-shrink: 0;
}
.cb-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 11px 16px; color: white; font-size: 0.85rem;
  outline: none; transition: border-color 0.25s;
}
.cb-input:focus { border-color: rgba(59,130,246,0.35); }
.cb-input::placeholder { color: rgba(255,255,255,0.2); }
.cb-send {
  width: 40px; height: 40px; border-radius: 12px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  color: white; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.2s;
  box-shadow: 0 2px 10px rgba(59,130,246,0.25);
}
.cb-send:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 4px 16px rgba(59,130,246,0.35); }
.cb-send:disabled { opacity: 0.35; cursor: default; }

@media (max-width: 480px) {
  .cb-window {
    position: fixed !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    width: 100% !important; height: 100% !important; max-height: 100% !important;
    border-radius: 0 !important; border: none !important;
    animation: none !important; z-index: 99999 !important;
  }
  .cb-fab { bottom: 16px; right: 16px; width: 50px; height: 50px; border-radius: 14px; }
}
