:root {
  /* Updated Brand Colors - Purple to Natural Blue */
  --primary-blue: #121b3d;
  --primary-blue-hover: #0f1533;
  --primary-blue-light: #1e2b54;
  --accent-purple: #8b5cf6;
  --accent-pink: #ec4899;
  --accent-green: #10b981;

  /* Light backgrounds */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  --bg-pink: #5177ff;
  --bg-pink-light: #fdf2f8;

  /* Text colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Border colors */
  --border-color: #e2e8f0;
  --border-hover: #cbd5e1;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-blue: 0 10px 25px rgba(18, 27, 61, 0.15);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #121b3d 0%, #2551ff 100%);
  --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #8b5cf6 100%);
  --gradient-success: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --gradient-pink: linear-gradient(135deg, #ec4899 0%, #be185d 100%);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html, body {
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  padding-top: 70px !important;
  margin: 0 !important;
  min-height: 100vh;
  background: var(--bg-primary);
}

/* === POLSKA CRYPTO FAMILY NAVBAR === */
.pcf-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw; z-index: 999;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px 0 rgba(18,27,61,0.08);
  height: 70px;
  min-height: 70px;
  transition: all 0.3s ease;
  margin: 0 !important;
  padding: 0 !important;
}
.pcf-navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 70px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px 0 0;
  position: relative;
}
.pcf-logo-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  height: 40px;
  margin-left: 0;
  padding-left: 0;
}
.pcf-logo-img {
  height: 40px;
  width: auto;
  display: block;
  margin-left: 0;
}
.pcf-logo-text {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  background: linear-gradient(135deg, #121b3d, #2551ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
.pcf-nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
  min-width: 0;
}
.pcf-nav-links li {
  position: relative;
  min-width: 0;
}
.pcf-nav-links a {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #1e293b;
  text-decoration: none;
  padding: 8px 0;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.pcf-nav-links a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #121b3d, #2551ff);
  border-radius: 2px;
  transition: width 0.3s;
  margin-top: 4px;
}
.pcf-nav-links a:hover,
.pcf-nav-links a:focus {
  color: #121b3d;
}
.pcf-nav-links a:hover::after,
.pcf-nav-links a:focus::after {
  width: 100%;
}
.pcf-nav-cta .pcf-cta-btn {
  background: linear-gradient(90deg, #121b3d, #2551ff);
  color: #fff;
  border-radius: 999px;
  padding: 10px 24px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px 0 #2551ff22;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  margin-left: 12px;
  display: inline-block;
}
.pcf-cta-btn:hover {
  background: linear-gradient(90deg, #2551ff, #121b3d);
  color: #fff;
}
.pcf-lang-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: 32px;
  margin-right: 0;
  background: #f3f4f6;
  border-radius: 999px;
  padding: 4px 16px;
  box-shadow: 0 2px 8px rgba(37,99,235,0.06);
  height: 40px;
}
.pcf-lang-btn {
  border: none;
  outline: none;
  background: transparent;
  color: #1e293b;
  font-weight: 700;
  font-size: 1rem;
  padding: 7px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.22s;
  position: relative;
}
.pcf-lang-btn.active {
  background: linear-gradient(90deg, #121b3d, #2551ff);
  color: #fff;
  box-shadow: 0 2px 8px 0 #2551ff22;
}
.pcf-lang-btn:not(.active):hover {
  color: #2551ff;
}
.pcf-lang-switcher-mobile {
  display: none;
}
.pcf-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  transition: all 0.3s;
}
.pcf-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: linear-gradient(90deg, #121b3d, #2551ff);
  border-radius: 2px;
  transition: all 0.3s;
}
.pcf-hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.pcf-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.pcf-hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
.pcf-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.08);
  z-index: 998;
  transition: opacity 0.3s;
}

/* --- BODY PADDING --- */
body {
  padding-top: 70px !important;
  margin: 0 !important;
  /* Odstraní bílý prostor nahoře */
}

