/* ZÁKLADNÍ NASTAVENÍ A PROMĚNNÉ */
    :root {
      --highlight-bg: #abf892; 
      --highlight-bg-hover: #a5ea7e;
      --border-green: #abf892;
      --border-greendk: #46f184;
      --blue-main: #0c4999;
      --blue-light: #6e9cd8;
      --blue-dark: #11265b; 
      --text-light: #ffffff;
      --text-dark: #2b2b2b;
      --text-gray: #555555;
      --light-gray: #f4f4f4;
      --blue-quote: #3e7bcb;
      --color-white: #ffffff;
      --form-field-bg: #fafafa;
      --form-field-border: #e0e0e0;
      --radius-pill: 50px;
      --carousel-gap: 20px;
      --shadow-strong: 0 0 20px 4px rgb(82 82 82 / 35%);
      --shadow-soft: 0px 0px 8px rgb(0 0 0 / 37%);
      --shadow-control: 0 4px 10px rgb(0 0 0 / 5%);
      --shadow-nav: 0 10px 30px rgb(0 0 0 / 12%);
      --mobile-menu-bg: rgb(255 255 255 / 98%);
      --mobile-menu-border: rgb(17 38 91 / 15%);
      --font-main: "Instrument Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth !important;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
    }

    body {
      font-family: var(--font-main);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      background-color: var(--color-white);
    }

    .container {
      width: 100%;
      max-width: 1000px;
      margin: 0 auto;
      padding: 0 5%;
    }

    .btn-primary {
      display: inline-block;
      background-color: var(--blue-main);
      color: var(--color-white);
      text-decoration: none;
      font-weight: 600;
      padding: 1rem 4rem;
      border-radius: var(--radius-pill);
      font-size: 1.25rem;
      margin-bottom: 1rem;
      border: 2px solid var(--blue-dark);
      transition: background-color 0.3s ease, transform 0.2s ease;
    }
    .btn-primary:hover {
      background-color: #083875;
      transform: translateY(-2px);
    }

    .btn-green,
    .btn-whatsapp {
      display: inline-block;
      background-color: var(--highlight-bg);
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 700;
      padding: 0.5rem 3rem;
      border-radius: var(--radius-pill);
      border: 2px solid var(--border-greendk);
      font-size: 1.125rem;
      transition: background-color 0.3s ease, transform 0.2s ease;
    }

    .btn-green {
      margin-top: 3.5rem;
    }

    .btn-green:hover,
    .btn-whatsapp:hover {
      background-color: var(--highlight-bg-hover);
      transform: translateY(-2px);
    }

    /* Tlačítko s ikonou (ze sekce 7) */
    .btn-with-icon {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-align: left;
      line-height: 1.2;
      padding: 0.5rem 3.5rem;
      margin-top: 0;
    }
    .btn-with-icon svg,
    .btn-with-icon img {
      width: 26px;
      height: 26px;
      flex-shrink: 0;
    }

    /* SEKCE 1: HERO BLOK */
    .hero-section {
      position: relative;
      min-height: 85vh;
      display: flex;
      flex-direction: column;
      padding-bottom: 3rem;
      overflow: hidden;
    }

    .hero-section > picture {
      position: absolute;
      inset: 0;
      z-index: 0;
      display: block;
      width: 100%;
      height: 100%;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      pointer-events: none;
      user-select: none;
    }

 /*   .hero-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(178deg, rgb(205 226 254) 0%, rgb(189 213 238) 0%, rgb(255 255 255 / 0%) 100%);
      z-index: 1;
    }*/

    .navbar {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 5%;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .navbar-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 4px;
      width: 42px;
      height: 42px;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .navbar-toggle span {
      display: block;
      height: 3px;
      width: 30px;
      background-color: var(--text-dark);
      border-radius: 999px;
    }

    .navbar-branding {
      display: flex;
      align-items: center;
      gap: 1rem;
      flex-shrink: 0;
    }

    .navbar-eu-logo {
      height: 40px;
      width: auto;
      display: block;
    }

    .navbar-logo img {
      height: 25px;
      width: auto;
      display: block;
    }

    .navbar-logo picture {
      display: block;
    }

    .navbar-menu {
      display: flex;
      gap: 2.5rem;
      list-style: none;
    }

    .navbar-menu a {
      text-decoration: none;
      color: var(--text-dark);
      font-weight: 500;
      font-size: 1.25rem;
      transition: opacity 0.2s ease;
    }

    .navbar-menu a:hover {
      opacity: 0.7;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 1rem 5% 0;
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hero-title {
      font-size: clamp(2.5rem, 8vw, 4rem);
      line-height: 1.1;
      font-weight: 800;
      letter-spacing: -0.02em;
      margin-bottom: 2rem;
      max-width: 800px;
    }

    .hero-title .highlight {
      background-color: var(--highlight-bg);
      padding: 0.1em 0.3em;
      display: inline-block;
      margin-top: 0.1em;
      transform: skewX(350deg);
    }

    .hero-title .highlight span {
      display: inline-block;
      transform: skewX(3deg);
    }

    .hero-title .highlight-offset {
      position: relative;
      top: -8px;
      left: -14px;
    }

    .hero-subtitle {
      display: block;
      font-size: clamp(1.25rem, 1.5vw, 1.7rem);
      line-height: 1.2;
      color: var(--text-light);
      font-weight: 500;
      max-width: 900px;
      margin-top: auto;
    }

    .info-section .hero-subtitle {
      display: none;
    }

    /* SEKCE 2: JAK TO FUNGUJE & RECENZE */
    .info-section {
      background-color: var(--color-white);
      position: relative;
      z-index: 3;
      border-top-left-radius: 40px;
      border-top-right-radius: 40px;
      margin-top: -40px;
      padding: 2rem 0 2rem 0;
      text-align: center;
    }

    .cta-desc {
      font-size: 0.95rem;
      color: var(--text-gray);
      margin-bottom: 4rem;
      font-weight: 700;
    }

    .section-title {
      font-size: 1.75rem;
      font-weight: 700;
      margin-bottom: 2rem;
    }

    .carousel-container {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      touch-action: pan-y;
      user-select: none;
    }

    .carousel-slide {
      display: none;
      align-items: center;
      gap: 0;
      position: relative;
    }

    .carousel-slide.active {
      display: flex;
      animation: slideIn 1.5s ease-out forwards;
    }

@keyframes slideIn {
  from { 
    opacity: 0; 
    transform: translateX(20%);
  }
  to { 
    opacity: 1; 
    transform: translateX(0); 
  }
}

    .carousel-image {
      flex: 0 0 66.666%;
      position: relative;
      z-index: 1;
      border-radius: 8px;
      overflow: hidden;
    }

    .carousel-image img {
      width: 100%;
      height: 320px;
      object-fit: cover;
      display: block;
    }

    .carousel-image picture {
      display: block;
    }

    .carousel-reviews {
     /* flex: 0 0 41.666%; */
      margin-left: -10%;
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .review-bubble {
      border: 2px solid var(--blue-quote);
      border-radius: 15px;
      padding: 0.75rem 2rem;
      position: relative;
      background: var(--color-white);
    }

    .review-bubble p {
      font-size: 0.95rem;
      color: var(--text-dark);
      line-height: 1.5;
    }

    .review-bubble::before,
    .review-bubble::after {
      position: absolute;
      display: block;
      width: 38px;
      height: 38px;
      line-height: 0;
      opacity: 0.8;
    }

    .review-bubble::before {
      content: url('../pictures/quotes-icon.png');
      top: -17px;
      left: 5px;
      opacity: 1;
    }

    .review-bubble::after {
      content: url('../pictures/quotes-icon-rotated.png');
      bottom: -32px;
      right: 10px;
      opacity: 1;
    }

    .carousel-dots {
    /*  display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 2rem; */
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 0.5rem;
      width: 600px;
      float: left;
    }

    .dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      border: 2px solid var(--blue-main);
      background: transparent;
      cursor: pointer;
      transition: all 0.3s;
      padding: 0;
    }

    .dot.active {
      background: var(--blue-main);
    }

    /* SEKCE 3: PODMÍNKY A PŘEDPOKLADY */
    .conditions-section {
      padding: 1rem 0;
      background-color: var(--color-white);
    }

    .conditions-header {
      text-align: center;
      max-width: 900px;
      margin: 0 auto 4rem auto;
    }

    .conditions-header h2 {
      font-size: 1.75rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }

    .conditions-header p {
      color: var(--text-gray);
      font-size: 1.05rem;
      line-height: 1.6;
    }

    .conditions-grid {
      display: flex;
      gap: 3rem;
      justify-content: space-between;
      max-width: 1000px;
      margin: 0 auto;
    }

    .conditions-column {
      flex: 1;
    }

    .conditions-column h3 {
      font-size: 1.5rem;
      font-weight: 800;
      margin-bottom: 1.5rem;
      color: var(--text-dark);
    }

    .conditions-list {
      list-style: none;
      padding: 0;
    }

    .conditions-list li {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0.5rem 0;
      border-bottom: 2px solid var(--border-green);
      font-size: 1rem;
      color: var(--text-dark);
    }

    .conditions-list li:first-child {
      border-top: 2px solid var(--border-green);
    }

    .icon-check {
      width: 20px;
      height: 20px;
      color: var(--blue-quote);
      flex-shrink: 0;
    }

    .icon-question {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--blue-quote);
      width: 20px;
      text-align: center;
      flex-shrink: 0;
      line-height: 1;
    }

    /* SEKCE 4: 6 VĚCÍ (BENEFITY CAROUSEL) */
    .benefits-section {
      padding: 5rem 0;
      background-color: var(--color-white);
      text-align: center;
    }

    .benefits-header {
      max-width: 800px;
      margin: 0 auto 3rem auto;
    }

    .benefits-header h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .benefits-header p {
      font-size: 1.05rem;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .benefits-carousel-wrapper {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 0 40px;
    }

    .benefits-viewport {
      position: relative;
      overflow: hidden;
      width: 100%;
      padding: 10px 0;
      touch-action: pan-y;
      user-select: none;
    }

    .benefits-viewport::before,
    .benefits-viewport::after {
      content: "";
      position: absolute;
      top: 0;
      z-index: 5;
      width: 100px; /* šířka “mlhy” */
      height: 100%;
      pointer-events: none;
    }

    .benefits-viewport::before {
      left: 0;
      background: linear-gradient(to right, var(--color-white) 0%, rgb(255 255 255 / 0%) 100%);
    }

    .benefits-viewport::after {
      right: 0;
      background: linear-gradient(to left, var(--color-white) 0%, rgb(255 255 255 / 0%) 100%);
    }

    .benefits-track {
      display: flex;
      gap: var(--carousel-gap);
      transition: transform 0.4s ease-in-out;
    }

    .benefit-card {
      flex: 0 0 calc((100% - (var(--carousel-gap) * 2)) / 3);
      background: var(--color-white);
      border: 1px solid var(--blue-quote);
      border-radius: 16px;
      padding: 1.5rem 1rem;
      text-align: left;
      box-shadow: var(--shadow-soft);
      transition: border-color 0.3s;
    }

    .benefit-card:hover {
      border-color: var(--blue-main);
    }

    .benefit-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
    }

    .benefit-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
      line-height: 1.25rem;
    }

    .benefit-card p {
      font-size: 0.95rem;
      color: var(--text-gray);
      line-height: 1.25;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--light-gray);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 10;
      box-shadow: var(--shadow-control);
      color: var(--blue-main);
      transition: all 0.2s ease;
    }

    .nav-arrow:hover {
      background: var(--light-gray);
      border-color: var(--blue-main);
    }

    .nav-arrow svg {
      width: 20px;
      height: 20px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .prev-arrow { left: 0; }
    .next-arrow { right: 0; }
    
    .nav-arrow:disabled {
      opacity: 0.5;
      cursor: not-allowed;
    }

    .review-arrow {
      display: none;
    }

    /* SEKCE 5: VŠE JE ZDARMA */
    .free-section {
      background-color: var(--blue-dark);
      color: var(--text-light);
      padding: 3rem 0;
      overflow: hidden;
    }

    .free-container {
      display: flex;
      gap: 5rem;
      justify-content: space-between;
      align-items: flex-start;
    }

    .free-left {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-self: stretch;
      min-height: 420px;
      position: relative;
    }

    .free-left h3 {
      font-size: 1.75rem;
      font-weight: 800;
    }

    .free-left h3 .green-text {
      color: var(--highlight-bg);
    }

    .free-subtitle {
      font-size: 1.15rem;
      opacity: 0.9;
    }

    .free-bottom-text {
      font-size: 1rem;
      color: var(--highlight-bg);
      max-width: 100%;
      line-height: 1.5;
      margin-top: auto;
      margin-bottom: 1.5rem;
      z-index: 2;
    }

    .free-bottom-text-mobile {
      display: none;
    }

    .palm-icon-wrapper {
      position: absolute;
      bottom: -60px;
      left: -45vh;
      width: 220px;
      color: var(--color-white);
      z-index: 1;
      pointer-events: none;
    }

    .free-right {
      flex: 1.2;
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .free-list {
      list-style: none;
      padding: 0;
      border-top: 1px solid var(--highlight-bg);
    }

    .free-list li {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 0.5rem 1rem;
      border-bottom: 2px solid var(--highlight-bg);
      font-size: 1rem;
      font-weight: 500;
    }

    .free-list-check {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background-color: var(--highlight-bg);
      color: var(--blue-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .free-list-check svg {
      width: 18px;
      height: 18px;
    }

    /* SEKCE 6: TIMELINE */
    .timeline-section {
      padding: 3rem 0;
      background-color: var(--color-white);
      text-align: center;
    }

    .timeline-header {
      max-width: 800px;
      margin: 0 auto 4rem auto;
    }

    .timeline-header h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .timeline-header p {
      font-size: 1.05rem;
      color: var(--text-gray);
      line-height: 1.5;
    }

    .timeline-wrapper {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
    }

    .timeline-line {
      position: absolute;
      top: 45px; 
      left: 10%;
      right: 10%;
      height: 2px;
      border-top: 2px dashed var(--blue-main);
      z-index: 1;
      opacity: 0.6;
    }

    .timeline-steps {
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
      position: relative;
      z-index: 2;
    }

    .timeline-step {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: flex-start; 
      text-align: left;
    }

    .step-circle-wrapper {
      width: 100%;
      display: flex;
      justify-content: center;
      margin-bottom: 2rem;
    }

    .step-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background-color: var(--color-white);
      border: 2px solid var(--blue-quote);
      color: var(--blue-quote);
      font-size: 1.5rem;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-strong);
    }

    .step-content {
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .step-content h3 {
      display: flex;
      align-items: flex-end;
      min-height: 3rem;
      margin: 0;
      color: var(--text-dark);
      font-size: 1rem;
      font-weight: 800;
      line-height: 1.3;
    }

    .step-content p {
      margin-top: 0.75rem;
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.5;
    }

    /* SEKCE 7: PŘÍPRAVA */
    .preparation-section {
      padding: 3rem 0;
      background-color: var(--color-white);
    }

    .prep-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 1rem auto;
    }

    .prep-header h2 {
      font-size: 2rem;
      font-weight: 800;
      margin-bottom: 1rem;
      color: var(--text-dark);
    }

    .prep-header p {
      font-size: 1.05rem;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .prep-content {
      display: flex;
      gap: 2rem;
      align-items: flex-start;
      margin-bottom: 6rem;
    }

    .prep-image {
      flex: 1;
      border-radius: 8px;
      overflow: hidden;
    }

    .prep-image img {
      width: 100%;
      height: 275px;
      display: block;
    }

    .prep-list-wrapper {
      flex: 1.2;
    }

    .prep-list {
      list-style: none;
      padding: 0;
      margin-top: 0;
    }

    .prep-list li {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      align-items: flex-start;
      font-weight: 600;
      font-size: 1.05rem;
      color: var(--text-dark);
    }

    .prep-icon {
      color: var(--blue-quote);
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .btn-prep {
      margin: 1.5rem 0;
      display: flex;
      justify-content: center;
    }

    /* Citace z konce 7. sekce */
    .prep-quote-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 3rem;
      max-width: 1050px;
      margin: 0 auto;
    }

    .prep-quote-box {
      flex: 1;
      text-align: center;
    }

    .prep-quote-text {
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1.3;
      color: var(--text-dark);
      display: inline-block;
      position: relative;
    }

    .prep-quote-text .blue-text {
      color: var(--blue-quote);
    }

    .quote-mark {
    font-size: 4rem;
      color: var(--blue-quote);
      font-family: Georgia, serif;
      position: absolute;
      line-height: 1;
    }

    .quote-mark img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .quote-mark.left {
      top: -40px;
      left: -40px;
    }

    .quote-mark.right {
      bottom: -40px;
      right: -30px;
    }

    .prep-quote-author {
      display: block;
      margin-top: 2rem;
      color: var(--text-gray);
      font-weight: 500;
      font-size: 1rem;
    }

    .prep-quote-action {
      position: fixed;
      right: 3%;
      bottom: 5%;
      z-index: 1000;
      flex-shrink: 0;
      transform: translateY(-50%);
    }

    /* SEKCE 8: FAQs ACCORDION */
    .faq-section {
      position: relative;
      background-image: url('../pictures/girl_sea_bg.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 6rem 0;
      height: 160vh;
      display: flex;
      align-items: center;
      background-attachment: fixed;
    }

    .faq-container {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: flex-end;
      width: 100%;
    }

    .faq-box {
      width: 100%;
      max-width: 500px;
    }

    .faq-label {
      color: var(--blue-main);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.05em;
      display: block;
    }

    .faq-box h2 {
      font-size: 2.25rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      letter-spacing: -0.01em;
    }

    .accordion {
      display: flex;
      flex-direction: column;
      width: 100%;
      max-width: 620px;
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px);
      padding: 0;
      border-radius: 0;
    }

    .accordion-item {
      border-bottom: 1.5px solid var(--blue-main);
      border-top: 1.5px solid var(--blue-main);
    }

    .accordion-header {
      width: 100%;
      background: none;
      border: none;
      padding: 1rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      text-align: left;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .accordion-header:hover {
      color: var(--blue-main);
    }

    .accordion-btn {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background-color: var(--blue-quote);
      color: var(--color-white);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
      transition: background-color 0.3s, transform 0.3s;
    }

    .accordion-btn::before,
    .accordion-btn::after {
      content: '';
      position: absolute;
      background-color: var(--highlight-bg);
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .accordion-btn::before {
      width: 12px;
      height: 2px;
    }

    .accordion-btn::after {
      width: 2px;
      height: 12px;
    }

    .accordion-item.active .accordion-btn {
      transform: rotate(45deg);
      background-color: var(--blue-quote);
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding-bottom 0.35s;
      padding: 0 1rem;
    }

    .accordion-item.active .accordion-content {
      max-height: 300px;
      padding: 0 1rem 1rem 1rem;
    }

    .accordion-content p {
      font-size: 1rem;
      color: var(--text-gray);
      line-height: 1.6;
    }

    .faq-footer {
      display: flex;
      justify-content: left;
      margin-top: 3rem;
    }

    .faq-footer .btn-whatsapp {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn-whatsapp img {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
    }


    /* SEKCE 9: POPTÁVKOVÝ FORMULÁŘ A MEDAILONEK */
    .contact-section {
      padding: 6rem;
      background-color: var(--color-white);
      text-align: center;
    }

    .contact-header {
      max-width: 700px;
      margin: 0 auto 3rem;
    }

    .contact-header h2 {
      margin-bottom: 1rem;
      color: var(--text-dark);
      font-size: 2.2rem;
      font-weight: 800;
    }

    .contact-header p {
      color: var(--text-gray);
      font-size: 1.05rem;
      line-height: 1.6;
    }

    .contact-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .form-box {
      max-width: 550px;
      margin: 0 auto;
      padding: 3rem 2.5rem;
      border: 2px solid var(--blue-quote);
      border-radius: 16px;
      background: var(--color-white);
      box-shadow: var(--shadow-strong);
      text-align: left;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-honeypot {
      position: absolute;
      left: -9999px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .form-status {
      margin-bottom: 1.5rem;
      padding: 0.9rem 1rem;
      border: 1px solid var(--blue-quote);
      border-radius: 8px;
      background-color: #f2f7ff;
      color: var(--blue-dark);
      font-size: 0.95rem;
      font-weight: 600;
      line-height: 1.45;
    }

    .form-status.is-success {
      border-color: var(--border-greendk);
      background-color: #f1ffe9;
      color: #1d5f32;
    }

    .form-status.is-error {
      border-color: #d46a6a;
      background-color: #fff3f3;
      color: #8a2424;
    }

    .form-group label {
      display: block;
      margin-bottom: 0.5rem;
      color: var(--blue-main);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.85rem;
      border: 1px solid var(--form-field-border);
      border-radius: 8px;
      background-color: var(--form-field-bg);
      color: var(--text-dark);
      font-family: inherit;
      font-size: 1rem;
      transition: border-color 0.2s;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--blue-main);
      outline: none;
      background-color: var(--color-white);
    }

    .form-row {
      display: flex;
      gap: 1.5rem;
    }

    .form-row .form-group {
      flex: 1;
    }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .form-checkbox input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 0.3rem;
      accent-color: var(--blue-main);
    }

    .form-checkbox label {
      color: var(--text-gray);
      font-size: 0.85rem;
      line-height: 1.4;
      cursor: pointer;
    }

    .btn-submit {
      width: 100%;
      padding: 1.1rem;
      border: 2px solid var(--border-greendk);
      border-radius: var(--radius-pill);
      background-color: var(--highlight-bg);
      color: var(--text-dark);
      font-size: 1.1rem;
      font-weight: 700;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .btn-submit:hover {
      background-color: var(--highlight-bg-hover);
    }

    .form-disclaimer {
      margin-top: 1.25rem;
      color: var(--text-gray);
      font-size: 0.8rem;
      line-height: 1.5;
      text-align: center;
    }

    .contact-medallion {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin-top: 4rem;
    }

    .medallion-img {
      width: 90px;
      height: 90px;
      margin-bottom: 1rem;
      border: 2px solid var(--blue-light);
      border-radius: 50%;
      object-fit: cover;
    }

    .medallion-name {
      margin-bottom: 0.25rem;
      color: var(--blue-quote);
      font-size: 1.15rem;
      font-weight: 800;
    }

    .medallion-role {
      margin-bottom: 1.25rem;
      color: var(--text-gray);
      font-size: 0.95rem;
      line-height: 1.4;
    }

    .medallion-links {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
    }

    .medallion-links a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--blue-quote);
      font-size: 0.95rem;
      font-weight: 500;
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .medallion-links a:hover {
      opacity: 0.7;
    }

    .medallion-links img {
      width: 18px;
      flex-shrink: 0;
    }

/* Základní styl patičky */
.site-footer {
  background-color: var(--blue-main);
  color: var(--color-white);
  padding: 60px 0;
  font-family: sans-serif;
}

.footer-layout {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  gap: 200px;
}

/* Levý sloupec - Navigace */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  transition: opacity 0.2s ease-in-out;
}

.footer-nav a:hover,
.footer-nav a:focus {
  opacity: 0.8;
  text-decoration: underline;
}

/* Pravý sloupec - Branding (loga a text) */
.footer-branding {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.footer-branding img {
  max-width: 100%;
  height: auto;
}

.eu-logo {
  width: 150px;
 display: contents; 
}

.attavena-logo {
  width: 150px;
  display: contents;
}

.footer-motto {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 400;
    top: -15px;
    position: relative;
}

/*vlny patička */
.waves-transition { position: relative; width: 100%; height: 250px; overflow: hidden; margin-bottom: -2px; }

        .layer { position: absolute; left: 0; width: 100%; bottom: 0; will-change: transform; }
        .background1 { height: 100%; z-index: 1; } 
        .background2 { height: 70%;  z-index: 2; } 
        .background3 { height: 40%;  z-index: 3; } 
        .wave {
position: absolute;
    bottom: 0;
    left: -2000px; 
    width: calc(100% + 4000px); 
    height: 100%;
    background-repeat: repeat-x;
    background-position: -1px top center;
    background-size: 1200px auto;
    will-change: transform;
        }

        .background1 .wave { background-image: url('../pictures/wave1.png'); }
        .background2 .wave { background-image: url('../pictures/wave2.png'); }
        .background3 .wave { background-image: url('../pictures/wave3.png'); }
     .faq-mobile-img, .free-mobile-img, .free-mobile-img-container picture {
  display: none;
     }   

    /* RESPONZIVNÍ DESIGN */
    @media (max-width: 992px) {
      .benefit-card {
        flex: 0 0 calc((100% - var(--carousel-gap)) / 2);
      }

      .free-container,
      .conditions-grid {
        gap: 3rem;
      }

      .prep-content {
        gap: 2rem;
      }

      .prep-quote-container {
        flex-direction: column;
        text-align: center;
      }

      .quote-mark.left {
        left: -15px;
      }

      .quote-mark.right {
        right: -15px;
      }

      .faq-container {
        justify-content: center;
      }

      .faq-box {
        max-width: 100%;
      }
      .hero-bg {
        object-position: -1200px center;
      }
    }

    @media (max-width: 768px) {
      .navbar {
        padding: 1rem 5%;
        gap: 1rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        position: relative;
        z-index: 40;
      }

      .navbar-toggle {
        display: inline-flex;
        order: 1;
        flex-shrink: 0;
      }

      .navbar-branding {
        margin-left: auto;
        order: 2;
        flex-shrink: 0;
        gap: 0.6rem;
      }

      .navbar-eu-logo {
        height: 26px;
      }

      .navbar-logo img {
        height: 16px;
      }

      .navbar-menu {
        display: none;
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 5%;
        right: 5%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
        background: var(--mobile-menu-bg);
        border: 1px solid var(--mobile-menu-border);
        border-radius: 16px;
        box-shadow: var(--shadow-nav);
        z-index: 50;
      }

      .navbar-menu.is-open {
        display: flex;
      }

      .navbar-menu a {
        display: block;
        padding: 0.25rem 0;
        font-size: 1rem;
      }

      .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
      }

      .hero-section {
        min-height: auto;
        padding-bottom: 1.5rem;
      }

      .hero-bg {
        object-position: -500px center;
      }

      .hero-content {
        flex: 0 0 auto;
        min-height: 550px;
        justify-content: flex-start;
        padding-top: 2rem;
      }

      .info-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .hero-subtitle-info {
        display: block;
        order: -1;
        margin: 0 0 1.5rem;
        color: var(--text-dark);
        font-size: clamp(1.1rem, 3vw, 1.25rem);
        line-height: 1.35;
        max-width: none;
        font-weight: 800;
        text-align: left;
      }

      .hero-content .hero-subtitle {
        display: none;
      }

      .info-section .hero-subtitle {
        display: block;
      }

      .hero-section::before {
        background: linear-gradient(to bottom, rgb(255 255 255 / 90%) 0%, rgb(255 255 255 / 70%) 40%, rgb(0 0 0 / 60%) 100%);
      }

      .carousel-container {
        display: flex;
        flex-direction: column;
        width: 100%;
      }

      .carousel-slide,
      .conditions-grid,
      .free-container,
      .prep-content {
        flex-direction: column;
      }

      .carousel-slide.active {
        display: flex;
        width: 100%;
        animation: none;
      }

      .carousel-image {
        order: 1;
        flex: 0 0 auto;
        width: 100%;
      }

      .carousel-dots {
        display: none;
      }

      .carousel-reviews {
        width: 100%;
        margin-left: 0;
        order: 2;
        margin-top: 2rem;
        min-height: 150px;
      }

      .carousel-reviews .review-bubble:not(:first-child) {
        display: none;
      }

      .carousel-container.is-mobile-review-ready .carousel-reviews .review-bubble {
        display: none;
      }

      .carousel-container.is-mobile-review-ready .carousel-reviews .review-bubble.is-mobile-active {
        display: block;
      }

      .carousel-image img {
        height: auto;
        min-height: 250px;
      }

      .review-arrow {
        top: auto;
        bottom: 40%;
        display: flex;
        transform: none;
        background: rgb(255 255 255 / 92%);
      }

      .review-prev-arrow {
        left: 14px;
      }

      .review-next-arrow {
        right: 14px;
      }

      .review-bubble {
        padding: 1.5rem;
      }

      .conditions-column h3 {
        text-align: center;
      }

      .benefits-carousel-wrapper {
        padding: 0 30px;
      }

      .benefits-viewport {
        flex: 0 0 min(315px, calc(100vw - 50px));
        width: min(315px, calc(100vw - 50px));
        max-width: min(315px, calc(100vw - 50px));
        margin: 0 auto;
      }

      .benefits-viewport::before,
      .benefits-viewport::after {
        width: 34px;
      }

      .benefit-card {
        flex: 0 0 min(225px, calc(100vw - 90px));
        min-height: 201px;
        aspect-ratio: 225 / 201;
      }

      .prev-arrow {
        left: 0;
      }

      .next-arrow {
        right: 0;
      }

      .free-left {
        gap: 2rem;
        min-height: auto;
        text-align: center;
      }

      .palm-icon-wrapper {
        display: none;
      }

      .free-bottom-text {
        display: none;
      }

      .free-bottom-text-mobile {
        display: block;
        margin-top: 0.75rem;
        margin-bottom: 0;
        color: var(--highlight-bg);
        line-height: 1.5;
        font-size: 0.75rem;
        text-align: center;
      }

      .timeline-wrapper {
        padding: 0 24px;
        overflow: hidden;
        position: relative;
      }

      .timeline-wrapper::before,
      .timeline-wrapper::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        z-index: 5;
        /*height: 200px;*/
        pointer-events: none;
      }

      .timeline-wrapper::before {
        top: 0;
        background: linear-gradient(to bottom, var(--color-white) 0%, rgb(255 255 255 / 0%) 100%);
        height: 75px;
      }

      .timeline-wrapper::after {
        bottom: 0;
        background: linear-gradient(to top, var(--color-white) 0%, rgb(255 255 255 / 0%) 100%);
        height: 50px;
      }

      .timeline-line {
        display: block;
        top: 0;
        bottom: 0;
        left: 58px;
        width: 0;
        height: 84%;
        border-top: none;
        border-left: 2px dashed var(--blue-quote);
        opacity: 0.6;
      }

      .timeline-steps {
        flex-direction: column;
        gap: 1.25rem;
        max-height: 430px;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0.5rem 0;
      }

      .timeline-steps::-webkit-scrollbar {
        display: none;
      }

      .timeline-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
        transform: scale(0.96);
        pointer-events: none;
        margin: 0;
      }

      .timeline-step:nth-child(1),
      .timeline-step:nth-child(2),
      .timeline-step:nth-child(3) {
        display: flex;
      }

      .timeline-step:nth-child(4),
      .timeline-step:nth-child(5) {
        display: flex;
      }

      .timeline-step:nth-child(2) {
        opacity: 1;
        transform: scale(1);
        pointer-events: auto;
        padding-left: 5px;
      }

      .step-circle-wrapper {
        width: auto;
        margin-bottom: 0;
        justify-content: flex-start;
        flex-shrink: 0;
      }

      .step-circle {
        width: 70px;
        height: 70px;
        font-size: 1.25rem;
        box-shadow: none;
      }

      .step-content h3 {
        margin-top: 0.25rem;
      }

      .prep-quote-text {
        font-size: 1.75rem;
      }

      .quote-mark {
        font-size: 3rem;
      }

      .quote-mark.left {
        left: 0;
      }

      .quote-mark.right {
        right: 0;
      }

      .prep-quote-container {
        gap: 2rem;
        margin-top: 2rem;
      }

      .btn-with-icon {
        justify-content: center;
        width: 100%;
        max-width: 320px;
        text-align: center;
      }

      .prep-quote-action {
        position: fixed;
        right: 0;
        bottom: 1.25rem;
        width: auto;
        transform: translateX(calc(100% - 42px));
        z-index: 1000;
      }

      .prep-quote-action .btn-with-icon {
        width: auto;
        max-width: none;
        margin-top: 0;
        padding: 0.65rem 1rem;
        gap: 0.85rem;
        white-space: nowrap;
      }

      .faq-section {
        height: auto;
        min-height: 90vh;
        padding: 0;
        background-image: none;
        background-color: var(--blue-dark);
        background-position: 25% center;
        background-attachment: scroll;
      }

      .faq-box {
        padding: 2.5rem 1.5rem;
      }

      .faq-box h2 {
        margin-bottom: 1.5rem;
        font-size: 1.75rem;
      }

      .accordion-header {
        padding: 1.1rem 0;
        font-size: 1.05rem;
      }

      .form-row {
        flex-direction: column;
      }

      .contact-section {
        padding: 4rem 0;
      }

      .form-box {
        padding: 2rem 1.25rem;
      }

      .wave {
        left: -100vw;
        width: 300vw;
        background-size: 900px auto;
      }

  .footer-layout {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-nav,
  .footer-branding {
    flex: 1 1 0;
    min-width: 0;
  }

  .footer-nav ul {
    gap: 12px;
  }

  .footer-nav a {
    font-size: 0.95rem;
  }

  .footer-branding {
    gap: 14px;
  }

  .footer-branding img {
    max-width: 140px;
  }

  .footer-motto {
    font-size: 0.75rem;
    line-height: 1.25;
    top: 0;
  }

  .preparation-section .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem; 
  }

  .prep-content {
    display: contents;
  }

  .prep-image {
    grid-row: 1; 
  }

  .prep-header {
    grid-row: 2; 
  }

  .prep-list-wrapper {
    grid-row: 3; 
  }
  .faq-box > h2,.accordion-item p, .accordion-header span, .accordion-header:hover {color: var(--color-white);}
  .btn-whatsapp {font-size: 1rem;}

  .faq-mobile-img, .free-mobile-img, .free-mobile-img-container picture {
    display: block;
  }

  .faq-mobile-img, .free-mobile-img {
    width: 100%;
    height: 250px; 
    object-fit: cover; 
    margin: 0;
    padding: 0;
  }
}


    @media (min-width: 769px) and (max-width: 992px) and (orientation: landscape) {
      .navbar {
        padding-block: 0.75rem;
      }

      .hero-section {
        min-height: 100svh;
        padding-bottom: 1rem;
      }

      .hero-bg {
        object-position: 62% center;
      }

      .hero-content {
        justify-content: flex-start;
        padding-top: 0.75rem;
      }

      .hero-title {
        max-width: 560px;
        margin-bottom: 1rem;
        font-size: clamp(2rem, 5.8vw, 3rem);
        line-height: 1.05;
      }

      .hero-subtitle {
        max-width: 590px;
        margin-top: 0;
        font-size: 1rem;
        line-height: 1.3;
      }

      .info-section {
        margin-top: 0;
      }

      .palm-icon-wrapper {
        display: none;
      }

      .faq-section {
        height: auto;
        min-height: auto;
        align-items: flex-start;
        padding: 3rem 0;
        background-attachment: scroll;
        background-position: 42% center;
      }

      .faq-box {
        max-width: min(560px, 90vw);
        padding: 1.75rem;
        background: rgb(255 255 255 / 84%);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
      }

      .faq-box h2 {
        font-size: 1.9rem;
        margin-bottom: 1rem;
      }

      .accordion-header {
        padding: 0.75rem 1rem;
        font-size: 1rem;
      }

      .accordion-item.active .accordion-content {
        max-height: none;
        padding-bottom: 0.85rem;
      }

      .accordion-content p {
        font-size: 0.95rem;
        line-height: 1.45;
      }

      .faq-footer {
        justify-content: center;
        margin-top: 1.5rem;
      }

      .prep-quote-action {
        right: 0;
        bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
        transform: none;
      }

      .prep-quote-action .btn-with-icon {
        width: 56px;
        height: 56px;
        justify-content: center;
        padding: 0;
        border-radius: 999px 0 0 999px;
      }

      .prep-quote-action .btn-with-icon span {
        display: none;
      }
    }


    @media (max-width: 480px) {
      .site-footer {
        padding: 40px 0;
      }

      .footer-layout {
        gap: 16px;
      }

      .footer-nav a {
        font-size: 0.85rem;
      }

      .footer-branding img {
        max-width: 160px;
      }

      .footer-motto {
        font-size: 0.75rem;
      }

      .navbar-menu {
        gap: 0.75rem;
      }

      .navbar-menu a {
        font-size: 1rem;
      }

      .hero-title {
        font-size: 2.35rem;
      }

      .hero-title .highlight-offset {
        left: -8px;
      }

      .btn-primary,
      .btn-green,
      .btn-whatsapp {
        width: 100%;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        text-align: center;
      }

      .benefits-carousel-wrapper {
        padding: 0 22px;
      }

      .timeline-step {
        gap: 1rem;
      }

      .timeline-steps {
        max-height: 390px;
      }

      .step-circle {
        width: 58px;
        height: 58px;
        font-size: 1rem;
      }

      .prep-image img {
        object-fit: cover;
      }

      .prep-quote-text {
        font-size: 1.45rem;
      }

      .quote-mark.left {
        left: 0;
      }

      .quote-mark.right {
        right: 0;
      }

      .contact-header h2,
      .faq-box h2,
      .benefits-header h2,
      .timeline-header h2,
      .prep-header h2 {
        font-size: 1.65rem;
      }
          .btn-primary {
        width: 80%;
        margin-bottom: 2rem;
    }
    .btn-green {
    margin-top: 2.5rem;
}
.prep-quote-box {
  margin-top: 2.5rem;
}

      .prep-quote-action {
        transform: none;
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        display: block;
        opacity: 1;
        visibility: visible;
      }

      .prep-quote-action .btn-with-icon {
        width: 58px;
        height: 58px;
        justify-content: center;
        padding: 0;
        border-radius: 999px 0 0 999px;
      }

      .prep-quote-action .btn-with-icon span {
        display: none;
      }

      .hero-bg {
        object-position: -900px center;
      }
    }
