﻿/* Unified suitcase styles (single file) */

/* ===== Source: pages/suitcase/css/1-base.css ===== */

/* ===== Variables ===== */
:root {
  --color-green: #4db373;
  --color-blue: #93bffe;
  --color-orange: #fb9154;
  --color-pink: #eea9e8;
  --color-black: #383632;
  --color-beige: #f4f0e5;
  --color-light-gray: #fafaf8;
  --color-white: #ffffff;

  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  color: var(--color-black);
  background-color: var(--color-beige);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  font-weight: 700;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

/* ===== Header & Navigation ===== */
.header {
  position: sticky;
  top: 0;
  background-color: var(--color-beige);
  padding: 15px 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav {
  display: flex;
  gap: 40px;
}

.nav-link {
  font-family: var(--font-secondary);
  font-weight: 600;
  color: var(--color-black);
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  padding-bottom: 5px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-blue);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav-link:hover {
  color: var(--color-blue);
}

.nav-link:hover::after {
  width: 100%;
}

.header-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.header-telegram:hover {
  transform: scale(1.1) rotate(5deg);
}

.telegram-icon-header {
  width: 32px;
  height: 32px;
  /* Adjust color if it's an SVG that supports fill, otherwise opacity */
}

/* ===== Buttons ===== */
.btn {
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--color-green);
  color: white;
  border: 2px solid var(--color-green);
  box-shadow: 0 8px 16px rgba(77, 179, 115, 0.15);
}

.btn-primary:hover {
  background-color: var(--color-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(77, 179, 115, 0.25);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-black);
  border: 2px solid var(--color-black);
}

.btn-secondary:hover {
  background-color: var(--color-black);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(56, 54, 50, 0.2);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 14px 40px;
  font-size: 1rem;
}

/* ===== Container & Sections ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
  /* Standardized spacing */
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.02) 0%, rgba(147, 191, 254, 0.02) 100%);
  pointer-events: none;
  z-index: 0;
}

.section>* {
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 60px;
  /* Standardized margin */
  color: var(--color-blue);
  text-align: center;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.feature-title {
  font-family: var(--font-primary);
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 40px 0;
  /* Adjusted to fit flow better */
  max-width: 100%;
  min-height: auto;
  color: var(--color-blue);
  text-align: left;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.05em;
  opacity: 0;
  transform: translateX(-40px);
  animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--color-black);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 30px;
  opacity: 0.85;
}

/* ===== New Image Styles ===== */
.hero-image {
  max-width: 100%;
  height: auto;
  object-fit: contain;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); Optional shadow */
}

.about-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.about-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid var(--color-green);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.about-img:hover {
  transform: scale(1.08) rotate(1deg);
  box-shadow: 0 12px 24px rgba(77, 179, 115, 0.2);
  border-color: var(--color-blue);
}

.schedule-visual {
  display: none;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.schedule-image-full {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  border: 4px solid white;
  box-shadow: 0 10px 25px rgba(77, 179, 115, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: scaleUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.schedule-image-full:hover {
  box-shadow: 0 20px 40px rgba(77, 179, 115, 0.25);
  transform: translateY(-5px);
}

.roadmap-map-container {
  width: 100%;
  min-height: 200px;
  margin-bottom: 40px;
  border: 3px dashed var(--color-blue);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(147, 191, 254, 0.1);
  position: relative;
}

.map-placeholder-text p {
  font-size: 1.1rem;
  color: var(--color-blue);
  font-weight: 600;
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
  padding: 15px 20px;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: bottom 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-black);
}

.cookie-btn {
  background-color: var(--color-green);
  color: white;
  border: none;
  padding: 8px 24px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s;
}

.cookie-btn:hover {
  background-color: var(--color-blue);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 12px 15px;
    bottom: -150px;
    /* Adjust for mobile height */
  }

  .cookie-content p {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .cookie-btn {
    width: 100%;
    max-width: 200px;
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* ===== Source: pages/suitcase/css/2-sections.css ===== */

/* ===== Hero Mockup Style ===== */
.hero-mockup {
  padding: 20px 0 60px;
  background-color: var(--color-beige);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  /* Cards same height */
}

.hero-card {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  border: 4px solid var(--color-black);
  background: var(--color-beige);
}

/* Card Left specific adjustment */
.hero-card-left {
  background-color: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 40px 30px 20px 30px;
}

.hero-logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.hero-logo-text {
  width: 85%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.hero-suitcase-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-grow: 1;
  margin-top: -20px;
}

.hero-suitcase-img {
  width: 90%;
  max-width: 550px;
  height: auto;
  object-fit: contain;
}

.hero-join-btn {
  position: absolute;
  left: 30px;
  bottom: 30px;
  background-color: var(--color-green);
  color: white;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  border: 2px solid var(--color-green);
  box-shadow: 0 8px 16px rgba(77, 179, 115, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-join-btn:hover {
  transform: translateY(-3px) scale(1.02);
  background-color: var(--color-green);
  box-shadow: 0 14px 28px rgba(77, 179, 115, 0.25);
}

.hero-join-btn:active {
  transform: translateY(-1px);
}

.hero-card-right {
  border: 4px solid var(--color-green);
  width: 488px;
  height: 735px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-side-img {
  width: 488px;
  height: 735px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

/* Mobile responsive for hero */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 400px;
  }

  .hero-card-right {
    width: 100%;
    height: auto;
    aspect-ratio: 488 / 735;
    max-width: 488px;
    margin: 0 auto;
  }

  .hero-side-img {
    width: 100%;
    height: 100%;
  }
}

/* ===== About Section ===== */
.about {
  background-color: var(--color-beige);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  direction: rtl;
  /* Swap columns visually */
}

/* Reset direction for children */
.about-content>* {
  direction: ltr;
}

.about-images-grid {
  /* Ensure images grid looks good on the left */
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.4s;
}

.about-img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(77, 179, 115, 0.15);
}

.about-text {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.about-text p:nth-child(1) {
  animation-delay: 0.1s;
}

.about-text p:nth-child(2) {
  animation-delay: 0.2s;
}

.about-text p:nth-child(3) {
  animation-delay: 0.3s;
}

.about-text p strong {
  color: var(--color-green);
  font-weight: 700;
}

.about-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-box {
  background: transparent;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid var(--color-green);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.about-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(77, 179, 115, 0.15);
  border-color: var(--color-blue);
}

.about-box h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-green);
  font-weight: 600;
}

.about-box p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.6;
}

/* ===== Suitcase Animation Section ===== */
.suitcase-animation-wrapper {
  position: relative;
  width: 100%;
  margin-top: 60px;
  padding: 40px 0;
  perspective: 1200px;
}

.suitcase-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.suitcase-open {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
}

.cards-scroll-container {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 20px 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--color-orange) var(--color-beige);
}

.cards-scroll-container::-webkit-scrollbar {
  height: 8px;
}

.cards-scroll-container::-webkit-scrollbar-track {
  background: var(--color-beige);
  border-radius: 10px;
}

.cards-scroll-container::-webkit-scrollbar-thumb {
  background: var(--color-orange);
  border-radius: 10px;
}

.cards-track {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  min-width: min-content;
  perspective: 1200px;
  transform-style: preserve-3d;
}

.feature-card-animated {
  flex-shrink: 0;
  width: 200px;
  height: 240px;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid var(--color-orange);
  background: var(--color-beige);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  opacity: 0;
  transform: translateY(100px) scale(0.3);
  animation: cardFlyOut 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
  transform-style: preserve-3d;
}

/* ╨а╨░╨╖╨╜╤Л╨╡ ╨░╨╜╨╕╨╝╨░╤Ж╨╕╨╕ ╨┤╨╗╤П ╨║╨░╨╢╨┤╨╛╨╣ ╨║╨░╤А╤В╨╛╤З╨║╨╕ */
.feature-card-animated:nth-child(1) {
  animation: cardFlyOutLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlow 2s ease-in-out 1.2s infinite;
  animation-delay: 0.2s, 1.2s;
}

.feature-card-animated:nth-child(2) {
  animation: cardFlyOut 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlow 2s ease-in-out 1.3s infinite;
  animation-delay: 0.3s, 1.3s;
}

.feature-card-animated:nth-child(3) {
  animation: cardFlyOutRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlowBlue 2s ease-in-out 1.4s infinite;
  animation-delay: 0.4s, 1.4s;
}

.feature-card-animated:nth-child(4) {
  animation: cardFlyOutLeft 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlow 2s ease-in-out 1.5s infinite;
  animation-delay: 0.5s, 1.5s;
}

.feature-card-animated:nth-child(5) {
  animation: cardFlyOut 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlow 2s ease-in-out 1.6s infinite;
  animation-delay: 0.6s, 1.6s;
}

.feature-card-animated:nth-child(6) {
  animation: cardFlyOutRight 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards,
    cardGlowBlue 2s ease-in-out 1.7s infinite;
  animation-delay: 0.7s, 1.7s;
}

@keyframes cardFlyOut {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.3) rotateX(90deg) rotateZ(-25deg);
  }

  40% {
    opacity: 1;
    transform: translateY(-80px) scale(1.15) rotateX(20deg) rotateZ(10deg);
  }

  70% {
    transform: translateY(20px) scale(1.05) rotateX(5deg) rotateZ(2deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg) rotateZ(0deg);
  }
}

