/*
Theme Name: BartaBee
Theme URI: https://bartabee.com
Description: BartaBee n8n Automation — Layout v3
Version: 3.0.0
Author: BartaBee
*/

/* ============================================================
   DESIGN TOKENS — colors unchanged
============================================================ */
:root {
  --bg-primary:        #050d1a;
  --bg-secondary:      #080f1f;
  --bg-card:           #0c1628;
  --bg-card-hover:     #0f1e38;
  --accent-cyan:       #00e5ff;
  --accent-cyan-dim:   rgba(0,229,255,0.15);
  --accent-cyan-glow:  rgba(0,229,255,0.4);
  --accent-green:      #00ff88;
  --text-primary:      #ffffff;
  --text-secondary:    #8fa8c8;
  --text-muted:        #4a6080;
  --border:            rgba(0,229,255,0.12);
  --border-hover:      rgba(0,229,255,0.35);
  --font-display:      'Syne', sans-serif;
  --font-body:         'DM Sans', sans-serif;
  --font-mono:         'JetBrains Mono', monospace;
  --radius:            12px;
  --radius-lg:         20px;
  --transition:        all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; }

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-cyan-dim); border-radius: 2px; }

/* ============================================================
   LAYOUT
============================================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
section { padding: 110px 0; position: relative; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  padding: 5px 14px;
  border: 1px solid var(--accent-cyan-dim);
  border-radius: 100px;
  background: rgba(0,229,255,0.04);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--accent-cyan);
  border-radius: 50%;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  background: #33eaff;
  box-shadow: 0 0 30px var(--accent-cyan-glow);
  transform: translateY(-2px);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(0,229,255,0.12);
  transform: translateY(-2px);
}
.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-cyan);
  color: var(--bg-primary) !important;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-nav:hover { background: #33eaff; box-shadow: 0 0 20px var(--accent-cyan-glow); }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
#navbar.scrolled {
  background: rgba(5,13,26,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.nav-logo span { color: var(--accent-cyan); }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links li a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
}
.nav-links li a:not(.btn-nav):hover,
.nav-links li a.active { color: var(--text-primary); }
.nav-links li a.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--accent-cyan);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO — SPLIT LAYOUT (left content / right floating card)
============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg-glow {
  position: absolute;
  top: -20%; left: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,229,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black, transparent);
  pointer-events: none;
}

/* NEW: split two-col layout */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  width: 100%;
}
.hero-left {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,229,255,0.06);
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  padding: 7px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 7px; height: 7px;
  background: var(--accent-cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.4; transform:scale(1.5); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 5.5vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 24px;
}
.hero-title .highlight { color: var(--accent-cyan); }

.hero-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 36px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* Right floating card */
.hero-right {}
.hero-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}
.hero-card-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-cyan);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-stats-stack { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.hero-stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
}
.hero-stat-row:hover { border-color: var(--border-hover); }
.hero-stat-row-label {
  font-size: 13px;
  color: var(--text-secondary);
}
.hero-stat-row-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: -0.01em;
}
.hero-card-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-cyan);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
}
.hero-card-cta:hover {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg-secondary);
}
.marquee-track {
  display: flex;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform:translateX(0); } to { transform:translateX(-50%); } }
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.marquee-item span { color: var(--accent-cyan); font-size: 16px; }

/* ============================================================
   PROBLEM — TABBED TOGGLE LAYOUT
============================================================ */
#problem { background: var(--bg-secondary); }
.problem-header { text-align: center; margin-bottom: 52px; }
.problem-header h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 14px; }
.problem-header p { color: var(--text-secondary); max-width: 500px; margin: 0 auto; font-size: 15px; }

.problem-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: fit-content;
  margin: 0 auto 40px;
}
.problem-tab {
  padding: 12px 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  background: transparent;
  border: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}
.problem-tab.active-tab {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-weight: 700;
}
.problem-tab:not(.active-tab):hover { color: var(--text-primary); background: var(--bg-card); }