/* --- RESPONSIVE --- */
@media (max-width: 1023px) {
  .pcf-navbar,
  .pcf-navbar-inner {
    height: 56px;
    min-height: 56px;
  }
  body {
    padding-top: 56px !important;
  }
}

@media (max-width: 900px) {
  .pcf-navbar-inner {
    padding: 0 10px 0 0;
  }
  .pcf-logo-link {
    margin-left: 0;
    padding-left: 0;
  }
  .pcf-nav-links {
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 56px;
    right: -100vw;
    width: 80vw;
    max-width: 340px;
    height: calc(100vh - 56px);
    background: #fff;
    box-shadow: 0 8px 32px rgba(18,27,61,0.12);
    padding: 32px 24px 24px 24px;
    z-index: 1002;
    transition: right 0.3s;
    border-radius: 0 0 0 0;
    gap: 0;
    min-width: 0;
  }
  .pcf-nav-links.active {
    right: 0;
    box-shadow: 0 0 0 0 transparent;
    display: flex;
  }
  .pcf-nav-links li {
    width: 100%;
    margin: 0 0 18px 0;
  }
  .pcf-nav-links li:last-child {
    margin-bottom: 0;
  }
  .pcf-nav-links a,
  .pcf-nav-cta .pcf-cta-btn {
    width: 100%;
    display: block;
    text-align: left;
    padding: 16px 0 16px 8px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin: 0;
    background: none;
    box-shadow: none;
    border: none;
  }
  .pcf-nav-links a:hover,
  .pcf-nav-links a:focus {
    background: #f3f4f6;
    color: #121b3d;
  }
  .pcf-nav-cta .pcf-cta-btn {
    margin-left: 0;
    margin-top: 8px;
    background: linear-gradient(90deg, #121b3d, #2551ff);
    color: #fff;
    text-align: center;
    padding: 14px 0;
  }
  .pcf-lang-switcher {
    display: none;
  }
  .pcf-lang-switcher-mobile {
    display: flex;
    gap: 16px;
    margin-top: 24px;
    width: 100%;
    justify-content: flex-start;
  }
  .pcf-lang-btn {
    font-size: 1.1rem;
    padding: 10px 24px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #1e293b;
    margin-bottom: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
  }
  .pcf-lang-btn.active {
    background: linear-gradient(90deg, #121b3d, #2551ff);
    color: #fff;
    box-shadow: 0 0 12px 2px #2551ff55;
  }
  .pcf-hamburger {
    display: flex;
  }
  .pcf-mobile-overlay {
    display: block;
    opacity: 0;
    pointer-events: none;
  }
  .pcf-nav-links.active ~ .pcf-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (max-width: 600px) {
  .pcf-navbar-inner {
    padding: 0 4px 0 0;
  }
  .pcf-logo-img {
    height: 32px;
  }
  .pcf-logo-text {
    font-size: 1rem;
  }
  .pcf-nav-links {
    width: 100vw;
    padding: 24px 12px 12px 12px;
    max-width: 100vw;
  }
  .pcf-nav-links a,
  .pcf-nav-cta .pcf-cta-btn {
    font-size: 1.15rem;
    padding: 18px 0 18px 10px;
  }
  .pcf-lang-btn {
    font-size: 1rem;
    padding: 10px 18px;
  }
  .phone-mockup {
    padding: 0.7rem;
    border-radius: 12px;
    max-width: 99vw;
  }
  .mockup-screen {
    padding: 0.7rem 0.7rem 0.7rem 0.7rem;
    border-radius: 10px;
  }
  .stats-row {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .chart-visual {
    height: 140px;
    min-height: 120px;
    border-radius: 16px !important;
    padding: 0 !important;
    box-sizing: border-box;
    margin: 0;
    background: #fff !important;
    box-shadow: 0 2px 8px rgba(18,27,61,0.06);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
    width: 100%;
  }
  .chart-visual > div,
  .tradingview-widget-container,
  .tradingview-widget-container__widget {
    border-radius: 16px !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #fff !important;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    overflow: hidden;
  }
}

/* --- FINTECH HERO SECTION --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #1e40af 100%);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="crypto-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(59,130,246,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23crypto-grid)"/></svg>');
  opacity: 0.6;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  animation: slideInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, #fff 0%, #bfdbfe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-button {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  padding: 1.2rem 2.8rem;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.6);
  scale: 1.02;
  background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

/* Crypto mockup */
.hero-visual {
  animation: slideInRight 1s ease-out;
  position: relative;
}

.crypto-mockup {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.mockup-screen {
  background: #f8fafc;
  border-radius: var(--radius-md);
  padding: 1.2rem 1.2rem 1rem 1.2rem;
  position: relative;
  z-index: 2;
}

.stats-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-item {
  flex: 1;
  background: white;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 800;
  color: #16a34a;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 600;
}

.chart-visual {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 0;
  min-height: 180px;
  box-sizing: border-box;
  background: #fff !important;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  /* odstraněno: background: var(--gradient-success); */
}
.chart-visual::before {
  /* odstraněno: modrý obrázek pod grafem */
  display: none !important;
}

/* Mockup box for hero section */
.hero-mockup-box {
  background: #f8fafc;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(18,27,61,0.10);
  padding: 1.5rem 1.5rem 1.2rem 1.5rem;
  max-width: 340px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}

.hero-mockup-stats {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.hero-mockup-stat {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(18,27,61,0.06);
  border: 1px solid #e2e8f0;
  min-width: 0;
}

.hero-mockup-stat .stat-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #22c55e;
  margin-bottom: 0.15rem;
}

.hero-mockup-stat .stat-label {
  font-size: 0.8rem;
  color: #2563eb;
  font-weight: 600;
}

.hero-mockup-chart {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(18,27,61,0.06);
  border: 1px solid #e2e8f0;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .navbar {
    height: 64px;
  }
  
  .nav-inner {
    height: 64px;
    padding: 0 16px;
  }
  
  .logo span {
    font-size: 1.2rem;
  }
  
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 3rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .nav-links li {
    margin: 0.8rem 0;
    width: 90%;
  }
  
  .nav-links li a {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: rgba(59, 130, 246, 0.05);
    border: 2px solid rgba(59, 130, 246, 0.1);
    border-radius: 16px;
    width: 100%;
  }
  
  .mobile-menu {
    display: flex;
  }
  
  .lang-toggle-switch {
    min-width: 80px;
    min-height: 36px;
    padding: 2px;
  }
  
  .lang-toggle-btn {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding-top: 2rem;
  }
  
  .crypto-mockup {
    padding: 1.5rem;
  }
  
  .stats-row {
    flex-direction: column;
    gap: 0.8rem;
  }
  
  .chart-visual {
    height: 250px;
  }
}

@media (max-width: 600px) {
  .navbar {
    height: 56px;
  }
  
  .nav-inner {
    height: 56px;
    padding: 0 12px;
  }
  
  .logo span {
    font-size: 1.1rem;
  }
  
  .logo-icon {
    font-size: 1.8rem;
  }
  
  .lang-toggle-switch {
    min-width: 70px;
    min-height: 32px;
    padding: 2px;
  }
  
  .lang-toggle-btn {
    font-size: 0.85rem;
    padding: 4px 8px;
  }
  
  .hero {
    padding: 6rem 0 3rem;
  }
  
  .crypto-mockup {
    padding: 1rem;
  }
  
  .chart-visual {
    height: 200px;
  }
  
  .hero-mockup-box {
    max-width: 99vw;
    padding: 0.7rem;
    border-radius: 14px;
  }
  .hero-mockup-chart {
    min-height: 100px;
    padding: 0.1rem;
    border-radius: 8px;
  }
}

/* --- BODY PADDING --- */
body {
  padding-top: 70px !important;
  margin: 0 !important;
}

@media (max-width: 1023px) {
  body {
    padding-top: 70px !important;
  }
}

@media (max-width: 600px) {
  body {
    padding-top: 56px !important;
  }
}

/* --- HERO SECTION (GRADIENT, ANIMACE, RESPONSIVE) --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--spacing-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-content {
  animation: slideInLeft 1s ease-out;
}
.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-md);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  margin-bottom: var(--spacing-xl);
  opacity: 0.9;
  line-height: 1.5;
}
.cta-button {
  background: white;
  color: var(--primary-blue);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-lg);
}
.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  scale: 1.05;
}

/* Hero Visual */
.hero-visual {
  animation: slideInRight 1s ease-out;
  position: relative;
}
.phone-mockup {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-xl);
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .phone-mockup {
    max-width: 400px;
  }
}
.phone-mockup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.1) 0%,
    rgba(18, 27, 61, 0.1) 100%
  );
}
.mockup-screen {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: var(--spacing-md);
  position: relative;
  z-index: 2;
}
.stats-row {
  display: flex;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}