@keyframes cardFlyOutLeft {
  0% {
    opacity: 0;
    transform: translateX(-120px) translateY(100px) scale(0.3) rotateY(90deg) rotateZ(-35deg);
  }

  40% {
    opacity: 1;
    transform: translateX(-80px) translateY(-60px) scale(1.15) rotateY(30deg) rotateZ(15deg);
  }

  70% {
    transform: translateX(-20px) translateY(20px) scale(1.05) rotateY(5deg) rotateZ(3deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0deg) rotateZ(0deg);
  }
}

@keyframes cardFlyOutRight {
  0% {
    opacity: 0;
    transform: translateX(120px) translateY(100px) scale(0.3) rotateY(-90deg) rotateZ(35deg);
  }

  40% {
    opacity: 1;
    transform: translateX(80px) translateY(-60px) scale(1.15) rotateY(-30deg) rotateZ(-15deg);
  }

  70% {
    transform: translateX(20px) translateY(20px) scale(1.05) rotateY(-5deg) rotateZ(-3deg);
  }

  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1) rotateY(0deg) rotateZ(0deg);
  }
}

.feature-card-animated:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 16px 32px rgba(251, 145, 84, 0.25);
  border-color: var(--color-blue);
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* ===== Vectors Section ===== */
.vectors {
  background-color: var(--color-beige);
}

.vectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.vector-card {
  background: transparent;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 2px solid;
  transition: all 0.3s ease;
  box-shadow: none;
}

.vector-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(56, 54, 50, 0.1);
}

.vector-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-black);
}

.vector-card p {
  font-size: 0.9rem;
  opacity: 0.85;
}

/* ===== Format Section ===== */
.format {
  background-color: var(--color-beige);
}

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.format-card {
  background: transparent;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(77, 179, 115, 0.1);
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(77, 179, 115, 0.1);
}

.format-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-green);
  opacity: 0.2;
  margin-bottom: 10px;
}

.format-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-black);
}

.format-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
}

/* ===== Schedule Section ===== */
.schedule {
  background-color: var(--color-beige);
}

.schedule-info {
  background: var(--color-white);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 50px;
  border-left: 4px solid var(--color-green);
}

.schedule-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-green);
}

.schedule-timeline {
  position: relative;
}

.timeline-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  margin-bottom: 40px;
  padding: 25px;
  background: transparent;
  border-radius: 12px;
  border: 2px solid var(--color-green);
  box-shadow: none;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  box-shadow: 0 8px 20px rgba(77, 179, 115, 0.15);
  transform: translateX(10px);
}

.timeline-date {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.timeline-date strong {
  font-size: 1.1rem;
  color: var(--color-green);
}

.timeline-date span {
  font-size: 0.9rem;
  color: var(--color-black);
  opacity: 0.7;
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--color-black);
}

.timeline-content p {
  font-size: 0.95rem;
  opacity: 0.85;
}

/* ===== Join Section ===== */
.join {
  background-color: var(--color-beige);
}

/* ===== Join Content Wrapper ===== */
.join-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* ===== Join Left Column ===== */
.join-left {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.join-intro {
  padding: 30px;
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.05) 0%, rgba(147, 191, 254, 0.05) 100%);
  border-radius: 16px;
  border-left: 4px solid var(--color-green);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.join-intro p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-black);
  margin: 0;
}

/* ===== Join Right Column ===== */
.join-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.2s forwards;
}

.join-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(77, 179, 115, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.join-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(77, 179, 115, 0.25);
}

/* ===== FAQ Section ===== */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 2px solid var(--color-blue);
  border-radius: 12px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.faq-item:nth-child(1) {
  animation-delay: 0.1s;
}

.faq-item:nth-child(2) {
  animation-delay: 0.3s;
}

.faq-toggle {
  width: 100%;
  padding: 20px 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-align: left;
}

.faq-toggle:hover {
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.02) 0%, rgba(147, 191, 254, 0.02) 100%);
}

.faq-item.active .faq-toggle {
  border-bottom: 2px solid var(--color-blue);
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background-color: var(--color-blue);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.2rem;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 2px;
}

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

.faq-question {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0;
  transition: color 0.3s ease;
  font-family: var(--font-primary);
}

.faq-toggle:hover .faq-question {
  color: var(--color-green);
}

.faq-item.active .faq-question {
  color: var(--color-green);
}

.faq-answer {
  display: none;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 0 25px;
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.02) 0%, rgba(147, 191, 254, 0.02) 100%);
}

.faq-item.active .faq-answer {
  display: block;
  max-height: 1000px;
  opacity: 1;
  padding: 0 25px 20px 25px;
}

.faq-answer p {
  margin: 15px 0 0 0;
  line-height: 1.7;
  font-size: 1rem;
  color: var(--color-black);
}

.faq-answer p:first-child {
  margin-top: 0;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 15px 0;
}

.pricing-list li {
  padding: 12px 0 12px 30px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
}

.pricing-list li::before {
  content: 'тЬУ';
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
  font-size: 1.2rem;
}

/* ===== Join CTA ===== */
.join-cta {
  width: 100%;
  text-align: center;
}

/* ===== Join Pricing Section ===== */
.join-pricing {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 2px solid var(--color-blue);
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s forwards;
}

.join-pricing h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 40px;
  font-family: var(--font-primary);
  text-align: center;
  /* Centered as requested */
}

/* Explicit right alignment for hosts message */
.hosts-message p {
  text-align: right !important;
}

.hosts-message-content {
  flex: 1;
  text-align: right !important;
}

/* Fix mobile alignment override only if needed, but !important above helps */


.pricing-join-btn-container {
  margin-top: 60px;
  text-align: center;
  width: 100%;
  position: relative;
  /* Ensure context */
  z-index: 5;
}

