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

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #ffffff;
    }


header {
  display: flex;
  align-items: center;      /* všechny prvky na stejnou výšku */
  justify-content: space-between;
  gap: 20px;                /* mezery mezi prvky */
  padding: 10px 16px;
  background: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}
.container {
    max-width: 1200px;
   /* margin: 0 auto;*/
    padding: 0 1rem;
}
nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.5rem;
}
nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
}
.logo {
  display: flex;
  align-items: center;   /* obrázek + text loga zarovná */
  gap: 8px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto; /* odsun do prava */
  line-height: 1;    /* odstraní vertikální posun */
}

@media (max-width: 1200px) {
  nav {
    display: none;
    flex-direction: column;
    gap: 15px;
    background: white;
    position: absolute;
    top: 60px;
    right: 0;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    right: 0;       /* drží menu vpravo */
    left: auto;     /* zruší centrování */
    margin: 0;
  }

  nav.active {
    display: flex;
    transform: none;
  }

  .menu-toggle {
    display: flex;
  }

  .contact {
    display: none;
  }
    .contact a.btn-tel{
      color: hsl(207 89% 42%);
      text-decoration: none;
      font-weight: bold;
      display: none;
    }


}
@media (max-width: 500px) {
  .contact {
    display: none;
  }
      .contact a.btn-orange{
      display: none;
    }
}

    .logo-text {
      font-weight: bold;
      font-size: 20px;
      color: black;
      text-decoration: none;
    }

    .contact {
      display: flex;
      align-items: center;
      gap: 15px;
      white-space: nowrap;
    }

    .contact a {
      color: hsl(207 89% 42%);
      text-decoration: none;
      font-weight: bold;
    }

    .btn-orange {
      background: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      border: none;
      font-weight: bold;
      cursor: pointer;
      text-decoration: none;
      white-space: nowrap;
      transition: box-shadow 0.3s ease, transform 0.2s ease;
    }
    .btn-orange:hover {
    box-shadow: 0 0 10px 3px hsla(25, 95%, 55%, 0.6);
    transform: translateY(-2px);
    }

    .hero {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  padding: 40px;
  border-radius: 0 0 20px 20px;
  gap: 40px;
  min-height: 100vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-card.floating {
    animation: floating 3s 
ease-in-out infinite;
}
.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
}

    .hero-text {
      max-width: 50%;
      flex: 1;
    }

    .hero-text h1 {
      font-size: 64px;
      margin-bottom: 10px;
    }

    .hero-text h1 span {
      color: #ff7a00;
    }

    .hero-text p {
      font-size: 18px;
      margin: 20px 0;
      color: #e0e0e0;
    }

    @media screen and (max-width: 768px) {
      header {
       
        align-items: flex-start;
      }

      .hero {
        flex-direction: column;
        padding: 30px;
        justify-content: normal;
      }

      .hero-text, .hero-image {
        max-width: 100%;
      }

      .hero-text h1 {
        font-size: 32px;
      }

      .hero-image img {
        width: 100%;
        margin-top: 20px;
      }

      .stats {
        flex-direction: column;
        gap: 20px;
      }
      
    }
    
    
    
    @keyframes floating {
    0%, 100% {transform: translateY(0px);}
    50% {transform: translateY(-10px);}
}
    
 .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}   
    
    
    
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.tabor-tym {
  padding: 80px 0;
  /*background: #fffaf5;*/
}

.team-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 40px;
}

.team-member {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  padding: 25px;
  text-align: center;
  transition: transform 0.6s ease, box-shadow 0.6s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(40px);
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(25, 95%, 45%);
  margin-bottom: 0.3em;
}

.team-member .role {
  color: #555;
  font-weight: 500;
  margin-bottom: 0.8em;
}