.stat-item {
  flex: 1;
  background: white;
  padding: var(--spacing-sm);
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.stat-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-green);
  margin-bottom: 0.25rem;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
}
.chart-visual {
  height: 200px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 0.7rem 0.7rem 0.7rem 0.7rem;
  min-height: 180px;
  box-sizing: border-box;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}
.section-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--spacing-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1rem;
  }
}

/* Options Section - Cards WITH borders */
.options-section {
  background: var(--bg-secondary);
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--spacing-xl);
}
.option-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: var(--spacing-xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}
.option-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}
.option-card:hover::before {
  transform: scaleX(1);
}
.option-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-blue);
}
.option-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  font-size: 2rem;
  color: white;
  box-shadow: var(--shadow-md);
}
.option-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}
.option-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
}
.option-cta {
  background: var(--gradient-primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  font-size: 0.9rem;
}
.option-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Benefits Section - Pink Cards WITHOUT borders */
.benefits-section {
  background: white;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}
.benefit-card {
  background: var(--gradient-primary);
  padding: var(--spacing-lg);
  border-radius: var(--radius-xl);
  text-align: center;
  transition: all var(--transition-normal);
  border: none;
  position: relative;
  color: white;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-pink-light);
  opacity: 0;
  transition: opacity var(--transition-normal);
}
.benefit-card:hover::before {
  opacity: 1;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.benefit-icon {
  width: 60px;
  height: 60px;
  background: var(--bg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-sm);
  color: white;
  font-size: 1.5rem;
  position: relative;
  z-index: 2;
}
.benefit-title {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);

  position: relative;
  z-index: 2;
  font-size: 1.1rem;
}
.benefit-text {
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

/* Reviews Section */
.reviews-section {
  background: var(--bg-secondary);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--spacing-xl);
  margin-top: var(--spacing-xl);
}
.review-card {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.review-stars {
  color: #f59e0b;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-sm);
}
.review-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
}
.author-info h4 {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}
.author-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Lead Form Section */
.form-section {
  background: var(--bg-secondary);
}
.form-container {
  max-width: 500px;
  margin: 0 auto;
}
.lead-form {
  background: white;
  padding: var(--spacing-xl);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}