.pricing-join-btn {
  /* Reset potentially conflicting styles from .hero-join-btn */
  position: static;
  transform: none;
  left: auto;
  bottom: auto;

  width: 100%;
  max-width: 600px;
  padding: 16px 30px;
  font-size: 1.1rem;
  display: inline-flex;
  margin: 0 auto;
}

.pricing-join-btn:hover {
  transform: translateY(-3px);
  /* Ensure hover still works but without absolute shifts */
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 700px;
  margin: 0 auto;
}

.pricing-card {
  padding: 30px 25px;
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.05) 0%, rgba(147, 191, 254, 0.05) 100%);
  border: 2px solid var(--color-green);
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-card:hover {
  border-color: var(--color-blue);
  box-shadow: 0 8px 25px rgba(77, 179, 115, 0.15);
  transform: translateY(-5px);
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.08) 0%, rgba(147, 191, 254, 0.05) 100%);
}

.pricing-period {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-green);
  margin-bottom: 4px;
  font-family: var(--font-primary);
}

.pricing-duration {
  font-size: 0.85rem;
  color: var(--color-black);
  opacity: 0.7;
  margin-bottom: 15px;
}

.pricing-amount {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 6px;
  font-family: var(--font-primary);
}

.pricing-amount span {
  font-size: 1.1rem;
  color: var(--color-orange);
}

.pricing-frequency {
  font-size: 0.8rem;
  color: var(--color-black);
  opacity: 0.8;
}

/* ===== Signup Section ===== */
.signup-section {
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
  color: white;
}

.signup-container {
  max-width: 500px;
}

.signup-section .section-title {
  color: white;
}

.signup-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  color: var(--color-black);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-black);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: var(--font-secondary);
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 3px rgba(77, 179, 115, 0.1);
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}

.checkbox input {
  width: auto;
  margin: 0;
  cursor: pointer;
}

.signup-form .btn {
  width: 100%;
  justify-content: center;
}

.form-note {
  text-align: center;
  margin-top: 15px;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* ===== Footer (Main Site Style) ===== */
.footer {
  background-color: var(--color-black);
  color: var(--color-white);
  text-align: center;
  padding: 40px 20px;
  padding-bottom: calc(40px + env(safe-area-inset-bottom));
  /* Add safe area padding */
  margin-top: 80px;
  border-top: 2px solid var(--color-green);
  transition: all 0.4s ease;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-nav-link {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  position: relative;
  padding-bottom: 2px;
}

.footer-nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-green);
  transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-nav-link:hover {
  opacity: 0.9;
}

.footer-nav-link:hover::after {
  width: 100%;
}

.footer-contacts {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-telegram-link {
  color: var(--color-white);
  text-decoration: none;
  font-family: var(--font-secondary);
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-telegram-link:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-telegram-link .telegram-icon {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.footer-telegram-link:hover .telegram-icon {
  transform: scale(1.15) rotate(10deg);
}

.telegram-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}



/* ===== Hosts Section ===== */
.hosts {
  background-color: var(--color-beige);
  padding: 60px 0;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.host-card {
  text-align: center;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.host-card:nth-child(1) {
  animation-delay: 0.1s;
}

.host-card:nth-child(2) {
  animation-delay: 0.3s;
}

.host-image {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  background: transparent;
  border: 3px solid var(--color-green);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.host-card:hover .host-image {
  border-color: var(--color-blue);
  box-shadow: 0 12px 28px rgba(77, 179, 115, 0.2);
  transform: scale(1.02);
}

.host-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.host-card:hover .host-image img {
  transform: scale(1.03);
}

.host-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--color-green);
  font-weight: 700;
}

.host-role {
  font-size: 0.95rem;
  color: var(--color-green);
  font-weight: 600;
  margin-bottom: 12px;
  opacity: 0.8;
}

.host-bio {
  font-size: 0.95rem;
  color: var(--color-black);
  line-height: 1.7;
  opacity: 0.85;
}

.hosts-message {
  background: transparent;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid var(--color-green);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.5s;
  display: flex;
  align-items: center;
  gap: 30px;
}

.hosts-message:hover {
  border-color: var(--color-blue);
  box-shadow: 0 12px 28px rgba(77, 179, 115, 0.15);
}

.hosts-message-content {
  flex: 1;
}

.hosts-message-image {
  flex: 0 0 400px;
  max-width: 400px;
}

.hosts-message-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.hosts-message:hover .hosts-message-image img {
  transform: rotate(0deg) scale(1.05);
}

.hosts-message p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-black);
  font-style: italic;
  text-align: left;
}

@media (max-width: 768px) {
  .hosts-message {
    flex-direction: column;
    /* Removed text-align: center to keep left alignment from main styles or specific HTML styles */
    align-items: flex-start;
    /* Align flex items to start (left) */
  }

  .hosts-message p {
    text-align: left;
    /* Force left alignment */
  }

  .hosts-message-image {
    width: 100%;
    margin-top: 20px;
    flex: 0 0 auto;
    max-width: 100%;
    align-self: center;
    /* Center the image itself if needed, or keep left? Standard behavior is usually centered image on mobile stack, but request was about TEXT. Let's keep image centered or consistent. */
  }
}

/* ===== Horizontal Schedule ===== */
.horizontal-schedule {
  display: flex;
  align-items: center;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 0;
  justify-content: space-between;
}

.schedule-card {
  flex: 1;
  min-width: 200px;
  padding: 20px;
  border: 2px solid var(--color-green);
  border-radius: 12px;
  background: transparent;
  text-align: center;
  transition: all 0.3s ease;
}

.schedule-card:hover {
  box-shadow: 0 8px 20px rgba(77, 179, 115, 0.15);
  transform: translateY(-5px);
}

.schedule-date {
  font-weight: 700;
  color: var(--color-green);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.schedule-week {
  font-size: 0.85rem;
  color: var(--color-black);
  opacity: 0.7;
  margin-bottom: 12px;
}

.schedule-card h4 {
  font-size: 1rem;
  margin-bottom: 10px;
  color: var(--color-black);
}

.schedule-card p {
  font-size: 0.9rem;
  color: var(--color-black);
  opacity: 0.8;
  line-height: 1.5;
}

.schedule-arrow {
  font-size: 1.5rem;
  color: var(--color-green);
  flex-shrink: 0;
}

/* ===== Source: pages/suitcase/css/3-roadmap.css ===== */

/* ===== Roadmap Layout ===== */
.roadmap-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  margin-bottom: 40px;
  align-items: start;
}

.roadmap-map-side {
  position: sticky;
  top: 100px;
}

.journey-map-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.roadmap-cards-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap-card-item {
  padding: 25px 30px;
  border: 2px solid var(--color-green);
  border-radius: 12px;
  background: var(--color-beige);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

.roadmap-card-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.roadmap-card-item:hover {
  box-shadow: 0 8px 20px rgba(77, 179, 115, 0.2);
  transform: translateY(-5px);
}

.roadmap-month {
  font-weight: 700;
  color: var(--color-green);
  font-size: 1rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.roadmap-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.roadmap-card-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-black);
  font-weight: 600;
}

.roadmap-card-item p {
  font-size: 0.95rem;
  color: var(--color-black);
  opacity: 0.8;
  line-height: 1.6;
}

.roadmap-arrow-vertical {
  font-size: 1.5rem;
  color: var(--color-green);
  text-align: center;
  margin: 10px 0;
}

.roadmap-message {
  background: transparent;
  padding: 25px;
  border-radius: 12px;
  border: 2px solid var(--color-green);
  text-align: center;
}

.roadmap-message p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-black);
  opacity: 0.85;
}


/* ===== Source: pages/suitcase/css/4-responsive.css ===== */