.problem-panel { display: none; }
.problem-panel.active-panel { display: block; }

.problem-items-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.problem-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.problem-item:last-child { border-bottom: none; }
.problem-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.problem-panel:first-child .problem-icon-wrap { background: rgba(255,80,80,0.1); }
.problem-panel:last-child .problem-icon-wrap  { background: rgba(0,229,255,0.08); }
.problem-icon { width: 20px; height: 20px; }
.problem-panel:first-child .problem-icon { stroke: #ff5050; }
.problem-panel:last-child  .problem-icon { stroke: var(--accent-cyan); }
.problem-text strong { display: block; color: var(--text-primary); font-size: 15px; margin-bottom: 4px; }
.problem-text p { color: var(--text-secondary); font-size: 14px; line-height: 1.65; }

/* ============================================================
   METRICS — horizontal ticker-style
============================================================ */
#metrics { padding: 0; background: var(--bg-primary); }
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.metric-item {
  padding: 48px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.metric-item:last-child { border-right: none; }
.metric-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; right: 50%;
  height: 2px;
  background: var(--accent-cyan);
  transition: var(--transition);
}
.metric-item:hover::before { left: 0; right: 0; }
.metric-item:hover { background: var(--bg-card); }
.metric-value {
  font-family: var(--font-display);
  font-size: 54px;
  font-weight: 800;
  color: var(--accent-cyan);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.metric-desc {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================================
   SERVICES — horizontal numbered list layout
============================================================ */
#services { background: var(--bg-primary); }
.services-header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
  margin-bottom: 56px;
}
.services-header h2 { font-size: clamp(28px, 3.5vw, 46px); margin-top: 10px; }
.services-header p { color: var(--text-secondary); max-width: 420px; margin-top: 10px; font-size: 15px; }

.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  border-bottom: none;
  background: var(--bg-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-row:first-child { border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
.service-row:last-child  { border-bottom: 1px solid var(--border); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(0,229,255,0.06), transparent);
  transition: var(--transition);
}
.service-row:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }
.service-row:hover::before { width: 100%; }
.service-row:hover + .service-row { border-top-color: var(--border-hover); }

.service-num-big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-hover);
  line-height: 1;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-row:hover .service-num-big { -webkit-text-stroke-color: var(--accent-cyan); color: transparent; }

.service-body { position: relative; z-index: 1; }
.service-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-icon-sm {
  width: 28px; height: 28px;
  background: var(--accent-cyan-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  flex-shrink: 0;
  transition: var(--transition);
}
.service-row:hover .service-icon-sm { background: var(--accent-cyan); color: var(--bg-primary); }
.service-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; max-width: 580px; }

.service-arrow {
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.service-row:hover .service-arrow { color: var(--accent-cyan); transform: translateX(6px); }

/* ============================================================
   PROCESS — timeline layout
============================================================ */
#process { background: var(--bg-secondary); }
.process-header { text-align: center; margin-bottom: 70px; }
.process-header h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 14px; }
.process-header p { color: var(--text-secondary); max-width: 440px; margin: 0 auto; font-size: 15px; }

.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto 56px;
}
.process-timeline::before {
  content: '';
  position: absolute;
  left: 39px;
  top: 48px;
  bottom: 48px;
  width: 1px;
  background: linear-gradient(180deg, var(--accent-cyan), rgba(0,229,255,0.1));
}

.process-tl-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
  position: relative;
}
.process-tl-item:last-child { margin-bottom: 0; }

.process-tl-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--accent-cyan);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-tl-item:hover .process-tl-num {
  background: var(--accent-cyan);
  color: var(--bg-primary);
  box-shadow: 0 0 30px var(--accent-cyan-glow);
}

.process-tl-content {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  transition: var(--transition);
  margin-top: 10px;
}
.process-tl-item:hover .process-tl-content { border-color: var(--border-hover); }
.process-tl-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.process-tl-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }
.process-cta { text-align: center; }

