@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;600;700&display=swap');

/* ─── Reset & Variables ──────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --orange: #ff6b35;
  --orange-light: #ff8c42;
  --orange-pale: #fff3ee;
  --green: #10b981;
  --green-pale: #ecfdf5;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  background-color: var(--white);
  color: var(--gray-700);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Fredoka', sans-serif; color: var(--gray-900); line-height: 1.2; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* ─── Shared utilities ───────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600; font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.3px; cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(255,107,53,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,107,53,0.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--gray-700);
  border: 1.5px solid var(--gray-300);
  padding: 13px 28px; border-radius: 10px;
  font-size: 16px; font-weight: 600; font-family: 'Fredoka', sans-serif;
  cursor: pointer; transition: all 0.2s ease;
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-1px); }

.section-label {
  display: inline-block;
  background: var(--orange-pale); color: var(--orange);
  font-size: 13px; font-weight: 600; font-family: 'Fredoka', sans-serif;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.section-title { font-size: clamp(28px, 4vw, 44px); font-weight: 700; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--gray-500); max-width: 560px; line-height: 1.7; }

.card {
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--gray-100);
  padding: 24px; transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.section-screenshot { width: 100%; height: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); display: block; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-header .section-subtitle { margin: 0 auto; }

.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split-layout.reversed .split-visual { order: -1; }
.split-visual { position: relative; }

/* ─── Placeholders ───────────────────────────────────────────────────────── */
.screenshot-placeholder {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  border: 2px dashed var(--gray-300); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--gray-500);
  font-size: 14px; font-weight: 500; position: relative; overflow: hidden;
}
.placeholder-icon { font-size: 40px; opacity: 0.6; }
.placeholder-text { font-family: 'Fredoka', sans-serif; font-size: 16px; color: var(--gray-500); }
.placeholder-subtext { font-size: 12px; color: var(--gray-300); }