/* ===== Mobile Responsive ===== */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .container {
    padding: 0 15px;
  }

  .header-container {
    gap: 10px;
    padding: 12px 15px;
  }

  .logo {
    font-size: 1rem;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-beige);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border-bottom: 2px solid var(--color-green);
  }

  .nav.open {
    max-height: 300px;
  }

  .nav-link {
    padding: 12px 20px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .nav-link::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 10px;
  }

  .hero-cta button,
  .hero-cta a {
    width: 100%;
  }

  .hero-visual {
    height: 250px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-boxes {
    grid-template-columns: 1fr;
  }

  .vectors-grid {
    grid-template-columns: 1fr;
  }

  .format-grid {
    grid-template-columns: 1fr;
  }

  .join-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .join-intro {
    padding: 20px;
  }

  .join-intro p {
    font-size: 1rem;
  }

  .join-right {
    gap: 20px;
  }

  .join-image {
    max-width: 100%;
  }

  .join-pricing {
    margin-top: 40px;
    padding-top: 40px;
  }

  .join-pricing h3 {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .pricing-card {
    padding: 25px 20px;
  }

  .pricing-period {
    font-size: 0.95rem;
  }

  .pricing-amount {
    font-size: 1.8rem;
  }

  .faq-section {
    gap: 12px;
  }

  .faq-toggle {
    padding: 18px 20px;
    gap: 12px;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 20px !important;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 15px 20px !important;
  }

  .faq-answer p {
    font-size: 0.95rem;
    margin-top: 12px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .signup-form {
    padding: 25px;
  }

  .footer-content {
    gap: 30px;
  }
}

/* Additional Mobile Adjustments */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  /* Override inline styles for hero cards */
  .hero-card {
    height: auto !important;
    min-height: 500px;
  }

  .hero-card-left {
    padding: 40px 20px;
    align-items: center;
    gap: 30px;
  }

  .hero-join-btn {
    position: relative;
    left: auto;
    bottom: auto;
    margin-top: 20px;
  }

  .hero-logo-container {
    margin-bottom: 20px;
  }

  .hero-suitcase-container {
    margin: 0;
  }
}

@media (max-width: 768px) {

  /* Stations Grid - Single Column */
  .stations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Hosts Message - Stack Vertical */
  .hosts-message {
    flex-direction: column-reverse;
    text-align: center;
    padding: 20px;
    gap: 20px;
  }

  .hosts-message-content {
    text-align: center !important;
  }

  .hosts-message p {
    text-align: center !important;
  }

  .hosts-message-image {
    max-width: 100%;
    width: 150px;
    margin: 0 auto;
  }

  .hosts-message .hero-join-btn {
    margin: 20px auto 0;
  }

  /* Suitcase Animation Wrapper */
  .suitcase-animation-wrapper {
    margin-top: 30px;
    padding: 20px 0;
  }

  .suitcase-container {
    margin-bottom: 20px;
  }

  .suitcase-character {
    height: 40%;
    /* Smaller suitcase on mobile */
  }

  .journey-background {
    height: 200px;
    margin-bottom: 40px;
  }

  /* Bonus Tool Section */
  .section.vectors {
    padding: 40px 0;
  }

  .section.vectors .section-title {
    font-size: 2rem !important;
  }
}

@media (max-width: 480px) {
  .hero-card {
    min-height: 400px;
    border-radius: 20px;
  }

  .hero-logo-text {
    width: 100%;
  }

  .section-title {
    font-size: 2.5rem;
    /* Smaller title on very small screens */
  }

  .feature-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

/* ===== Source: pages/suitcase/css/5-features.css ===== */

/* ===== Feature Cards ===== */
.feature-title {
  font-family: var(--font-primary);
  font-size: 5rem;
  font-weight: 700;
  text-align: center;
  margin: 60px 0 40px;
  color: var(--color-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: transparent;
  padding: 30px 25px;
  border-radius: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
  border: 2px solid var(--color-green);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(77, 179, 115, 0.2);
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-green);
  margin-bottom: 15px;
  display: block;
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--color-black);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--color-black);
  opacity: 0.8;
  line-height: 1.6;
}

.feature-icon-box {
  width: 100px;
  height: 100px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border: 2px solid rgba(77, 179, 115, 0.1);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-box {
  background: transparent;
  border-color: rgba(77, 179, 115, 0.2);
  transform: scale(1.05);
}

.feature-svg {
  width: 60px;
  height: 60px;
  display: block;
}

.feature-image {
  width: 100%;
  height: 100%;
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  display: block;
}

.hero-illustration {
  width: 100%;
  height: 100%;
  max-width: 250px;
  z-index: 5;
  filter: drop-shadow(0 10px 25px rgba(77, 179, 115, 0.1));
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px) rotateZ(-2deg);
  }

  50% {
    transform: translateY(-20px) rotateZ(2deg);
  }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }

  100% {
    background-position: 1000px 0;
  }
}

@keyframes cardGlow {
  0% {
    box-shadow: 0 0 5px rgba(251, 145, 84, 0.3),
      0 0 10px rgba(251, 145, 84, 0),
      inset 0 0 10px rgba(251, 145, 84, 0.1);
  }

  50% {
    box-shadow: 0 8px 20px rgba(251, 145, 84, 0.4),
      0 0 30px rgba(251, 145, 84, 0.3),
      inset 0 0 15px rgba(251, 145, 84, 0.2);
  }

  100% {
    box-shadow: 0 0 5px rgba(251, 145, 84, 0.3),
      0 0 10px rgba(251, 145, 84, 0),
      inset 0 0 10px rgba(251, 145, 84, 0.1);
  }
}

@keyframes cardGlowBlue {
  0% {
    box-shadow: 0 0 5px rgba(147, 191, 254, 0.3),
      0 0 10px rgba(147, 191, 254, 0),
      inset 0 0 10px rgba(147, 191, 254, 0.1);
  }

  50% {
    box-shadow: 0 8px 20px rgba(147, 191, 254, 0.4),
      0 0 30px rgba(147, 191, 254, 0.3),
      inset 0 0 15px rgba(147, 191, 254, 0.2);
  }

  100% {
    box-shadow: 0 0 5px rgba(147, 191, 254, 0.3),
      0 0 10px rgba(147, 191, 254, 0),
      inset 0 0 10px rgba(147, 191, 254, 0.1);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-left {
  animation: slideInLeft 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.slide-in-right {
  animation: slideInRight 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.scale-up {
  animation: scaleUp 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.bounce-in {
  animation: bounceIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
  animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
  animation-delay: 0.6s;
}

.vector-card:nth-child(1) {
  animation-delay: 0.1s;
}

.vector-card:nth-child(2) {
  animation-delay: 0.2s;
}

.vector-card:nth-child(3) {
  animation-delay: 0.3s;
}

.vector-card:nth-child(4) {
  animation-delay: 0.4s;
}

.vector-card:nth-child(5) {
  animation-delay: 0.5s;
}

.vector-card:nth-child(6) {
  animation-delay: 0.6s;
}

.vector-card:nth-child(7) {
  animation-delay: 0.7s;
}

.vector-card:nth-child(8) {
  animation-delay: 0.8s;
}

.timeline-item:nth-child(1) {
  animation-delay: 0.1s;
}

.timeline-item:nth-child(2) {
  animation-delay: 0.2s;
}

.timeline-item:nth-child(3) {
  animation-delay: 0.3s;
}

.timeline-item:nth-child(4) {
  animation-delay: 0.4s;
}


/* ===== Source: pages/suitcase/css/6-advanced.css ===== */

/* ===== January Theme Section ===== */
.january-theme {
  background: transparent;
}

.theme-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-black);
  padding: 30px;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(56, 54, 50, 0.08);
  border-left: 5px solid var(--color-green);
}

/* ===== Timeline Schedule ===== */
.schedule-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-green) 0%, var(--color-blue) 100%);
  border-radius: 2px;
  display: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  direction: rtl;
}

