/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #00262d;
  line-height: 1.6;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 { font-family: 'Sora', sans-serif; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); font-weight: 600; }
p { font-size: 1.05rem; color: #444; }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-gray { background: #f7f8fa; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 9999px;
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem;
  cursor: pointer; border: none; transition: all 0.3s ease;
}
.btn-primary {
  background: #05b936; color: #fff;
  box-shadow: 0 4px 14px rgba(5, 185, 54, 0.3);
}
.btn-primary:hover {
  background: #049a2d; transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(5, 185, 54, 0.4);
}
.btn-outline {
  background: transparent; color: #05b936;
  border: 2px solid #05b936;
}
.btn-outline:hover {
  background: #05b936; color: #fff;
}

/* ========== HEADER ========== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  padding: 0 24px;
}
.header-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo-group { display: flex; align-items: center; gap: 12px; }
.logo-bizcoach {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.4rem; color: #384872;
}
.logo-bizcoach .logo-ai { color: #05b936; }
.logo-by-line { display: flex; align-items: center; gap: 4px; }
.logo-by {
  font-family: 'Inter', sans-serif; font-weight: 400;
  font-size: 1rem; color: #999;
}
.logo-kestio-img {
  height: 18px; display: inline-block;
  vertical-align: middle; position: relative; top: -2px;
}
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: #444;
  transition: color 0.2s;
}
.nav-links a:hover { color: #05b936; }
.header-cta .btn { padding: 10px 24px; font-size: 0.9rem; }

/* ========== HERO ========== */
.hero {
  padding-top: 140px; padding-bottom: 80px;
  background: linear-gradient(135deg, #f7f8fa 0%, #eef6f1 50%, #f0eeff 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; top: -50%; right: -20%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(5, 185, 54, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(5, 185, 54, 0.1); color: #05b936;
  padding: 8px 16px; border-radius: 9999px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
}
.hero-badge-dot {
  width: 8px; height: 8px; background: #05b936;
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; } 50% { opacity: 0.5; }
}
.hero h1 { color: #00262d; margin-bottom: 20px; }
.hero h1 span { color: #05b936; }
.hero-subtitle {
  font-size: 1.2rem; color: #666; margin-bottom: 32px;
  max-width: 520px; line-height: 1.7;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(0, 0, 0, 0.08);
  justify-content: center;
}
.hero-stats > div { text-align: center; }
.hero-stat-number {
  font-family: 'Sora', sans-serif; font-size: 2rem;
  font-weight: 800; color: #384872;
}
.hero-stat-label { font-size: 0.85rem; color: #888; margin-top: 4px; }

/* Hero Visual — Video placeholder */
.hero-visual { position: relative; z-index: 1; }
.hero-video-wrapper {
  background: #fff; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.04);
  overflow: hidden; position: relative;
  aspect-ratio: 16/9;
}
.hero-video-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #384872 0%, #2d3a5e 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; cursor: pointer; transition: all 0.3s;
}
.hero-video-placeholder:hover { background: linear-gradient(135deg, #2d3a5e 0%, #1e2a4a 100%); }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: #05b936; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 8px 30px rgba(5, 185, 54, 0.4);
  transition: transform 0.3s;
}
.hero-video-placeholder:hover .play-btn { transform: scale(1.1); }
.play-btn svg { margin-left: 4px; }
.hero-video-label {
  font-family: 'Sora', sans-serif; font-size: 0.9rem;
  font-weight: 600; opacity: 0.9;
}
.hero-video-sublabel { font-size: 0.8rem; opacity: 0.6; margin-top: 4px; }

/* Floating elements */
.float-badge {
  position: absolute; background: #fff; border-radius: 16px;
  padding: 12px 16px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; font-weight: 600;
  animation: float 6s ease-in-out infinite; z-index: 2;
}
.float-badge-1 { top: 10px; right: -20px; }
.float-badge-2 { bottom: 20px; left: -20px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.float-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}

/* ========== LOGOS / SOCIAL PROOF ========== */
.logos-section {
  padding: 48px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden; position: relative;
}
.logos-label {
  text-align: center; font-size: 0.85rem; font-weight: 600;
  color: #888; text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 32px;
}
.logos-section .logos-track {
  display: flex !important; flex-direction: row !important; flex-wrap: nowrap !important;
  align-items: center; gap: 60px;
  animation: logos-scroll 40s linear infinite;
  width: max-content;
}
.logos-section .logos-track:hover { animation-play-state: paused; }
.logos-section .logo-item {
  flex-shrink: 0; height: 44px; display: flex; align-items: center;
}
.logos-section .logo-item img {
  height: 44px !important; max-height: 44px !important; width: auto !important;
  max-width: 160px !important; object-fit: contain;
}
@keyframes logos-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== KEY FIGURES ========== */
.keyfigures {
  padding: 64px 0;
  background: linear-gradient(135deg, #00262d 0%, #384872 100%);
  color: #fff;
}
.keyfigures-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.keyfigure-number {
  font-family: 'Sora', sans-serif; font-size: 2.5rem;
  font-weight: 800; color: #2de65a; margin-bottom: 8px;
}
.keyfigure-label {
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* ========== SECTION HEADERS ========== */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 16px; }
.section-header p { color: #666; margin-top: 16px; font-size: 1.1rem; }
.section-tag {
  display: inline-block; font-size: 0.85rem; font-weight: 600;
  color: #05b936; text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 12px;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.feature-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-card h3 { margin-bottom: 12px; color: #00262d; }
.feature-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }

/* ========== CHALLENGES ========== */
.challenges-section { overflow: hidden; }
.challenges-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; margin-top: 48px;
}
.challenges-content h3 {
  font-size: 1.5rem; margin-bottom: 16px; color: #00262d;
}
.challenges-content > p { margin-bottom: 24px; color: #666; }
.challenges-features {
  list-style: none; display: flex; flex-direction: column; gap: 16px;
}
.challenges-features li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; color: #444;
}
.challenge-feat-icon {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 1.1rem;
}
.challenge-feat-text strong { color: #00262d; display: block; margin-bottom: 2px; }
.challenges-visual {
  background: linear-gradient(135deg, #fff3e0 0%, #ffeeee 100%);
  border-radius: 20px; padding: 40px; position: relative;
  min-height: 400px;
}
.challenges-photo {
  margin-bottom: 20px; border-radius: 16px; overflow: hidden;
}
.challenges-photo img {
  width: 100%; height: 180px; object-fit: cover; display: block;
  border-radius: 16px;
}
.challenge-mockup {
  background: #fff; border-radius: 16px; padding: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}
.challenge-mockup-title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1rem; color: #00262d; margin-bottom: 4px;
}
.challenge-mockup-dates { font-size: 0.8rem; color: #888; margin-bottom: 16px; }
.challenge-leaderboard { display: flex; flex-direction: column; gap: 10px; }
.challenge-row {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 14px; border-radius: 10px; background: #f7f8fa;
}
.challenge-row:first-child { background: #eef6f1; }
.challenge-rank {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 0.9rem; color: #384872; width: 24px; text-align: center;
}
.challenge-row:first-child .challenge-rank { color: #05b936; }
.challenge-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #ddd; display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 600; color: #fff;
}
.challenge-name { font-size: 0.85rem; font-weight: 500; flex: 1; }
.challenge-score-val {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 0.85rem; color: #384872;
}
.challenge-progress {
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.challenge-progress-label {
  font-size: 0.8rem; color: #888; margin-bottom: 8px;
}
.challenge-progress-bar {
  height: 8px; background: #eee; border-radius: 4px; overflow: hidden;
}
.challenge-progress-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, #F99002, #F49390);
  width: 68%;
}

/* ========== AGENTS SHOWCASE ========== */
.agents-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 48px; align-items: center; margin-top: 48px;
}
.agents-list { display: flex; flex-direction: column; gap: 16px; }
.agent-item {
  display: flex; align-items: center; gap: 16px;
  padding: 20px; border-radius: 16px; background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease; cursor: default;
}
.agent-item:hover {
  border-color: #05b936;
  box-shadow: 0 4px 20px rgba(5, 185, 54, 0.1);
}
.agent-icon-box {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden;
}
.agent-icon-box img {
  width: 100%; height: 100%; object-fit: cover;
}
.agent-info h4 {
  font-family: 'Sora', sans-serif; font-size: 1rem;
  font-weight: 600; margin-bottom: 4px;
}
.agent-info p { font-size: 0.85rem; color: #888; margin: 0; }
.agents-visual {
  background: linear-gradient(135deg, #384872, #2d3a5e);
  border-radius: 20px; padding: 40px;
  color: #fff; position: relative; overflow: hidden;
}
.agents-photo {
  margin: -40px -40px 24px -40px; border-radius: 20px 20px 0 0; overflow: hidden;
}
.agents-photo img {
  width: 100%; height: 200px; object-fit: cover; display: block;
}
.agents-visual::after {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}
.agents-visual h3 {
  font-size: 1.5rem; margin-bottom: 16px; position: relative; z-index: 1;
}
.agents-visual p {
  color: rgba(255, 255, 255, 0.8); position: relative; z-index: 1;
  margin-bottom: 24px;
}
.agents-visual-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; position: relative; z-index: 1;
}
.av-stat {
  background: rgba(255, 255, 255, 0.1); border-radius: 12px;
  padding: 20px; text-align: center;
}
.av-stat-number {
  font-family: 'Sora', sans-serif; font-size: 1.8rem;
  font-weight: 800; color: #2de65a;
}
.av-stat-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.7); margin-top: 4px; }

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.testimonial-stars { color: #f6c847; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-text {
  font-size: 0.95rem; color: #444; line-height: 1.7;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: #eef6f1; display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: #05b936;
  font-family: 'Sora', sans-serif;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-role { font-size: 0.8rem; color: #888; }
.keyfigures-trust { margin-top: 32px; text-align: center; }
.trustfolio-reviews { margin-top: 48px; text-align: center; }

/* ========== CTA SECTION ========== */
.cta-section {
  background: linear-gradient(135deg, #00262d 0%, #384872 100%);
  padding: 80px 0; text-align: center; color: #fff;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(5, 185, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(135, 123, 242, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; position: relative; z-index: 1; }
.cta-section p {
  color: rgba(255, 255, 255, 0.8); max-width: 600px;
  margin: 0 auto 32px; font-size: 1.1rem;
  position: relative; z-index: 1;
}
.cta-buttons {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.btn-white {
  background: #fff; color: #384872;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost:hover {
  border-color: #fff; background: rgba(255, 255, 255, 0.1);
}

/* ========== FOOTER ========== */
.footer {
  background: #00262d; color: #fff; padding: 60px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 40px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.6); font-size: 0.9rem;
  margin-top: 16px; max-width: 300px;
}
.footer-logo {
  font-family: 'Sora', sans-serif; display: flex;
  align-items: center; gap: 10px;
}
.footer-logo-kestio { font-weight: 700; font-size: 1.2rem; }
.footer-logo-biz { font-weight: 700; font-size: 1.2rem; color: #7CBF94; }
.footer-logo-biz .footer-logo-ai { color: #fff; }
.footer h4 {
  font-family: 'Sora', sans-serif; font-size: 0.9rem;
  font-weight: 600; margin-bottom: 16px; color: #fff;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255, 255, 255, 0.6); font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: #2de65a; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 0.9rem; transition: all 0.2s;
}
.footer-social a:hover { background: #05b936; }

/* ========== DEMO MODAL ========== */
.demo-modal-overlay {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); z-index: 1000;
  align-items: center; justify-content: center;
  backdrop-filter: blur(4px); padding: 24px;
}
.demo-modal-overlay.active { display: flex; }
.demo-modal {
  background: #fff; border-radius: 20px; padding: 0;
  width: 90%; max-width: 600px; max-height: 90vh;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.demo-modal-wide {
  max-width: 960px; overflow-y: auto;
}
.demo-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 10;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, 0.9); cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  color: #666; transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.demo-modal-close:hover { background: #fff; color: #333; }
.demo-modal-grid {
  display: grid; grid-template-columns: 1fr 1fr;
}
.demo-modal-left {
  background: linear-gradient(135deg, #00262d 0%, #384872 100%);
  color: #fff; padding: 48px 40px; position: relative; overflow: hidden;
}
.demo-modal-left::after {
  content: ''; position: absolute; bottom: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(5, 185, 54, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.demo-modal-left-inner { position: relative; z-index: 1; }
.demo-modal-avatar {
  width: 72px; height: 72px; border-radius: 50%; object-fit: cover;
  border: 3px solid rgba(255, 255, 255, 0.2); margin-bottom: 24px;
}
.demo-modal-left h2 {
  font-family: 'Sora', sans-serif; font-size: 1.5rem; font-weight: 700;
  color: #fff; line-height: 1.3; margin-bottom: 16px;
}
.demo-modal-subtitle {
  font-size: 0.95rem; color: rgba(255, 255, 255, 0.8);
  line-height: 1.6; margin-bottom: 28px;
}
.demo-modal-checklist {
  display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px;
}
.demo-modal-check {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: rgba(255, 255, 255, 0.9);
}
.demo-modal-check svg { flex-shrink: 0; }
.demo-modal-trust {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.8rem; color: rgba(255, 255, 255, 0.6);
  padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.demo-modal-trust span:first-child { color: #f6c847; font-size: 0.9rem; }
.demo-modal-right { padding: 40px 32px; }
.demo-modal-form-header { margin-bottom: 16px; }
.demo-modal-form-header h3 {
  font-family: 'Sora', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: #00262d; margin-bottom: 6px;
}
.demo-modal-form-header p {
  font-size: 0.9rem; color: #888; margin: 0;
}

/* Feature cards clickable */
.feature-card.clickable { cursor: pointer; }
.feature-card.clickable:hover {
  border-color: #05b936;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(5, 185, 54, 0.12);
}

/* ========== CTA MID ========== */
.section-cta-mid {
  background: linear-gradient(135deg, #eef6f1 0%, #f0eeff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.btn-with-avatar {
  display: inline-flex; align-items: center; gap: 10px;
}
.btn-avatar {
  width: 28px; height: 28px; border-radius: 50%; object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

/* ========== WHY BIZCOACH ========== */
.why-section { background: #fff; }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.why-card {
  background: #fff; border-radius: 16px; padding: 32px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.why-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.5rem;
}
.why-card h3 { margin-bottom: 10px; color: #00262d; font-size: 1.1rem; }
.why-card p { font-size: 0.95rem; color: #666; line-height: 1.6; }
.why-card-badge {
  display: inline-block; font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 9999px; margin-bottom: 16px;
}

/* ========== SECTORS ========== */
.sectors-section { background: #f7f8fa; }
.sectors-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 48px;
}
.sector-item {
  background: #fff; border-radius: 14px; padding: 28px 20px;
  text-align: center; border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}
.sector-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  border-color: #05b936;
}
.sector-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; font-size: 1.4rem;
}
.sector-item h4 {
  font-family: 'Sora', sans-serif; font-size: 0.95rem;
  font-weight: 600; color: #00262d; margin-bottom: 4px;
}
.sector-item p { font-size: 0.8rem; color: #888; margin: 0; }

/* ========== FAQ ========== */
.faq-section { background: #fff; }
.faq-list {
  max-width: 800px; margin: 48px auto 0;
  display: flex; flex-direction: column; gap: 12px;
}
.faq-item {
  background: #fff; border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden; transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(0, 0, 0, 0.15); }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer;
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 1rem; color: #00262d;
  background: none; border: none; width: 100%; text-align: left;
  gap: 16px;
}
.faq-question:hover { color: #05b936; }
.faq-chevron {
  width: 24px; height: 24px; flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #888;
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: #05b936; }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem; color: #666; line-height: 1.7;
}

/* ========== CTA HUMANIZED ========== */
.cta-humanized {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; position: relative; z-index: 1;
  margin-bottom: 32px;
}
.cta-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  object-fit: cover; border: 3px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}
.cta-avatar-info { text-align: left; }
.cta-avatar-name {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: #fff;
}
.cta-avatar-role {
  font-size: 0.85rem; color: rgba(255, 255, 255, 0.7);
  margin-top: 2px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; max-width: 500px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .keyfigures-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .challenges-grid { grid-template-columns: 1fr; }
  .challenges-visual { max-width: 420px; margin: 0 auto; }
  .agents-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 40px 0; }
  .nav-links { display: none; }
  .header { padding: 0 16px; }
  .header-inner { height: 60px; gap: 12px; }
  .logo-group { flex-direction: column; gap: 0; align-items: flex-start; }
  .logo-bizcoach { font-size: 1.1rem; white-space: nowrap; line-height: 1.2; }
  .logo-by { font-size: 0.75rem; line-height: 1.2; }
  .logo-kestio-img { height: 12px; }
  .header-cta .btn { padding: 8px 16px; font-size: 0.8rem; white-space: nowrap; }
  .features-grid { grid-template-columns: 1fr; }
  .keyfigures-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .logos-track { gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .float-badge { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .sectors-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-humanized { flex-direction: column; text-align: center; gap: 16px; }
  .cta-avatar-info { text-align: center; }
  .demo-modal-grid { grid-template-columns: 1fr; }
  .demo-modal-left { padding: 32px 24px; }
  .demo-modal-left h2 { font-size: 1.2rem; }
  .demo-modal-right { padding: 24px; }
  .demo-modal-wide { max-height: 95vh; }
}

/* ========== PRICING ========== */
.pricing-section {
  background: linear-gradient(135deg, #f7f8fa 0%, #eef6f1 50%, #f0eeff 100%);
}
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 32px;
}
.pricing-toggle-label {
  font-size: 1rem; font-weight: 500; color: #666;
  cursor: pointer; transition: color 0.3s;
}
.pricing-toggle-label.active { color: #00262d; font-weight: 600; }
.pricing-toggle-switch {
  position: relative; width: 56px; height: 30px;
  background: #ddd; border-radius: 9999px; cursor: pointer;
  transition: background 0.3s;
}
.pricing-toggle-switch.annual { background: #05b936; }
.pricing-toggle-switch::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 24px; height: 24px; background: #fff; border-radius: 50%;
  transition: transform 0.3s; box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}
.pricing-toggle-switch.annual::after { transform: translateX(26px); }
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px; align-items: start;
}
.pricing-card {
  background: #fff; border-radius: 20px; padding: 40px 32px;
  border: 2px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease; position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}
.pricing-card.popular {
  border-color: #05b936;
  box-shadow: 0 20px 60px rgba(5, 185, 54, 0.12);
}
.pricing-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: #05b936; color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 6px 20px; border-radius: 9999px;
  box-shadow: 0 4px 12px rgba(5, 185, 54, 0.3);
}
.pricing-card-name {
  font-family: 'Sora', sans-serif; font-size: 1.4rem;
  font-weight: 700; color: #00262d; margin-bottom: 8px;
}
.pricing-card-desc {
  font-size: 0.95rem; color: #666; margin-bottom: 24px;
  min-height: 44px;
}
.pricing-card-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 4px;
}
.pricing-amount {
  font-family: 'Sora', sans-serif; font-size: 2.8rem;
  font-weight: 800; color: #00262d;
}
.pricing-currency {
  font-family: 'Sora', sans-serif; font-size: 1.2rem;
  font-weight: 700; color: #00262d;
}
.pricing-period {
  font-size: 0.9rem; color: #999; margin-bottom: 8px;
}
.pricing-billing-note {
  font-size: 0.8rem; color: #999; margin-bottom: 24px;
  min-height: 20px;
}
.pricing-divider {
  width: 100%; height: 1px; background: rgba(0, 0, 0, 0.08);
  margin: 24px 0;
}
.pricing-features-title {
  font-size: 0.85rem; font-weight: 600; color: #00262d;
  text-transform: uppercase; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.pricing-features { list-style: none; padding: 0; margin: 0 0 32px 0; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.95rem; color: #444; padding: 6px 0;
}
.pricing-features li::before {
  content: '✓'; color: #05b936; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}
.pricing-cta { width: 100%; text-align: center; justify-content: center; }
.pricing-card.popular .pricing-cta {
  background: #05b936; color: #fff;
  box-shadow: 0 4px 14px rgba(5, 185, 54, 0.3);
}
.pricing-card.popular .pricing-cta:hover {
  background: #049a2d;
}
.pricing-enterprise-note {
  text-align: center; margin-top: 24px;
  font-size: 0.95rem; color: #666;
}
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .pricing-card { padding: 32px 24px; }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card.popular { order: -1; }
}