/* ============================================================
   PRICING — comparison card layout
============================================================ */
#pricing { background: var(--bg-primary); }
.pricing-header { text-align: center; margin-bottom: 56px; }
.pricing-header h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 14px; }
.pricing-header p { color: var(--text-secondary); max-width: 440px; margin: 0 auto; font-size: 15px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pricing-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.pricing-card.featured {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  box-shadow: 0 0 50px rgba(0,229,255,0.08);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
}
.pricing-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--accent-cyan);
  color: var(--bg-primary);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.pricing-tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 20px;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 60px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.price-amount sup { font-size: 22px; vertical-align: super; }
.price-period { font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); margin: 6px 0 14px; }
.price-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.65; margin-bottom: 24px; flex-grow: 0; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 20px; }
.pricing-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.pricing-feature { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.feature-check {
  width: 20px; height: 20px;
  background: rgba(0,229,255,0.08);
  border: 1px solid var(--border-hover);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--accent-cyan);
  flex-shrink: 0;
}
.pricing-cta {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
}
.pricing-cta-primary {
  background: var(--accent-cyan);
  color: var(--bg-primary);
}
.pricing-cta-primary:hover { background: #33eaff; box-shadow: 0 0 24px var(--accent-cyan-glow); transform: translateY(-2px); }
.pricing-cta-outline {
  border: 1px solid var(--border-hover);
  color: var(--text-secondary);
}
.pricing-cta-outline:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* ============================================================
   FAQ — 2-col masonry grid
============================================================ */
#faq { background: var(--bg-secondary); }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-header h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 14px; }
.faq-header p { color: var(--text-secondary); font-size: 15px; }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--border-hover); }
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  user-select: none;
  transition: var(--transition);
}
.faq-question:hover,
.faq-item.open .faq-question { color: var(--accent-cyan); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--accent-cyan);
  border-color: var(--accent-cyan);
  color: var(--bg-primary);
  transform: rotate(45deg);
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

/* ============================================================
   CTA — split layout
============================================================ */
#cta {
  background: var(--bg-primary);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 50%, rgba(0,229,255,0.05), transparent);
  pointer-events: none;
}
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.cta-left h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-left p { font-size: 15px; color: var(--text-secondary); line-height: 1.75; }

.cta-right {
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.cta-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-cyan), transparent);
}
.cta-right-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 24px;
}
.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-actions .btn-primary,
.cta-actions .btn-secondary { width: 100%; justify-content: center; }
.cta-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 36px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 260px;
  margin: 14px 0 24px;
  line-height: 1.75;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); background: var(--accent-cyan-dim); }
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 13px; color: var(--text-secondary); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent-cyan); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.contact-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.contact-item .icon { color: var(--accent-cyan); flex-shrink: 0; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.footer-copy { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-family: var(--font-mono); font-size: 12px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--accent-cyan); }

/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(37,211,102,0.3);
  transition: var(--transition);
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(37,211,102,0.45); }