.timeline-item:nth-child(odd)>* {
  direction: ltr;
}

.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(77, 179, 115, 0.3);
  margin: 0 auto;
  flex-shrink: 0;
}

.timeline-content {
  background: var(--color-white);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(56, 54, 50, 0.08);
  border-top: 3px solid var(--color-green);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  box-shadow: 0 12px 30px rgba(77, 179, 115, 0.15);
  transform: translateY(-5px);
}

.timeline-content h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--color-green);
}

.timeline-content p {
  font-size: 0.95rem;
  color: var(--color-black);
  opacity: 0.9;
  line-height: 1.6;
}

/* ===== Mobile Timeline ===== */
@media (max-width: 768px) {
  .schedule-timeline::before {
    display: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  .timeline-item:nth-child(odd) {
    direction: ltr;
  }

  .timeline-marker {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
  }

  .timeline-content {
    padding: 20px;
  }

  .feature-card {
    border-left: 3px solid var(--color-green);
  }

  .theme-content {
    padding: 20px;
  }

  .hosts-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .vector-card,
  .format-card,
  .about-box {
    padding: 20px;
  }

  .section {
    padding: 30px 0;
  }
}

/* ===== Cookie Banner ===== */
.cookie-banner {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background-color: var(--color-beige);
  border-top: 3px solid var(--color-green);
  padding: 20px;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: bottom 0.5s ease;
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 0 20px;
}

.cookie-content p {
  font-size: 0.9rem;
  color: var(--color-black);
  flex: 1;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .section-title {
    font-size: 3rem;
  }

  .feature-title {
    font-size: 2.2rem;
    max-width: 600px;
    min-height: auto;
  }

  .suitcase-open {
    max-width: 400px;
  }

  .feature-card-animated {
    width: 170px;
    height: 210px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem;
  }

  .feature-title {
    font-size: 1.5rem;
    max-width: 100%;
    min-height: auto;
  }

  .feature-card-animated {
    width: 150px;
    height: 180px;
  }

  .join-content-wrapper {
    gap: 30px;
  }

  .join-intro {
    padding: 15px;
  }

  .join-intro p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .join-right {
    gap: 18px;
  }

  .join-image {
    max-width: 100%;
    border-radius: 12px;
  }

  .join-pricing {
    margin-top: 30px;
    padding-top: 30px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .join-pricing h3 {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pricing-card {
    padding: 20px 15px;
  }

  .pricing-period {
    font-size: 0.9rem;
  }

  .pricing-duration {
    font-size: 0.8rem;
    margin-bottom: 12px;
  }

  .pricing-amount {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }

  .pricing-amount span {
    font-size: 0.9rem;
  }

  .pricing-frequency {
    font-size: 0.75rem;
  }

  .faq-section {
    gap: 10px;
  }

  .faq-toggle {
    padding: 15px 18px;
    gap: 10px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    font-size: 1rem;
  }

  .faq-answer {
    padding: 0 18px !important;
  }

  .faq-item.active .faq-answer {
    max-height: 1500px;
    padding: 0 18px 15px 18px !important;
  }

  .faq-answer p {
    font-size: 0.85rem;
    margin-top: 10px;
  }

  .pricing-list li {
    font-size: 0.85rem;
    padding: 10px 0 10px 28px;
  }
}

/* ===== Program Content Styles ===== */

.program-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.program-block {
  margin-bottom: 50px;
  padding: 30px;
  background: rgba(147, 191, 254, 0.1);
  border-left: 5px solid var(--color-blue);
  border-radius: 8px;
  animation: fadeInUp 0.6s ease-out;
}

.program-month {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 15px;
  font-family: var(--font-primary);
}

.program-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-black);
  margin-bottom: 15px;
}

.program-dates {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.program-dates li {
  font-size: 0.95rem;
  color: var(--color-black);
  margin-bottom: 10px;
  padding-left: 20px;
  line-height: 1.5;
}

.program-note {
  font-size: 0.95rem;
  color: var(--color-black);
  margin-top: 15px;
  font-style: italic;
}

.program-details {
  font-size: 0.95rem;
  color: var(--color-black);
  margin-bottom: 15px;
  line-height: 1.6;
}

.program-for {
  font-size: 0.95rem;
  color: var(--color-black);
  margin-top: 15px;
  line-height: 1.6;
}

.program-closing {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-blue);
  margin-top: 50px;
  margin-bottom: 30px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Schedule Weeks Styles ===== */

.schedule-weeks {
  max-width: 100%;
  margin: 0 auto;
  /* Removed top/bottom margin */
  padding: 0 20px;
  /* Reduced vertical padding */
  display: flex;
  flex-direction: row;
  gap: 25px;
  position: relative;
  justify-content: center;
  align-items: stretch;
  flex-wrap: nowrap;
  overflow-x: auto;
}

.week-block {
  padding: 25px;
  background: linear-gradient(135deg, rgba(147, 191, 254, 0.1) 0%, rgba(237, 169, 232, 0.05) 100%);
  border: 2px solid var(--color-blue);
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  width: 200px;
  min-height: 280px;
  flex-shrink: 0;
  position: relative;
}

.week-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(147, 191, 254, 0.25);
  background: linear-gradient(135deg, rgba(147, 191, 254, 0.2) 0%, rgba(237, 169, 232, 0.1) 100%);
}

.week-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-blue);
  margin-bottom: 6px;
  font-family: var(--font-primary);
  line-height: 1.2;
}

.week-dates {
  font-size: 0.85rem;
  color: var(--color-orange);
  margin-bottom: 6px;
  font-weight: 600;
  margin: 0;
  padding: 0;
}

.week-subtitle {
  font-size: 0.9rem;
  color: var(--color-black);
  margin-bottom: 12px;
  font-weight: 500;
  margin: 0 0 12px 0;
  padding: 0;
}

.week-meeting {
  font-size: 0.8rem;
  color: var(--color-black);
  margin-bottom: 10px;
  font-weight: 600;
}

.week-content {
  list-style: none;
  padding-left: 0;
  margin: 0;
  font-size: 0.75rem;
}

.week-content li {
  font-size: 0.75rem;
  color: var(--color-black);
  margin-bottom: 5px;
  padding-left: 15px;
  position: relative;
  line-height: 1.3;
}

.week-content li:before {
  content: "тАв";
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-weight: bold;
}

/* Schedule Responsive */
@media (max-width: 1024px) {
  .schedule-weeks {
    gap: 20px;
    padding: 25px 20px;
  }

  .week-block {
    width: 180px;
    padding: 20px;
    min-height: 260px;
  }

  .week-title {
    font-size: 1rem;
  }

  .week-dates {
    font-size: 0.8rem;
  }

  .week-subtitle {
    font-size: 0.85rem;
  }

  .week-meeting {
    font-size: 0.75rem;
  }

  .week-content li {
    font-size: 0.7rem;
  }
}