.team-member .bio {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.team-member.visible {
  opacity: 1;
  transform: translateY(0);
}

.team-member:nth-child(1) { transition-delay: 0.1s; }
.team-member:nth-child(2) { transition-delay: 0.2s; }
.team-member:nth-child(3) { transition-delay: 0.3s; }
.team-member:nth-child(4) { transition-delay: 0.4s; }
.team-member:nth-child(5) { transition-delay: 0.5s; }
.team-member:nth-child(6) { transition-delay: 0.6s; }

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}



.tabor-security {
  /*background: #fffaf5;*/
  padding: 80px 0;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 40px;
}

.security-item {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.security-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.1);
}

.security-item i {
  font-size: 36px;
  color: hsl(25, 95%, 45%);
  margin-bottom: 15px;
}

.security-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.security-item p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}
















:root {
    /* Colors in HSL format for consistency */
    --primary: 203 89% 52%;
    --primary-dark: 207 89% 42%;
    --accent: 25 95% 53%;
    --accent-dark: 20 95% 48%;
    --background: 0 0% 100%;
    --foreground: 220 15% 20%;
    --muted: 210 40% 96%;
    --muted-foreground: 220 8% 46%;
    --border: 220 13% 91%;
    --success: 142 76% 36%;
    --warning: 45 93% 47%;
    --destructive: 0 84% 60%;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, hsl(203 89% 52%), hsl(217 91% 60%));
    --gradient-accent: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
    --gradient-hero: linear-gradient(135deg, hsl(203 89% 52%), hsl(239 84% 67%));
    
    /* Shadows */
    --shadow-warm: 0 10px 30px -10px hsl(203 89% 52% / 0.3);
    --shadow-glow: 0 0 40px hsl(25 95% 53% / 0.4);
    
    /* Typography */
    --font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body {
    font-family: var(--font-family);
    /*line-height: 1.6;*/
    color: hsl(var(--foreground));
    background-color: hsl(var(--background));
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}
.container .hero-content{
    margin: 0;
}


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


.hero-title {
    line-height: 1.2;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}


.gradient-text {
    background: linear-gradient(135deg, hsl(var(--accent)), hsl(var(--accent-dark)));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}


.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}


.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}


.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}


.section-header {
    margin-bottom: 4rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-warm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px -10px rgba(14, 165, 233, 0.4);
}



.hero-image {
    display: none;
}


.subject-icon-medium {
    background: var(--gradient-accent);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.3s ease;
}



.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    
}

.pricing-gridd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 3rem;
    align-items: stretch;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.pricing-cardd {
    background: white;
    border-radius: 1rem;
    justify-content: space-between;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-warm);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-service {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price-unit {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.pricing-note {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: center;
}
.pricing-featuress {
  list-style: none;
  margin-bottom: 2rem;
  text-align: center;
}

.pricing-cardd button {
  margin-top: auto; /* drží tlačítko u spodního okraje */
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--foreground);
    justify-content: center;
}
.pricing-featuress li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--foreground);
    justify-content: center;
}


.faq-section {
    padding: 5rem 0;
    background: hsl(var(--muted));
}

.faq-container {
    max-width: 4xl;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-warm);
    border-color: rgba(14, 165, 233, 0.3);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
}

.faq-question:hover {
    background: rgba(241, 245, 249, 0.5);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    padding-right: 2rem;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.6;
    border-top: 1px solid var(--border);
    margin-top: 1rem;
    padding-top: 1rem;
}

.faq-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.faq-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.faq-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}