.form-group {
  margin-bottom: var(--spacing-md);
}
.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  background: var(--bg-secondary);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-normal);
  font-family: inherit;
}
.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  background: white;
  box-shadow: 0 0 0 3px rgba(18, 27, 61, 0.1);
}
.form-input::placeholder {
  color: var(--text-light);
}
.submit-btn {
  width: 100%;
  background: var(--gradient-primary);
  color: white;
  padding: 1.2rem;
  border: none;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-md);
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* FAQ Section */
.faq-section {
  background: white;
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 2rem;
}
.faq-item {
  background: #f8fafc;
  border-radius: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(18,27,61,0.06);
  border: 1.5px solid #e2e8f0;
  transition: box-shadow 0.2s, border 0.2s;
  overflow: hidden;
  position: relative;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.faq-item.active {
  box-shadow: 0 8px 24px rgba(37,99,235,0.08);
  border: 1.5px solid #2563eb;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 18px 28px 18px 18px;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1e293b;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.18s;
  position: relative;
}
.faq-question:hover {
  background: #e0e7ef;
}
.faq-icon {
  font-size: 1.2rem;
  color: #2563eb;
  margin-left: 14px;
  transition: transform 0.2s;
  display: inline-block;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-check {
  font-size: 1.2rem;
  color: #22c55e;
  margin-left: 14px;
  transition: opacity 0.2s;
  opacity: 1;
  display: none;
}
.faq-item.active .faq-check {
  display: inline-block;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #f1f5f9;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.35s cubic-bezier(.4,0,.2,1);
  padding: 0 28px 0 18px;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 14px;
}
.faq-answer-content {
  padding: 14px 0 0 0;
  color: #475569;
  font-size: 1.01rem;
  line-height: 1.7;
}
@media (max-width: 600px) {
  .faq-item {
    max-width: 100%;
  }
  .faq-question {
    padding: 12px 12px 12px 8px;
    font-size: 0.98rem;
  }
  .faq-answer {
    padding: 0 12px 0 8px;
  }
  .faq-answer-content {
    padding: 10px 0 0 0;
    font-size: 0.95rem;
  }
}

/* Footer */
.footer {
  background: var(--primary-blue);
  color: white;
  padding: var(--spacing-2xl) 0 var(--spacing-lg);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}
.footer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: white;
}
.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  line-height: 1.6;
  transition: color var(--transition-normal);
}
.footer-section a:hover {
  color: white;
}
.footer-links {
  list-style: none;
}
.footer-links li {
  margin-bottom: 0.5rem;
}
.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-xl);
  z-index: 1000;
  text-decoration: none;
  font-weight: 600;
  transition: all var(--transition-normal);
  animation: float 3s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(18, 27, 61, 0.3);
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