@media (max-width: 768px) {
  .schedule-weeks {
    gap: 15px;
    padding: 20px 10px;
  }

  .week-block {
    width: 160px;
    padding: 15px;
    min-height: 240px;
  }

  .week-title {
    font-size: 0.9rem;
  }

  .week-dates {
    font-size: 0.75rem;
  }

  .week-subtitle {
    font-size: 0.8rem;
  }

  .week-meeting {
    font-size: 0.7rem;
  }

  .week-content li {
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .schedule-weeks {
    gap: 10px;
    padding: 15px 5px;
    overflow-x: auto;
  }

  .week-block {
    width: 140px;
    padding: 12px;
    min-height: 220px;
  }

  .week-title {
    font-size: 0.85rem;
  }

  .week-dates {
    font-size: 0.7rem;
  }

  .week-subtitle {
    font-size: 0.75rem;
  }

  .week-meeting {
    font-size: 0.65rem;
  }

  .week-content li {
    font-size: 0.6rem;
  }
}

/* ===== Roadmap - Magical Journey Styles ===== */

.journey-background {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 60px;
  /* Reduced from 100px to standard 60px */
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(77, 179, 115, 0.15);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  /* Focus on bottom */
  display: block;
}

.suitcase-character {
  position: absolute;
  bottom: 10px;
  left: 10%;
  height: 55%;
  width: auto;
  object-fit: contain;
  /* Animation handled by JS on scroll */
  transition: left 0.1s linear;
  /* Smooths out the JS updates slightly */
}

/* Stations Grid */
.stations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1400px;
  margin: 0 auto 0;
  /* Reduced margin-bottom to 0 from 50px */
  padding: 0 20px;
}

.station-card {
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.05) 0%, rgba(147, 191, 254, 0.05) 100%);
  border: 2px solid var(--color-green);
  border-radius: 16px;
  padding: 25px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.station-card:nth-child(1) {
  animation-delay: 0.1s;
}

.station-card:nth-child(2) {
  animation-delay: 0.2s;
}

.station-card:nth-child(3) {
  animation-delay: 0.3s;
}

.station-card:nth-child(4) {
  animation-delay: 0.4s;
}

.station-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(77, 179, 115, 0.25);
  border-color: var(--color-blue);
  background: linear-gradient(135deg, rgba(77, 179, 115, 0.1) 0%, rgba(147, 191, 254, 0.1) 100%);
}

.station-card.midpoint {
  border: 3px solid var(--color-orange);
  background: linear-gradient(135deg, rgba(251, 145, 84, 0.05) 0%, rgba(147, 191, 254, 0.05) 100%);
}

.station-card.midpoint:hover {
  border-color: var(--color-orange);
  box-shadow: 0 20px 40px rgba(251, 145, 84, 0.25);
}

.station-icon {
  font-size: 3.5rem;
  margin-bottom: 15px;
  display: block;
  transition: transform 0.3s ease;
}

.station-card:hover .station-icon {
  transform: scale(1.15) rotate(5deg);
}

.station-header {
  margin-bottom: 15px;
}

.station-header h3 {
  font-size: 1.4rem;
  color: var(--color-green);
  margin-bottom: 5px;
  margin-top: 0;
  font-weight: 700;
}

.station-theme {
  font-size: 0.95rem;
  color: var(--color-blue);
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.station-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-black);
}

.station-short {
  font-weight: 500;
  color: var(--color-black);
  margin: 0 0 10px 0;
  display: block;
  min-height: 40px;
}

.station-expanded {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(77, 179, 115, 0.2);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.station-expanded.show {
  max-height: 1200px;
  opacity: 1;
}

.station-expanded-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.station-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  /* Reduced from 8px */
}

.station-expanded p {
  margin: 4px 0;
  /* Reduced from 8px */
  font-size: 0.9rem;
}

.station-expanded ul {
  list-style: none;
  padding-left: 0;
  margin: 4px 0;
  /* Reduced from 8px */
}

.station-expanded li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 2px;
  /* Reduced from 6px */
  font-size: 0.9rem;
  line-height: 1.4;
  /* Slightly tighter line height */
}

.station-expanded li:before {
  content: "тЖТ";
  position: absolute;
  left: 0;
  color: var(--color-green);
  font-weight: bold;
}

.station-image {
  margin-top: 15px;
  overflow: hidden;
  border-radius: 12px;
  width: 100%;
  aspect-ratio: 16/9;
}

.station-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.station-card:hover .station-image img {
  transform: scale(1.05);
}



/* Responsive Roadmap */
@media (max-width: 1024px) {
  .stations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .journey-background {
    height: 200px;
    margin-bottom: 40px;
  }

  .stations-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .station-card {
    padding: 20px;
  }

  .station-icon {
    font-size: 2.8rem;
    margin-bottom: 10px;
  }

  .station-header h3 {
    font-size: 1.2rem;
  }

  .station-expanded li {
    font-size: 0.85rem;
  }

  .station-expanded-content {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .station-image {
    min-height: 250px;
  }
}

@media (max-width: 480px) {
  .journey-background {
    height: 150px;
    margin-bottom: 30px;
  }

  .station-card {
    padding: 15px;
  }

  .station-icon {
    font-size: 2.5rem;
  }

  .station-header h3 {
    font-size: 1.1rem;
  }

  .station-theme {
    font-size: 0.85rem;
  }

  .station-short {
    font-size: 0.9rem;
  }

  .station-expanded-content {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .station-image {
    min-height: 200px;
  }

  .station-expanded {
    max-height: 800px;
  }
}

/* ===== Roadmap List Styles ===== */

.roadmap-content {
  max-width: 900px;
  margin: 0 auto 50px;
  padding: 30px;
  background: rgba(147, 191, 254, 0.1);
  border-radius: 8px;
}

.roadmap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-black);
  margin-bottom: 20px;
}

.roadmap-item:last-child {
  margin-bottom: 0;
}

.roadmap-check {
  font-size: 1.5rem;
  margin-right: 15px;
  flex-shrink: 0;
  animation: checkAnimation 0.6s ease-out;
}

