/* ============================================
   Vaultiqo - Single Theme (Light)
   ============================================ */

:root {
  /* Brand Colors */
  --brand-primary: #13ccbe;
  --brand-primary-hover: #0ab5a5;

  /* Text Colors */
  --text-main: #0c2238;
  /* Hlavní tmavá pro text */
  --text-secondary: #56657a;
  /* Šedá pro popisky */
  --text-white: #ffffff;
  /* Bílá pro text na tmavém pozadí */
  --text-white-muted: #b0bec5;
  /* Tlumená bílá */

  /* Background Colors */
  --bg-body: #ffffff;
  --bg-surface: #f8f9fa;
  /* Jemně šedé pozadí pro sekce */
  --bg-navy: #0a1929;
  /* Tmavě modrá pro Footer a kontrastní sekce */

  /* Borders */
  --border-light: #e9ecef;
  --border-white-translucent: rgba(255, 255, 255, 0.15);

  /* Spacing & Sizes */
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 4rem;

  --max-width: 1400px;
  --radius-card: 16px;
  --radius-btn: 36px;
}

/* ============================================
   Reset & Base
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--bg-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-main);
  margin-bottom: var(--space-sm);
}

p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

ul {
  list-style: none;
}

/* ============================================
   Components: Buttons
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--brand-primary);
  color: var(--text-white);
  box-shadow: 0 16px 32px rgba(19, 204, 190, 0.35);
}

.btn-primary:hover {
  background: var(--brand-primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--bg-body);
  color: var(--text-main);
  border-color: #d9e1eb;
}

.btn-secondary:hover {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow: none;
}

/* ============================================
   Components: Layout & Cards
   ============================================ */
.section {
  padding: var(--space-2xl) var(--space-xl);
}

.section-container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-secondary);
}

/* Contrast Section (Navy Background) */
.section-contrast {
  background: var(--bg-navy);
  color: var(--text-white);
}

.section-contrast .section-title,
.section-contrast h3 {
  color: var(--text-white);
}

.section-contrast .section-subtitle,
.section-contrast p {
  color: var(--text-white-muted);
}

.section-light {
  background: var(--bg-surface);
}

/* Grids */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
}

/* Glass Card */
.glass-card {
  background: var(--bg-body);
  padding: 2.5rem;
  border-radius: var(--radius-card);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  height: 100%;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
}

/* Utilities */
.text-center {
  text-align: center;
}

.icon-lg {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  color: var(--brand-primary);
}

.icon-md {
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  color: var(--brand-primary);
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.w-full {
  width: 100%;
}

.mb-0 {
  margin-bottom: 0;
}

/* ============================================
   Header
   ============================================ */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 64px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 36px;
  height: 36px;
}

.brand span {
  font-size: 24px;
  font-weight: 600;
}

.brand-vault {
  color: var(--text-main);
}

.brand-iqo {
  color: var(--brand-primary);
}

header nav {
  display: flex;
  align-items: center;
}

header nav a {
  margin-left: 36px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-main);
}