/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-stats {
        gap: 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-gridd {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgent-buttons,
    .faq-buttons,
    .about-buttons {
        flex-direction: row;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-gridd {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-image {
        display: block;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1023px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
}


/* Tutoring/Camps Specific Sections */
.tutoring-subjects,
.tutoring-pricing,
.tutoring-process,
.tutoring-about {
    padding: 5rem 0;
}

.tutoring-pricing {
    background: hsl(var(--muted));
}

.tutoring-about {
    background: hsl(var(--muted));
}

/* Subjects Grid */
.subjects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .subjects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .subjects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.subject-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.subject-card.gradient-border {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    border-radius: 1rem;
}

.subject-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.subject-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.subject-card p {
    color: hsl(var(--muted-foreground));
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.subject-topics {
    list-style: none;
    padding: 0;
}

.subject-topics li {
    color: hsl(var(--muted-foreground));
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.subject-topics li::before {
    content: '•';
    color: hsl(var(--primary));
    font-weight: bold;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.step-number {
    background: var(--gradient-primary);
    color: white;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1.5rem;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
}

.step-content p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin: 0;
}

/* About Content Styling */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.image-placeholder {
    background: hsl(var(--muted));
    border: 2px dashed hsl(var(--border));
    border-radius: 1rem;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: hsl(var(--muted-foreground));
}

.placeholder-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

/* Qualification Items */
.qualifications {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.qualification-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    transition: all 0.3s ease;
}

.qualification-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-warm);
    border-color: hsl(var(--primary) / 0.3);
}

.qualification-icon {
    background: var(--gradient-primary);
    color: white;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.qualification-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: hsl(var(--foreground));
    margin-bottom: 0.5rem;
}

.qualification-text p {
    color: hsl(var(--muted-foreground));
    line-height: 1.5;
    margin: 0;
}

/* Enhanced Pricing Cards */
.pricing-card.featured {
    border-color: hsl(var(--primary));
    box-shadow: var(--shadow-warm);
    position: relative;
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-accent);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: hsl(var(--foreground));
    margin-bottom: 1rem;
    text-align: center;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.price .amount {
    margin-top: 10px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0b9af3;
}

.price .currency {
    font-size: 1rem;
    color: hsl(var(--muted-foreground));
}

/* Section Descriptions */
.section-description {
    font-size: 1.125rem;
    color: #6e6c6c;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Common Section Styles */
.services,
.pricing,
.how-it-works,
.about,
.faq {
    padding: 5rem 0;
}

.services {
    background: hsl(var(--background));
}

.pricing {
    background: hsl(var(--muted));
}

.how-it-works {
    background: hsl(var(--background));
}

.about {
    background: hsl(var(--muted));
}

.contact {
    background: hsl(var(--background));
}

.faq {
    background: hsl(var(--muted));
}

/* Business Offer Section */
.business-offer,
.section-cta {
    background: var(--gradient-primary);
    color: white;
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.business-offer h3,
.section-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.business-offer p,
.section-cta p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Form Styling */
.contact-form .btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.pricing-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    border: 1px solid hsl(var(--border));
    color: hsl(var(--foreground));
    font-weight: 600;
}

/* Step Cards for How It Works */
.step-card .step-number {
    background: var(--gradient-primary);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Color variants for step numbers */
.step-number.blue {
    background: var(--gradient-primary);
}

.step-number.green {
    background: linear-gradient(135deg, hsl(var(--success)), hsl(var(--success) / 0.8));
}

.step-number.orange {
    background: var(--gradient-accent);
}

.step-number.purple {
    background: linear-gradient(135deg, #a855f7, #9333ea);
}




.blog-preview {
  padding: 80px 20px;
  background: #fffaf5;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 40px;
}

.blog-card-mini {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.blog-card-mini:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
}

.blog-card-mini img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-mini .content {
  padding: 20px;
}

.blog-card-mini h3 {
  color: hsl(25deg 100% 37.87%);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.blog-card-mini p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.blog-meta {
  font-size: 0.8rem;
  color: #6f6f6f;
  margin-top: 6px;
}
.blog-card-mini a {
  color: inherit;
  text-decoration: none;
  display: block;
}
.blog-button {
  margin-top: 40px;
  text-align: center;
}

/* Styl tlačítka můžeš mít sjednocený s ostatními */
.blog-button .btn {
  background: linear-gradient(135deg, hsl(25 95% 53%), hsl(25 95% 63%));
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.blog-button .btn:hover {
  background: hsl(25, 95%, 48%);
}