@keyframes checkAnimation {
  0% {
    opacity: 0;
    transform: scale(0);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Suitcase with Flying Cards Styles ===== */

.suitcase-animation-wrapper {
  position: relative;
  width: 100vw;
  margin: 80px calc(-50vw + 50%) 60px calc(-50vw + 50%);
  height: auto;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  cursor: pointer;
  padding: 40px 150px;
  overflow: visible;
}

.cards-wrapper {
  position: relative;
  width: 100%;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-flying {
  position: absolute;
  width: 180px;
  height: 225px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.card-flying.visible {
  opacity: 1;
  z-index: 50;
  animation: cardFlyIn 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
}

/* Animation for cards flying in */
@keyframes cardFlyIn {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(-50%) scale(0.7) rotate(0deg);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    transform: translateX(var(--tx, 0)) translateY(var(--ty, -50%)) scale(1) rotate(var(--rotate, 0deg));
  }
}

/* Position cards around the suitcase (20px further left/right) */
.card-flying[data-card="1"] {
  --tx: calc(-50% - 360px);
  --ty: -220px;
  --rotate: -8deg;
  z-index: 63;
}

.card-flying[data-card="2"] {
  --tx: calc(-50% + 320px);
  --ty: -220px;
  --rotate: 8deg;
  z-index: 63;
}

.card-flying[data-card="3"] {
  --tx: calc(-50% - 360px);
  --ty: -36px;
  --rotate: -6deg;
  z-index: 62;
}

.card-flying[data-card="4"] {
  --tx: calc(-50% + 330px);
  --ty: -36px;
  --rotate: 6deg;
  z-index: 62;
}

.card-flying[data-card="5"] {
  --tx: calc(-50% - 290px);
  --ty: 150px;
  --rotate: -10deg;
  z-index: 61;
}

.card-flying[data-card="6"] {
  --tx: calc(-50% + 260px);
  --ty: 150px;
  --rotate: 10deg;
  z-index: 61;
}

.cards-hint {
  font-size: 0.9rem;
  color: var(--color-blue);
  margin-top: 0;
  margin-bottom: 120px;
  text-align: center;
  font-style: italic;
  opacity: 1;
  animation: hint-pulse 2s ease-in-out infinite;
  min-height: 40px;
  display: block;
  width: 100%;
  z-index: 100;
  position: relative;
  line-height: 1.4;
}

.cards-hint.revealed {
  position: relative;
  top: auto;
  left: auto;
  transform: none;
  width: 100%;
  max-width: 600px;
  animation: none;
  margin: 0 auto 120px;
  z-index: 200;
}

@keyframes hint-pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* Mobile optimization */
@media (max-width: 768px) {
  .suitcase-animation-wrapper {
    min-height: 440px;
    height: auto;
    margin: 60px calc(-50vw + 50%) 40px calc(-50vw + 50%);
    padding: 40px 80px;
  }

  .cards-wrapper {
    height: 360px;
  }

  .card-flying {
    width: 145px;
    height: 182px;
  }

  .card-flying[data-card="1"] {
    --tx: calc(-50% - 225px);
    --ty: -180px;
  }

  .card-flying[data-card="2"] {
    --tx: calc(-50% + 200px);
    --ty: -180px;
  }

  .card-flying[data-card="3"] {
    --tx: calc(-50% - 225px);
    --ty: -52px;
  }

  .card-flying[data-card="4"] {
    --tx: calc(-50% + 206px);
    --ty: -52px;
  }

  .card-flying[data-card="5"] {
    --tx: calc(-50% - 180px);
    --ty: 70px;
  }

  .card-flying[data-card="6"] {
    --tx: calc(-50% + 150px);
    --ty: 70px;
  }

  .cards-hint {
    font-size: 0.8rem;
    margin-bottom: 100px;
  }
}

@media (max-width: 480px) {
  .suitcase-animation-wrapper {
    min-height: 400px;
    height: auto;
    margin: 50px calc(-50vw + 50%) 30px calc(-50vw + 50%);
    padding: 30px 60px;
  }

  .cards-wrapper {
    height: 320px;
  }

  .card-flying {
    width: 125px;
    height: 157px;
  }

  .card-flying[data-card="1"] {
    --tx: calc(-50% - 150px);
    --ty: -150px;
  }

  .card-flying[data-card="2"] {
    --tx: calc(-50% + 140px);
    --ty: -150px;
  }

  .card-flying[data-card="3"] {
    --tx: calc(-50% - 160px);
    --ty: -58px;
  }

  .card-flying[data-card="4"] {
    --tx: calc(-50% + 150px);
    --ty: -58px;
  }

  .card-flying[data-card="5"] {
    --tx: calc(-50% - 120px);
    --ty: 32px;
  }

  .card-flying[data-card="6"] {
    --tx: calc(-50% + 96px);
    --ty: 32px;
  }

  .cards-hint {
    font-size: 0.75rem;
    margin-bottom: 90px;
  }
}

/* ===== Suitcase Overlay Styles ===== */

.suitcase-overlay-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.suitcase-base {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.suitcase-overlay {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  max-width: 100%;
  z-index: 2;
  animation: floatCards 3s ease-in-out infinite;
  transition: opacity 0.6s ease-out;
}

/* Floating animation for cards overlay */
@keyframes floatCards {

  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }

  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ===== Flip Cards Section ===== */

.about-flip {
  background-color: var(--color-beige);
  padding: 60px 0;
}

.flip-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

.flip-card {
  height: 400px;
  cursor: pointer;
  perspective: 1000px;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.flip-card:nth-child(1) {
  animation-delay: 0.2s;
}

.flip-card:nth-child(2) {
  animation-delay: 0.4s;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(77, 179, 115, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
  /* Ensure image doesn't overflow corners */
}

.flip-card-back {
  padding: 20px;
}

.flip-card-front {
  background: white;
  border: 3px solid var(--color-green);
  z-index: 2;
  padding: 0;
  /* Remove padding for full image */
}

.flip-card-front h3 {
  position: absolute;
  bottom: 0px;
  left: 0;
  font-size: 1.3rem;
  color: white;
  /* White text for better contrast */
  font-weight: 700;
  text-align: center;
  width: 100%;
  padding: 20px 10px;
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
  /* Gradient overlay */
  z-index: 10;
}

.flip-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  /* Remove internal border radius as parent clips */
  border: none;
  transition: transform 0.3s ease;
}



.flip-card:hover .flip-card-image {
  transform: scale(1.05);
}

.flip-card-back {
  background: var(--color-green);
  color: white;
  transform: rotateY(180deg);
  border: 3px solid var(--color-green);
  overflow-y: auto;
}

.flip-card-back h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  margin-top: 0;
  color: white;
  font-weight: 700;
}

.flip-card-text {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.6;
}

.flip-card-text p {
  margin: 0 0 12px 0;
}

.flip-card-text p:last-child {
  margin-bottom: 0;
}

/* Responsive flip cards */
@media (max-width: 768px) {
  .flip-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .flip-card {
    height: 380px;
  }

  .flip-card-image {
    width: 150px;
    height: 150px;
  }

  .flip-card-front h3 {
    font-size: 1.1rem;
  }

  .flip-card-back h3 {
    font-size: 1.1rem;
  }

  .flip-card-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .flip-cards-grid {
    gap: 20px;
  }

  .flip-card {
    height: 350px;
  }

  .flip-card-image {
    width: 120px;
    height: 120px;
  }

  .flip-card-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .flip-card-text p {
    margin-bottom: 10px;
  }
}

/* ===== Accessibility Styles ===== */

/* Screen reader only content - hidden from view but available to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Skip to content link - visible on focus for keyboard navigation */
.skip-to-content {
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-blue);
  color: var(--color-white);
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  font-weight: 600;
  z-index: -1;
  transition: top 0.2s ease-out;
  clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.skip-to-content:focus {
  clip-path: inset(0);
  clip: auto;
  z-index: 9999;
  outline: 3px solid var(--color-blue);
  outline-offset: 2px;
}


/* ===== 2026 polish: calmer blocks without changing the site identity ===== */
.section {
  padding: 64px 0;
}

.section-title {
  margin-bottom: 36px;
}

.tools-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.tools-title {
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  line-height: 0.95;
  margin-bottom: 14px !important;
}

.tools-subtitle {
  margin-bottom: 0;
}

.workshop-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 960px;
  margin: 24px auto 0;
}

.workshop-tool-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 20px 20px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 247, 0.72);
  border: 2px solid var(--color-green);
  color: var(--color-black);
  box-shadow: 0 8px 18px rgba(77, 179, 115, 0.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.workshop-tool-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(77, 179, 115, 0.16);
  text-decoration: none;
}

.workshop-tool-card.is-orange {
  border-color: var(--color-orange);
}

.workshop-tool-card.is-blue {
  border-color: var(--color-blue);
}

.workshop-tool-card strong {
  display: block;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  line-height: 1.2;
  color: var(--color-black);
}

.workshop-tool-card > span:last-child {
  font-size: .92rem;
  line-height: 1.45;
  opacity: .84;
}

.tool-card-kicker {
  align-self: flex-start;
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(77, 179, 115, 0.10);
  color: var(--color-green);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.workshop-tool-card.is-orange .tool-card-kicker {
  color: var(--color-orange);
  background: rgba(251, 145, 84, 0.10);
}

.workshop-tool-card.is-blue .tool-card-kicker {
  color: var(--color-blue);
  background: rgba(147, 191, 254, 0.14);
}

.schedule-slider-container {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

.schedule-weeks {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 1fr));
  gap: 18px;
  overflow: visible;
  padding: 0;
  align-items: stretch;
}

.week-block {
  width: auto;
  min-width: 0;
  min-height: auto;
  padding: 20px 18px;
  background: rgba(255, 253, 247, 0.68);
  border: 2px solid var(--color-blue);
  border-radius: 18px;
  box-shadow: 0 8px 20px rgba(147, 191, 254, 0.10);
}

.week-title {
  font-size: 1.05rem;
}

.week-dates {
  font-size: .82rem;
}

.week-subtitle {
  font-size: .88rem;
  line-height: 1.35;
  min-height: 2.4em;
}

.week-meeting {
  font-size: .78rem;
  line-height: 1.45;
  padding: 8px 10px;
  border-radius: 12px;
  background: rgba(147, 191, 254, 0.12);
  margin: 0 0 10px;
}

.week-content {
  font-size: .76rem;
}

.week-content li {
  font-size: .76rem;
  line-height: 1.35;
  padding-left: 13px;
}

.week-content li:before {
  content: "•";
  color: var(--color-orange);
}

.slider-arrow {
  display: none;
}

.join-pricing {
  max-width: 900px;
  margin: 52px auto 0;
  padding-top: 38px;
  border-top: 2px solid rgba(147, 191, 254, 0.45);
}

.join-pricing h3 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  color: var(--color-blue);
  text-transform: uppercase;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}

.subscription-squares {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.subscription-square {
  display: flex;
  min-height: 170px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  padding: 20px 18px;
  border-radius: 20px;
  border: 2px solid var(--color-green);
  background: rgba(255, 253, 247, 0.74);
  color: var(--color-black);
  box-shadow: 0 8px 18px rgba(77, 179, 115, 0.10);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.subscription-square:hover {
  transform: translateY(-4px);
  border-color: var(--color-blue);
  box-shadow: 0 14px 28px rgba(77, 179, 115, 0.16);
  text-decoration: none;
}

.subscription-square.trial {
  border-color: var(--color-orange);
}

.square-period {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
}

.subscription-square.trial .square-period {
  color: var(--color-orange);
}

.square-duration,
.square-frequency {
  font-size: .86rem;
  opacity: .72;
  text-align: center;
}

.square-price {
  font-family: var(--font-primary);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.1;
  text-align: center;
}

.square-price span {
  font-size: 1rem;
  color: var(--color-orange);
}

.square-action {
  margin-top: 4px;
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--color-orange);
  color: white;
  font-size: .85rem;
  font-weight: 700;
}

.join-intro {
  background: rgba(255, 253, 247, 0.68);
}

.faq-item {
  background: rgba(255, 253, 247, 0.60);
}

.station-card,
.week-block,
.pricing-card {
  background: rgba(255, 253, 247, 0.62);
}

.station-card:hover,
.week-block:hover {
  background: rgba(255, 253, 247, 0.86);
}

.pricing-list li::before,
.station-expanded li:before {
  content: "•";
}

@media (max-width: 1024px) {
  .schedule-weeks {
    grid-template-columns: repeat(2, minmax(260px, 1fr));
  }

  .workshop-tools-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 46px 0;
  }

  .section-title {
    font-size: 2.6rem;
    margin-bottom: 26px;
  }

  .tools-title {
    font-size: 2rem !important;
  }

  .schedule-weeks {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 4px 4px 14px;
    justify-content: flex-start;
  }

  .week-block {
    flex: 0 0 min(82vw, 330px);
    scroll-snap-align: start;
  }

  .subscription-squares {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .subscription-square {
    min-height: 140px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.15rem;
  }

  .workshop-tool-card {
    min-height: auto;
    padding: 17px;
  }

  .join-pricing h3 {
    font-size: 1.55rem;
  }
}


/* ===== 2026 polish v2: subtle usability and aesthetics ===== */

/* Keep anchors from hiding under sticky header */
#about,
#features,
#schedule,
#join,
#roadmap,
#hosts,
#contacts {
  scroll-margin-top: 96px;
}

/* Cleaner sticky header */
.header {
  border-bottom: 1px solid rgba(56, 54, 50, 0.08);
  box-shadow: 0 2px 14px rgba(56, 54, 50, 0.04);
  backdrop-filter: blur(10px);
}

/* More visible keyboard navigation without changing visual identity */
a:focus-visible,
button:focus-visible,
.faq-toggle:focus-visible,
.station-card:focus-visible,
.flip-card:focus-visible {
  outline: 3px solid rgba(147, 191, 254, 0.9);
  outline-offset: 4px;
  border-radius: 12px;
}

/* Slightly calmer section dividers */
.section + .section {
  border-top: 1px solid rgba(56, 54, 50, 0.05);
}

/* Titles: same style, a little more breathable */
.section-title {
  text-wrap: balance;
}

.section-subtitle {
  text-wrap: balance;
  line-height: 1.55;
}

/* About text as a soft text card, without changing layout */
.about-text {
  padding: 24px 26px;
  border-radius: 22px;
  background: rgba(255, 253, 247, 0.45);
  border: 1px solid rgba(77, 179, 115, 0.12);
}

/* Make "How workshop works" visual not collide with surrounding sections */
.suitcase-animation-wrapper {
  margin-top: 44px;
  margin-bottom: 34px;
}

.cards-hint {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 247, 0.70);
  border: 1px solid rgba(147, 191, 254, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Schedule mobile hint */
.schedule-scroll-hint {
  display: none;
  margin: -18px auto 18px;
  text-align: center;
  color: rgba(56, 54, 50, 0.70);
  font-size: .9rem;
}

/* Pricing helper */
.pricing-helper-text {
  margin: -10px auto 24px;
  max-width: 540px;
  color: rgba(56, 54, 50, 0.72);
  font-size: .95rem;
  line-height: 1.5;
}

/* Soft micro-interactions for repeated cards */
.workshop-tool-card,
.subscription-square,
.week-block,
.station-card,
.faq-item {
  will-change: transform;
}

.faq-item,
.week-block,
.station-card,
.subscription-square,
.workshop-tool-card {
  background-clip: padding-box;
}

/* Better FAQ readability */
.faq-toggle {
  min-height: 64px;
}

.faq-answer p {
  line-height: 1.65;
}

/* Join image less visually heavy */
.join-image {
  border: 1px solid rgba(77, 179, 115, 0.16);
}

/* Roadmap: make expanded cards less cramped */
.station-expanded {
  border-top-color: rgba(77, 179, 115, 0.22);
}

.station-expanded p,
.station-expanded li {
  text-wrap: pretty;
}

/* Host cards: make captions a bit clearer */
.flip-card-front h3 {
  letter-spacing: -0.02em;
}

/* Footer: a little less abrupt */
.footer {
  margin-top: 56px;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

/* Mobile improvements */
@media (max-width: 768px) {
  #about,
  #features,
  #schedule,
  #join,
  #roadmap,
  #hosts,
  #contacts {
    scroll-margin-top: 82px;
  }

  .schedule-scroll-hint {
    display: block;
  }

  .about-text {
    padding: 18px;
  }

  .cards-hint {
    max-width: calc(100vw - 36px);
    margin-left: auto;
    margin-right: auto;
  }

  .join-content-wrapper {
    gap: 28px;
  }

  .join-pricing {
    margin-top: 34px;
    padding-top: 30px;
  }

  .footer {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 0;
  }

  .tools-section-head {
    margin-bottom: 16px;
  }

  .pricing-helper-text {
    font-size: .9rem;
  }

  .subscription-square {
    border-radius: 18px;
  }
}