header nav a:hover {
  color: var(--brand-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 64px 80px;
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
}

.hero-left {
  max-width: 540px;
}

.eyebrow {
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.hero-left h1 span {
  color: var(--brand-primary);
}

.hero-left h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-left p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-right {
  position: relative;
  width: 50%;
  max-width: 600px;
}

.hero-photo {
  width: 100%;
  border-radius: 36px;
  display: block;
}

.hero-ui {
  position: absolute;
  bottom: -23%;
  right: -8%;
  width: 100%;
  transform: rotate(-5deg);
  filter: drop-shadow(0 18px 40px rgba(9, 30, 66, 0.22));
}

/* ============================================
   Features Carousel
   ============================================ */
.features-carousel {
  overflow: hidden;
  width: 100%;
  padding: 2rem 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.features-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.features-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.feature-item {
  width: 200px;
  text-align: center;
  flex-shrink: 0;
}

/* ============================================
   Specific Sections (Steps, Pricing, FAQ)
   ============================================ */
/* Steps */
.step-circle {
  width: 60px;
  height: 60px;
  background: var(--brand-primary);
  color: var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

/* Pricing */
.check-list li {
  padding: 0.5rem 0;
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.check-list li svg {
  flex-shrink: 0;
  color: var(--brand-primary);
}

.pricing-popular {
  border: 2px solid var(--brand-primary);
  position: relative;
}

.badge-popular {
  background: var(--brand-primary);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 99px;
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.price-large {
  font-size: 3rem;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

/* FAQ */
.faq-inner {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-main);
  text-align: left;
}

.faq-question:hover {
  color: var(--brand-primary);
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.2s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--brand-primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 1.5rem;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: var(--bg-navy);
  color: var(--text-white);
  padding: 4rem 2rem;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-links a {
  color: var(--text-white-muted);
  margin-right: 2rem;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--brand-primary);
}

.footer-bottom {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-white-translucent);
  color: var(--text-white-muted);
  font-size: 0.875rem;
}

/* Language Selector */
.lang-dropdown {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-white-translucent);
  color: var(--text-white);
  padding: 8px 32px 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px;
}

.lang-dropdown:focus {
  outline: none;
  border-color: var(--brand-primary);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 900px) {
  header {
    padding: 20px;
    flex-direction: column;
    gap: 1rem;
  }

  header nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  header nav a {
    margin: 0;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-right {
    width: 100%;
    margin-top: 40px;
  }

  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-links a {
    display: inline-block;
    margin: 0 10px 10px 10px;
  }
}

/* ============================================
   Legal / Content Pages (Typography)
   ============================================ */
.legal-section {
  padding: 80px 20px;
  background: var(--bg-body);
}

.legal-container {
  max-width: 800px;
  margin: 0 auto;
}

.legal-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.last-updated {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 3rem;
  display: block;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 2rem;
}

.legal-content h2 {
  margin-top: 2.5rem;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 1.5rem;
  font-size: 1.15rem;
}

.legal-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.legal-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.legal-content li {
  margin-bottom: 0.5rem;
}/* ============================================
   Pricing Controls & Updates
   ============================================ */

/* Controls Container */
.pricing-controls {
  background: var(--bg-body);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 8px 24px;
  display: inline-flex !important;
  gap: 32px !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.control-group {
  display: flex;
  align-items: center;
}

.control-group label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-right: 12px;
}

/* Custom Select */
.form-select {
  appearance: none;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  padding: 8px 36px 8px 16px;
  font-size: 0.95rem;
  color: var(--text-main);
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2356657a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.2s;
}

.form-select:hover,
.form-select:focus {
  border-color: var(--brand-primary);
  outline: none;
}

/* Toggle Switch */
.toggle-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: 99px;
  padding: 4px;
  display: inline-flex;
}

.toggle-btn {
  padding: 6px 18px !important;
  border-radius: 99px !important;
  font-size: 0.9rem !important;
  font-weight: 500;
  transition: all 0.2s ease;
}

.toggle-btn.active {
  background: var(--brand-primary) !important;
  color: var(--text-white) !important;
  box-shadow: 0 2px 4px rgba(19, 204, 190, 0.2);
}

.toggle-btn:not(.active) {
  color: var(--text-secondary) !important;
  background: transparent !important;
}

.toggle-btn:not(.active):hover {
  color: var(--brand-primary) !important;
}

/* Pricing Card Updates */
.pricing-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  padding: 2rem !important; /* Reduce padding */
}

/* Most Popular Badge - Absolute Positioning */
.badge-popular-abs {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--brand-primary);
  color: var(--text-white);
  padding: 4px 16px;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(19, 204, 190, 0.3);
  text-transform: uppercase;
  z-index: 10;
}

.pricing-header {
  margin-bottom: 1.5rem;
  text-align: left;
}

.pricing-title {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text-main);
}

.pricing-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  min-height: 2.8em; /* Force height for alignment */
}

/* Price Row - Horizontal Alignment */
.pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1;
  letter-spacing: -1px;
}

.price-period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 400;
}

/* Features List Alignment */
.pricing-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0.75rem;
}

.pricing-features li svg {
  color: var(--brand-primary);
  min-width: 20px;
}

.pricing-footer {
  margin-top: auto;
}
/* ============================================
   Pricing Controls Fixes (Light Theme)
   ============================================ */

/* Fix Container Alignment & Style */
.pricing-controls {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 20px !important;
    margin: 0 auto 40px auto !important;

    /* Floating Pill Look */
    background: #ffffff !important;
    border: 1px solid var(--border-light) !important;
    border-radius: 99px !important;
    padding: 8px 24px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
    width: fit-content !important;
}

/* Fix Label Visibility */
.control-group label {
    color: var(--text-main) !important;
    /* Dark text for light bg */
    font-weight: 600 !important;
    margin-right: 12px !important;
}

/* Custom Dropdown Styling */
.form-select {
    appearance: none !important;
    -webkit-appearance: none !important;

    background-color: var(--bg-surface) !important;
    /* Light gray */
    color: var(--text-main) !important;
    /* Dark text */
    border: 1px solid var(--border-light) !important;
    border-radius: 8px !important;
    padding: 8px 36px 8px 16px !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;

    /* Custom Dark Chevron */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230c2238' d='M6 9L1 4h10z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    box-shadow: none !important;
}

.form-select:hover {
    border-color: var(--brand-primary) !important;
}

.form-select:focus {
    outline: none !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 3px rgba(19, 204, 190, 0.1) !important;
}

/* Fix Toggle Container */
.toggle-container {
    background: var(--bg-surface) !important;
    border: 1px solid var(--border-light) !important;
}

.toggle-btn {
    color: var(--text-secondary) !important;
}

.toggle-btn.active {
    background: var(--brand-primary) !important;
    color: var(--text-white) !important;
}/* Refine Toggle Buttons */
.toggle-btn {
    border: none !important;
    outline: none !important;
    font-weight: 700 !important;
    /* Bold text */
    box-shadow: none !important;
    background: transparent;
    /* Ensure transparent background for inactive */
}

.toggle-btn:focus {
    outline: none !important;
    /* Remove focus ring if that's the black outline */
    box-shadow: none !important;
}

/* Ensure container has the border, not buttons */
.toggle-container {
    border: 1px solid var(--border-light) !important;
    padding: 4px !important;
}