/* ============================================================
   SCROLL ANIMATION
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PRIVACY / TOS INNER PAGES
============================================================ */
.pp-page { min-height: 100vh; }
.pp-hero {
  position: relative;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.pp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,229,255,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, black, transparent);
}
.pp-nav-spacer { height: 80px; }
.pp-hero-inner { padding: 60px 0; position: relative; z-index: 1; }
.pp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 90px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 20px;
}
.pp-hero-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.pp-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.pp-meta-pill svg { color: var(--accent-cyan); }
.pp-wrapper { padding: 60px 0 100px; }
.pp-grid { display: grid; grid-template-columns: 220px 1fr; gap: 48px; align-items: start; }
.pp-sidebar { position: sticky; top: 100px; }
.pp-toc-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; }
.pp-toc-heading { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; }
.pp-toc-link { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 13px; color: var(--text-secondary); border-bottom: 1px solid var(--border); transition: var(--transition); }
.pp-toc-link:last-of-type { border-bottom: none; }
.pp-toc-link:hover { color: var(--accent-cyan); }
.pp-toc-num { font-family: var(--font-mono); font-size: 10px; color: var(--text-muted); min-width: 22px; }
.pp-sidebar-cta { display: block; text-align: center; margin-top: 16px; padding: 10px; background: var(--accent-cyan); color: var(--bg-primary); font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: var(--radius); transition: var(--transition); }
.pp-sidebar-cta:hover { background: #33eaff; }
.pp-intro-banner { display: flex; gap: 16px; background: var(--accent-cyan-dim); border: 1px solid var(--border-hover); border-radius: var(--radius); padding: 20px 24px; margin-bottom: 28px; }
.pp-intro-icon { width: 40px; height: 40px; background: var(--accent-cyan-dim); border: 1px solid var(--border-hover); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--accent-cyan); flex-shrink: 0; }
.pp-intro-banner strong { color: var(--text-primary); display: block; margin-bottom: 4px; font-size: 14px; }
.pp-intro-banner p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; margin: 0; }
.pp-section { margin-bottom: 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.pp-section-hd { display: flex; align-items: flex-start; gap: 16px; padding: 22px 28px; border-bottom: 1px solid var(--border); background: var(--bg-card-hover); }
.pp-num { font-family: var(--font-display); font-size: 36px; color: var(--accent-cyan); line-height: 1; min-width: 44px; }
.pp-section-hd h2 { font-size: 16px; font-weight: 700; color: var(--text-primary); }
.pp-section-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.pp-section-body { padding: 22px 28px; display: flex; flex-direction: column; gap: 12px; }
.pp-section-body p { font-size: 14px; color: var(--text-secondary); line-height: 1.75; }
.pp-section-body strong { color: var(--text-primary); }
.pp-section-body a { color: var(--accent-cyan); }
.pp-list { display: flex; flex-direction: column; gap: 8px; }
.pp-list li { font-size: 14px; color: var(--text-secondary); padding-left: 18px; position: relative; line-height: 1.65; }
.pp-list li::before { content: '—'; position: absolute; left: 0; color: var(--accent-cyan); font-size: 12px; }
.pp-list-check li::before { content: '✓'; }
.pp-tag-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-tag { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: 100px; padding: 4px 12px; font-family: var(--font-mono); font-size: 11px; color: var(--text-muted); }
.pp-contact-block { background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; display: flex; flex-direction: column; gap: 10px; }
.pp-contact-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-secondary); }
.pp-contact-row svg { color: var(--accent-cyan); flex-shrink: 0; }
.pp-acceptance-box { display: flex; align-items: flex-start; gap: 12px; background: rgba(0,229,255,0.05); border: 1px solid var(--border-hover); border-left: 3px solid var(--accent-cyan); border-radius: var(--radius); padding: 18px 20px; }
.pp-acceptance-box svg { color: var(--accent-cyan); flex-shrink: 0; margin-top: 2px; }
.pp-acceptance-box p { margin: 0; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-header { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .pp-grid { grid-template-columns: 180px 1fr; }
}

@media (max-width: 768px) {
  section { padding: 72px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(5,13,26,0.97);
    align-items: center;
    justify-content: center;
    gap: 28px;
    z-index: 999;
    font-size: 18px;
  }
  .nav-links.open li a { font-size: 16px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .metric-item { border-right: none; border-bottom: 1px solid var(--border); }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .metric-item:last-child { border-bottom: none; }
  .service-row { grid-template-columns: 52px 1fr; }
  .service-arrow { display: none; }
  .service-num-big { font-size: 36px; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pp-grid { grid-template-columns: 1fr; }
  .pp-sidebar { display: none; }
  .problem-tab { padding: 10px 18px; font-size: 11px; }
  .whatsapp-float span { display: none; }
  .whatsapp-float { padding: 14px; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .problem-tabs { width: 100%; }
  .problem-tab { flex: 1; justify-content: center; }
  .service-row { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .service-num-big { display: none; }
}