.video-placeholder {
  background: linear-gradient(135deg, #1a1a2e, #16213e, #0f3460);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px; color: white; position: relative; overflow: hidden;
}
.play-button {
  width: 72px; height: 72px; background: rgba(255,107,53,0.9);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 28px; cursor: pointer;
  transition: all 0.2s ease; box-shadow: 0 0 0 12px rgba(255,107,53,0.15);
}
.play-button:hover { background: var(--orange); transform: scale(1.1); }
.video-label { font-family: 'Fredoka', sans-serif; font-size: 18px; opacity: 0.9; }
.video-sublabel { font-size: 13px; opacity: 0.5; }

/* ─── Navbar ─────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: all 0.3s ease;
}
.navbar.scrolled { padding: 12px 0; border-bottom-color: var(--gray-100); box-shadow: 0 2px 16px rgba(0,0,0,0.06); }

.nav-inner { display: flex; align-items: center; gap: 32px; }

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-text { font-family: 'Fredoka', sans-serif; font-size: 24px; font-weight: 700; color: var(--gray-900); letter-spacing: 0.5px; }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
.nav-links a { padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500; color: var(--gray-500); transition: all 0.2s ease; }
.nav-links a:hover { color: var(--gray-900); background: var(--gray-100); }

.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.lang-switcher { display: flex; gap: 4px; background: var(--gray-100); padding: 3px; border-radius: 8px; }
.lang-btn { padding: 5px 10px; border-radius: 6px; border: none; background: transparent; color: var(--gray-500); font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.15s ease; white-space: nowrap; }
.lang-btn.active { background: white; color: var(--gray-900); box-shadow: var(--shadow-sm); }
.lang-btn:hover:not(.active) { color: var(--gray-700); }

.nav-btn-secondary { padding: 9px 18px; font-size: 14px; }
.nav-btn-primary   { padding: 9px 20px; font-size: 14px; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hero { padding: 140px 0 80px; text-align: center; background: linear-gradient(180deg, var(--orange-pale) 0%, white 60%); }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; border: 1.5px solid var(--orange); color: var(--orange);
  font-size: 13px; font-weight: 600; padding: 6px 16px; border-radius: 20px;
  margin-bottom: 28px; font-family: 'Fredoka', sans-serif;
}
.badge-dot { width: 7px; height: 7px; background: var(--orange); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title { font-size: clamp(36px, 6vw, 72px); font-weight: 700; line-height: 1.1; margin-bottom: 24px; letter-spacing: -0.5px; }
.highlight { color: var(--orange); position: relative; }
.highlight::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--orange), var(--orange-light)); border-radius: 2px; opacity: 0.3; }
.hero-title .highlight::before { content: '|'; position: absolute; right: -6px; top: 0; color: var(--orange); animation: blink 0.8s step-end infinite; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-subtitle { font-size: 18px; color: var(--gray-500); max-width: 580px; margin: 0 auto 36px; line-height: 1.8; }
.hero-subtitle-small { font-size: 15px; color: var(--gray-300); }

.hero-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-cta { font-size: 17px; padding: 16px 36px; }

.hero-stats {
  display: inline-flex; align-items: center; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px; background: white; border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg); padding: 24px 40px; box-shadow: var(--shadow-sm);
}
.stat { padding: 0 32px; text-align: center; }
.stat-value { font-family: 'Fredoka', sans-serif; font-size: 32px; font-weight: 700; color: var(--gray-900); line-height: 1; }
.stat-label { font-size: 13px; color: var(--gray-500); margin-top: 4px; white-space: nowrap; }
.stat-divider { width: 1px; height: 40px; background: var(--gray-100); }

.hero-screenshot { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.05); position: relative; background: white; overflow: hidden; }
.dashboard-img { display: block; width: 100%; height: auto; }
.screenshot-mock-bar { position: relative; height: 36px; background: white; border-bottom: 1px solid var(--gray-100); display: flex; align-items: center; padding: 0 16px; gap: 8px; }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; }
.mock-dot.red    { background: #ff5f57; }
.mock-dot.yellow { background: #ffbd2e; }
.mock-dot.green  { background: #28ca42; }
.mock-url { flex: 1; height: 20px; background: var(--gray-100); border-radius: 6px; max-width: 300px; margin: 0 auto; }

/* ─── Features Overview ──────────────────────────────────────────────────── */
.features-overview { padding: 100px 0; background: var(--gray-100); }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.feature-card { padding: 28px 22px; border-top: 3px solid var(--accent); transition: all 0.2s ease; }
.feature-card:hover { transform: translateY(-4px); }
.feature-icon { font-size: 36px; margin-bottom: 14px; }
.feature-title { font-family: 'Fredoka', sans-serif; font-size: 20px; font-weight: 700; color: var(--gray-900); margin-bottom: 10px; }
.feature-desc { font-size: 14px; color: var(--gray-500); line-height: 1.7; margin-bottom: 16px; }
.feature-link { font-size: 14px; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.feature-card:hover .feature-link { gap: 8px; }

/* ─── Contacts Section ───────────────────────────────────────────────────── */
.contacts-section { padding: 100px 0; background: white; }

.features-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.feature-item { display: flex; gap: 14px; align-items: flex-start; }
.feature-check { width: 24px; height: 24px; background: var(--green-pale); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }
.fi-title { font-weight: 600; color: var(--gray-900); font-size: 15px; margin-bottom: 2px; }
.fi-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.readiness-preview { background: var(--gray-100); border-radius: var(--radius); padding: 18px 20px; }
.rp-label { font-size: 12px; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.rp-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.rp-badge { padding: 4px 12px; border-radius: 20px; font-size: 13px; font-weight: 500; }
.rp-hint { font-size: 12px; color: var(--gray-500); }

.floating-card { position: absolute; background: white; border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 12px 16px; display: flex; align-items: center; gap: 10px; border: 1px solid var(--gray-100); }
.fc-1 { bottom: 60px; left: -20px; }
.fc-2 { top: 40px; right: -20px; }
.fc-icon { font-size: 22px; }
.fc-title { font-size: 14px; font-weight: 600; color: var(--gray-900); }
.fc-sub   { font-size: 12px; color: var(--gray-500); }

/* ─── Deals Section ──────────────────────────────────────────────────────── */
.deals-section { padding: 100px 0; background: var(--gray-100); }

.kanban-preview { display: flex; gap: 10px; margin-top: 16px; }
.kanban-col { flex: 1; background: white; border-radius: var(--radius); padding: 12px 10px; box-shadow: var(--shadow-sm); }
.kanban-col-header { font-family: 'Fredoka', sans-serif; font-size: 12px; font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.kanban-item { background: var(--gray-100); border-radius: 6px; padding: 6px 8px; margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.ki-dot  { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ki-text { font-size: 11px; color: var(--gray-700); font-weight: 500; }

.deal-stats { display: flex; gap: 16px; margin: 28px 0; }
.deal-stat { flex: 1; background: white; border-radius: var(--radius); padding: 16px; text-align: center; box-shadow: var(--shadow-sm); }
.ds-icon  { font-size: 24px; margin-bottom: 6px; }
.ds-value { font-family: 'Fredoka', sans-serif; font-size: 18px; font-weight: 700; color: var(--gray-900); }
.ds-label { font-size: 12px; color: var(--gray-500); margin-top: 2px; }

.deal-features { display: flex; flex-direction: column; gap: 10px; }
.df-item { font-size: 14px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 8px; line-height: 1.6; }
.df-bullet { color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* ─── Accounting Section ─────────────────────────────────────────────────── */
.accounting-section { padding: 100px 0; background: white; }
.accounting-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

.af-card { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--gray-100); }
.af-card:last-of-type { border-bottom: none; }
.af-icon  { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.af-title { font-weight: 600; color: var(--gray-900); font-size: 15px; margin-bottom: 2px; }
.af-desc  { font-size: 14px; color: var(--gray-500); line-height: 1.6; }

.tax-rates-box { background: var(--orange-pale); border-radius: var(--radius); padding: 18px 20px; margin-top: 8px; }
.trb-label { font-size: 13px; font-weight: 600; color: var(--orange); margin-bottom: 10px; font-family: 'Fredoka', sans-serif; }
.trb-rates { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.trb-rate  { background: white; color: var(--orange); font-size: 13px; font-weight: 600; padding: 4px 12px; border-radius: 20px; border: 1px solid rgba(255,107,53,0.2); }
.trb-note  { font-size: 12px; color: var(--orange); opacity: 0.7; }

/* ─── Marketing Section ──────────────────────────────────────────────────── */
.marketing-section { padding: 100px 0; background: var(--gray-100); }

.marketing-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 36px; }
.tab-btn { padding: 10px 20px; border-radius: 8px; border: 1.5px solid var(--gray-300); background: white; color: var(--gray-500); font-size: 14px; font-weight: 600; font-family: 'Fredoka', sans-serif; cursor: pointer; transition: all 0.2s ease; }
.tab-btn:hover { border-color: var(--orange); color: var(--orange); }
.tab-btn.active { background: var(--orange); border-color: var(--orange); color: white; box-shadow: 0 4px 12px rgba(255,107,53,0.3); }

.tab-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); transition: opacity 0.2s ease; }
.tab-panel.fade-out { opacity: 0; }

.tab-title { font-family: 'Fredoka', sans-serif; font-size: 28px; font-weight: 700; color: var(--gray-900); margin-bottom: 14px; line-height: 1.3; }
.tab-desc  { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 24px; }

.tab-bullets { display: flex; flex-direction: column; gap: 10px; }
.tab-bullets li { font-size: 14px; color: var(--gray-700); display: flex; align-items: flex-start; gap: 10px; line-height: 1.6; }
.bullet-check { color: var(--green); font-weight: 700; flex-shrink: 0; }

/* ─── Pricing Section ────────────────────────────────────────────────────── */
.pricing-section { padding: 100px 0; background: white; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto 32px; }

.plan-card { padding: 32px 28px; position: relative; border: 1.5px solid var(--gray-100); display: flex; flex-direction: column; }
.plan-card.featured { border-color: var(--orange); box-shadow: 0 8px 32px rgba(255,107,53,0.12); transform: scale(1.03); }

.plan-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 12px; font-weight: 700; font-family: 'Fredoka', sans-serif; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }
.plan-save-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--green); color: white; font-size: 12px; font-weight: 700; font-family: 'Fredoka', sans-serif; padding: 4px 16px; border-radius: 20px; white-space: nowrap; }

.plan-icon  { font-size: 36px; margin-bottom: 8px; }
.plan-name  { font-family: 'Fredoka', sans-serif; font-size: 22px; font-weight: 700; color: var(--gray-900); margin-bottom: 4px; }

.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.price-currency { font-size: 14px; font-weight: 600; color: var(--gray-500); }
.price-value    { font-family: 'Fredoka', sans-serif; font-size: 42px; font-weight: 700; color: var(--gray-900); line-height: 1; }
.price-period   { font-size: 14px; color: var(--gray-500); }

.plan-price-sub { font-size: 13px; color: var(--green); font-weight: 600; margin-bottom: 4px; }
.plan-desc      { font-size: 14px; color: var(--gray-500); margin-bottom: 24px; line-height: 1.6; margin-top: 6px; }

.plan-features  { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pf-item        { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-700); }
.pf-check       { font-size: 13px; font-weight: 700; width: 18px; text-align: center; flex-shrink: 0; color: var(--green); }
.plan-cta       { text-align: center; justify-content: center; width: 100%; }

.pricing-note { text-align: center; font-size: 14px; color: var(--gray-500); }

/* ─── CTA Section ────────────────────────────────────────────────────────── */
.cta-section { padding: 100px 0; background: linear-gradient(135deg, var(--gray-900) 0%, #1a1a2e 100%); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -20%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,107,53,0.12) 0%, transparent 70%); pointer-events: none; }
.cta-section::after  { content: ''; position: absolute; bottom: -30%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(16,185,129,0.08) 0%, transparent 70%); pointer-events: none; }

.cta-inner { text-align: center; position: relative; z-index: 1; }
.cta-emoji { font-size: 56px; margin-bottom: 20px; display: block; }
.cta-title { font-size: clamp(32px, 5vw, 56px); font-weight: 700; color: white; margin-bottom: 20px; }
.cta-desc  { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }

.cta-actions { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.cta-btn { font-size: 17px; padding: 16px 36px; }
.cta-section .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); }
.cta-section .btn-secondary:hover { border-color: white; color: white; }

.cta-social-proof { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.sp-avatars { display: flex; }
.sp-avatar  { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 12px; font-weight: 700; font-family: 'Fredoka', sans-serif; border: 2px solid rgba(0,0,0,0.3); margin-left: -8px; }
.sp-avatar:first-child { margin-left: 0; }
.sp-text  { font-size: 14px; color: rgba(255,255,255,0.5); max-width: 300px; text-align: left; line-height: 1.5; }
.sp-text strong { color: rgba(255,255,255,0.8); }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.footer { background: var(--gray-900); color: rgba(255,255,255,0.6); padding: 64px 0 32px; }

.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-text { font-family: 'Fredoka', sans-serif; font-size: 22px; font-weight: 700; color: white; }
.footer-tagline { font-size: 14px; line-height: 1.6; max-width: 220px; margin-bottom: 16px; }

.footer-langs { display: flex; gap: 8px; }
.footer-lang-btn { background: rgba(255,255,255,0.08); border: 1px solid transparent; color: rgba(255,255,255,0.5); padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.15s ease; }
.footer-lang-btn.active { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.2); color: white; }
.footer-lang-btn:hover:not(.active) { color: rgba(255,255,255,0.8); }

.flg-title { font-family: 'Fredoka', sans-serif; font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-links-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-group a { font-size: 14px; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links-group a:hover { color: white; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .split-layout { grid-template-columns: 1fr; gap: 48px; }
  .split-layout .split-visual { order: -1; }
  .split-layout.reversed .split-visual { order: 0; }
  .fc-1, .fc-2 { display: none; }
  .accounting-grid { grid-template-columns: 1fr; gap: 40px; }
  .tab-panel { grid-template-columns: 1fr; padding: 24px; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .plan-card.featured { transform: scale(1); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contacts-section, .deals-section, .accounting-section, .marketing-section { padding: 60px 0; }
  .pricing-section, .cta-section { padding: 60px 0; }
}
@media (max-width: 768px) {
  .hero { padding: 100px 0 60px; }
  .hero-stats { padding: 16px 20px; }
  .stat { padding: 8px 16px; }
  .stat-value { font-size: 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .features-overview { padding: 60px 0; }
  .nav-links {
    display: none; position: fixed; top: 64px; left: 0; right: 0;
    background: white; flex-direction: column; align-items: stretch;
    padding: 12px 24px 24px; border-bottom: 1px solid var(--gray-100);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08); gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 16px; }
  .nav-btn-secondary { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .btn-primary, .btn-secondary { padding: 12px 22px; font-size: 15px; }
}
@media (max-width: 600px) {
  .cta-social-proof { flex-direction: column; text-align: center; }
  .sp-text { text-align: center; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ─── Scroll Animations ──────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-animate="slide-left"]  { opacity: 0; transform: translateX(-44px); }
[data-animate="slide-right"] { opacity: 0; transform: translateX(44px); }
[data-animate].is-visible    { opacity: 1 !important; transform: none !important; }
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.18s; }
[data-delay="3"] { transition-delay: 0.28s; }
[data-delay="4"] { transition-delay: 0.38s; }
[data-delay="5"] { transition-delay: 0.48s; }
[data-delay="6"] { transition-delay: 0.58s; }

/* ─── Float animation for floating cards ────────────────────────────────── */
@keyframes floatY {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
.floating-card.fc-1 { animation: floatY 3.5s ease-in-out infinite; }
.floating-card.fc-2 { animation: floatY 3.5s ease-in-out 1.75s infinite; }

/* ─── Hero screenshot 3D tilt ────────────────────────────────────────────── */
.hero-screenshot {
  transition: transform 0.12s ease;
  will-change: transform;
  transform-style: preserve-3d;
}

/* ─── Hero highlight shimmer ─────────────────────────────────────────────── */
@keyframes highlight-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
.highlight {
  background: linear-gradient(90deg,
    var(--orange) 0%,
    var(--orange-light) 30%,
    #fff3e0 50%,
    var(--orange-light) 70%,
    var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: highlight-shimmer 3s linear infinite;
}

/* ─── Video Modal ────────────────────────────────────────────────────────── */
.video-modal {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
}
.video-modal.open { opacity: 1; pointer-events: all; }

.video-modal-inner {
  position: relative; width: 100%; max-width: 860px;
  background: #1a1a2e; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.video-modal.open .video-modal-inner { transform: scale(1) translateY(0); }

.modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  width: 34px; height: 34px; background: rgba(255, 255, 255, 0.12);
  border: none; border-radius: 50%; color: white; font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background 0.2s ease; font-family: inherit;
}
.modal-close:hover { background: rgba(255, 255, 255, 0.24); }

.modal-video-area {
  aspect-ratio: 16/9;
  background: #000;
  position: relative; overflow: hidden;
}
.demo-iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: none;
}
.modal-yt-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
}
.modal-yt-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 107, 53, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 50%, rgba(16, 185, 129, 0.07) 0%, transparent 55%);
  pointer-events: none;
}
.yt-logo { position: relative; z-index: 1; }
.yt-play-ring {
  position: relative; z-index: 1;
  filter: drop-shadow(0 8px 24px rgba(255, 0, 0, 0.5));
  transition: transform 0.2s ease, filter 0.2s ease;
}
.modal-yt-placeholder:hover .yt-play-ring {
  transform: scale(1.1);
  filter: drop-shadow(0 12px 36px rgba(255, 0, 0, 0.7));
}
.yt-title {
  font-family: 'Fredoka', sans-serif; font-size: 22px;
  color: rgba(255, 255, 255, 0.9); position: relative; z-index: 1;
}
.yt-hint {
  font-size: 12px; color: rgba(255, 255, 255, 0.35);
  position: relative; z-index: 1;
}
.yt-hint code { color: rgba(255, 107, 53, 0.8); }

/* ─── Tab Mock UIs ───────────────────────────────────────────────────────── */
.tab-mock {
  background: var(--gray-100); border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--gray-300);
  height: 100%; min-height: 320px;
}
.mock-topbar {
  background: white; padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border-bottom: 1px solid var(--gray-100);
}
.mock-topbar-title { font-family: 'Fredoka', sans-serif; font-weight: 700; color: var(--gray-900); font-size: 15px; }
.mock-btn-mini {
  background: var(--orange); color: white; font-size: 11px; font-weight: 700;
  padding: 4px 11px; border-radius: 6px;
  font-family: 'Fredoka', sans-serif; cursor: pointer; flex-shrink: 0;
  transition: background 0.2s;
}
.mock-btn-mini:hover { background: var(--orange-light); }

/* Newsletter campaign rows */
.mock-campaign-row {
  display: flex; align-items: center; gap: 10px; padding: 9px 14px;
  background: white; border-bottom: 1px solid var(--gray-100);
  transition: background 0.15s; cursor: default;
}
.mock-campaign-row:hover { background: #fcfcfc; }
.mcr-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 2px; }
.mcr-info { flex: 1; min-width: 0; }
.mcr-name { font-size: 12px; font-weight: 600; color: var(--gray-900); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mcr-meta { font-size: 11px; color: var(--gray-500); }
.mcr-right { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; flex-shrink: 0; }
.mcr-rate  { font-size: 11px; color: var(--gray-500); }
.mcr-badge { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 10px; white-space: nowrap; }
.mcr-badge.sent      { background: #ecfdf5; color: var(--green); }
.mcr-badge.scheduled { background: #fffbeb; color: #d97706; }
.mcr-badge.draft     { background: var(--gray-100); color: var(--gray-500); }
.mock-stats-row { display: flex; padding: 10px 14px; background: #f9fafb; gap: 6px; }
.msr-item { text-align: center; flex: 1; }
.msr-val { font-family: 'Fredoka', sans-serif; font-size: 15px; font-weight: 700; color: var(--gray-900); line-height: 1.2; }
.msr-lbl { font-size: 10px; color: var(--gray-500); margin-top: 2px; }

/* Page builder */
.mock-page-builder { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.mpb-block {
  background: white; border-radius: 6px; padding: 10px 12px;
  border: 1.5px solid var(--gray-100); cursor: pointer; transition: border-color 0.15s;
}
.mpb-block:hover { border-color: var(--orange); }
.mpb-label { font-size: 10px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.mpb-bar { border-radius: 3px; }
.mpb-image {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 4px; min-height: 52px;
}

/* Social posts */
.mock-posts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 10px; }
.mpg-post {
  background: white; border-radius: 6px; padding: 10px;
  border: 1px solid var(--gray-100); cursor: pointer; transition: border-color 0.15s;
}
.mpg-post:hover { border-color: var(--orange); }
.mpg-platform { font-size: 10px; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 5px; }
.mpg-preview {
  font-size: 11px; color: var(--gray-700); line-height: 1.5; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.mpg-footer { display: flex; justify-content: space-between; align-items: center; }
.mpg-date { font-size: 10px; color: var(--gray-500); }
.mpg-status { font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 6px; }
.mpg-status.sched  { background: #fffbeb; color: #d97706; }
.mpg-status.draftx { background: var(--gray-100); color: var(--gray-500); }
.mpg-status.pub    { background: #ecfdf5; color: var(--green); }

/* Email builder */
.mock-email-builder { display: flex; gap: 8px; padding: 10px; min-height: 220px; }
.meb-sidebar { width: 84px; display: flex; flex-direction: column; gap: 4px; flex-shrink: 0; }
.meb-block-item {
  background: white; border-radius: 4px; padding: 5px 7px; font-size: 10px; color: var(--gray-700);
  border: 1px solid var(--gray-100); cursor: grab; transition: border-color 0.15s;
}
.meb-block-item:hover { border-color: var(--gray-300); }
.meb-block-item.active { background: var(--orange-pale); border-color: var(--orange); color: var(--orange); }
.meb-canvas { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.meb-email-block { background: white; border-radius: 4px; padding: 8px 10px; border: 1px solid var(--gray-100); }
.meb-selected { border-color: var(--orange) !important; box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.15); }
.meb-header-blk { background: var(--gray-900) !important; padding: 14px 10px !important; }

/* Workflow */
.mock-workflow {
  display: flex; flex-direction: column; align-items: center; padding: 12px 10px;
  overflow-y: auto; gap: 0;
}
.mwf-node {
  background: white; border-radius: 8px; padding: 7px 16px;
  display: flex; align-items: center; gap: 7px;
  border: 1.5px solid var(--gray-100); min-width: 172px; justify-content: center; margin: 3px 0;
}
.mwf-node.trigger   { border-color: var(--orange); background: var(--orange-pale); }
.mwf-node.action    { border-color: #3b82f6; background: #eff6ff; }
.mwf-node.delay     { border-color: #f59e0b; background: #fffbeb; }
.mwf-node.condition { border-color: #8b5cf6; background: #f5f3ff; }
.mwf-node.small     { min-width: 128px; padding: 6px 12px; }
.mwf-icon  { font-size: 13px; }
.mwf-label { font-size: 11px; font-weight: 600; color: var(--gray-900); }
.mwf-arrow { font-size: 14px; color: var(--gray-300); line-height: 1.4; }
.mwf-branches { display: flex; gap: 12px; margin-top: 4px; align-items: flex-start; }
.mwf-branch { display: flex; flex-direction: column; align-items: center; gap: 3px; }
.mwf-branch-label { font-size: 10px; font-weight: 700; color: var(--gray-500); }

/* ─── Pedro AI Section ───────────────────────────────────────────────────── */
.pedro-section {
  padding: 100px 0;
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 60%, #0f172a 100%);
  position: relative; overflow: hidden;
}
.pedro-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(236, 72, 153, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 30%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
  pointer-events: none;
}
.pedro-section .section-label { color: #f9a8d4; }
.pedro-section .section-title { color: white; }
.pedro-section .section-subtitle { color: rgba(255, 255, 255, 0.65); }
.pedro-section .fi-title { color: rgba(255, 255, 255, 0.9); }
.pedro-section .fi-desc  { color: rgba(255, 255, 255, 0.5); }
.pedro-label {
  background: rgba(236, 72, 153, 0.15);
  border: 1px solid rgba(236, 72, 153, 0.3);
}

/* Pedro feature card highlight */
.pedro-feature-card { background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 100%); }

/* Pedro CTA button inside dark section */
.pedro-cta-btn { margin-top: 28px; align-self: flex-start; }

/* Pedro chat mock UI */
.pedro-chat-mock {
  background: #1e293b;
  border: 1px solid rgba(236, 72, 153, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(236, 72, 153, 0.1);
  max-width: 460px; width: 100%;
}
.pcm-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #0f172a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.pcm-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.pcm-name { font-family: 'Fredoka', sans-serif; font-size: 15px; color: white; line-height: 1.2; }
.pcm-status { font-size: 11px; color: #10b981; }

.pcm-messages {
  padding: 16px 14px;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 240px;
}
.pcm-msg { display: flex; }
.pcm-msg.user { justify-content: flex-end; }
.pcm-bubble {
  max-width: 85%; padding: 10px 14px; border-radius: 14px;
  font-size: 13px; line-height: 1.5;
}
.pcm-msg.bot .pcm-bubble {
  background: #334155; color: rgba(255, 255, 255, 0.85);
  border-bottom-left-radius: 4px;
}
.pcm-msg.bot .pcm-bubble strong { color: #f9a8d4; }
.pcm-msg.user .pcm-bubble {
  background: linear-gradient(135deg, #ec4899, #a855f7);
  color: white; border-bottom-right-radius: 4px;
}

/* Typing indicator dots */
.pcm-typing .pcm-bubble {
  display: flex; gap: 4px; align-items: center; padding: 12px 16px;
}
.pcm-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  animation: pcm-bounce 1.2s ease-in-out infinite;
}
.pcm-dot:nth-child(2) { animation-delay: 0.2s; }
.pcm-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes pcm-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.pcm-input-area {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #0f172a;
}
.pcm-input {
  flex: 1; background: #1e293b; border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px; padding: 9px 16px;
  color: rgba(255, 255, 255, 0.5); font-size: 13px;
  outline: none; font-family: inherit;
}
.pcm-send {
  width: 32px; height: 32px; border-radius: 50%;
  background: linear-gradient(135deg, #ec4899, #a855f7);
  border: none; color: white; font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  cursor: default; opacity: 0.6;
}