/* Messages */
.message {
  padding: var(--spacing-sm);
  border-radius: var(--radius-md);
  margin-top: var(--spacing-sm);
  display: none;
  font-weight: 500;
}
.success-message {
  background: #dcfce7;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.error-message {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: var(--spacing-xl);
    transition: right var(--transition-normal);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
  }
  .nav-links.active {
    right: 0;
  }
  .nav-links li {
    margin: var(--spacing-sm) 0;
  }
  .mobile-menu {
    display: flex;
  }
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
    padding-top: 2rem;
  }
  .options-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
  }
  .reviews-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
  }
  .language-switcher {
    top: 15px;
    right: 15px;
  }
  .footer-content {
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    text-align: center;
  }
  .floating-cta {
    bottom: 15px;
    right: 15px;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 var(--spacing-sm);
  }
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.75rem;
  }
  .lead-form {
    padding: var(--spacing-lg);
  }
  .phone-mockup {
    padding: var(--spacing-md);
  }
  .stats-row {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

/* Focus indicators for accessibility */
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
.mouse-user *:focus {
  outline: none;
}

/* Scroll padding for fixed nav */
section {
  scroll-margin-top: 80px;
}

.chart-title {
  font-weight: 700;
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-align: left;
  padding-left: 2px;
}
  .stats-row {
    flex-direction: column;
    gap: var(--spacing-xs);
  }
}

/* Focus indicators for accessibility */
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}
.mouse-user *:focus {
  outline: none;
}

/* Scroll padding for fixed nav */
section {
  scroll-margin-top: 80px;
}

.chart-title {
  font-weight: 700;
  color: #2563eb;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-align: left;
  padding-left: 2px;
}
