/* =============================================
   TRAINIBE — Main Stylesheet
   Pure Vanilla CSS, No Frameworks
   ============================================= */

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

:root {
  --blue: #00A1F4;
  --blue-dark: #0077cc;
  --green: #32CD32;
  --green-dark: #22a82c;
  --orange: #FF5733;
  --orange-dark: #cc3d1f;
  --dark: #0a0e1a;
  --dark-2: #111827;
  --dark-3: #1a2235;
  --dark-4: #242d40;
  --light: #f4f8ff;
  --light-2: #e8f0fe;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.28);
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--green); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* === SECTIONS === */
.section { padding: 96px 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--dark-2); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(0,161,244,.18), rgba(50,205,50,.18));
  border: 1px solid rgba(0,161,244,.35);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0,161,244,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(50,205,50,.35);
  color: var(--white);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,.35);
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}

.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; border-radius: var(--radius); }

/* === GRADIENT TEXT === */
.gradient-text {
  background: linear-gradient(135deg, var(--blue), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === HEADER === */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(10,14,26,.92);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,.4);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.5rem; }
.logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.logo-white .logo-text { color: var(--white); }

.main-nav { margin-left: auto; }
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  color: rgba(255,255,255,.8);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 7px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

.btn-header {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(0,161,244,.3);
}
.btn-header:hover {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  transform: translateY(-1px);
}

.burger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.burger-btn span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* === HERO (firtop) === */
.firtop {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(10,14,26,.88) 0%,
    rgba(0,161,244,.18) 50%,
    rgba(10,14,26,.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 60px;
  max-width: 860px;
}

.hero-badge {
  display: inline-block;
  background: rgba(0,161,244,.18);
  border: 1px solid rgba(0,161,244,.4);
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  line-height: 1.65;
  max-width: 580px;
  margin-bottom: 36px;
}

.hero-sections {
  margin-bottom: 40px;
}
.hero-sections-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}
.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.hero-link-chip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.75);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: var(--transition);
}
.hero-link-chip:hover {
  background: rgba(0,161,244,.2);
  border-color: rgba(0,161,244,.5);
  color: var(--white);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  padding: 20px 28px;
  display: inline-flex;
}
.stat-item {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 24px;
}
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
}
.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.12);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-arrow {
  width: 22px; height: 22px;
  border-right: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(45deg);
  animation: scrollBounce 1.6s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 1; }
  50% { transform: rotate(45deg) translateY(6px); opacity: .5; }
}

/* === ANIMATIONS === */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp .7s ease forwards;
}
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }
.delay-5 { animation-delay: .75s; }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Intersection observer animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* === SLIDER === */
.slider-container {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.slider-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--dark-3);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.slide-img-wrap {
  position: relative;
  height: 420px;
  overflow: hidden;
}
.slide-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.slide:hover .slide-img-wrap img {
  transform: scale(1.04);
}
.slide-badge {
  position: absolute;
  top: 20px; left: 20px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.slide-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}
.slide-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}
.slide-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.slide-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.slide-features li {
  color: rgba(255,255,255,.75);
  font-size: 0.88rem;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  width: 52px; height: 52px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.slider-prev { left: 20px; }
.slider-next { right: 20px; }
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 4px;
}

/* === ABOUT CIRCULAR === */
.about-circular {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.about-center {
  position: relative;
  width: 280px; height: 280px;
  flex-shrink: 0;
}
.about-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--blue);
  box-shadow: 0 0 0 8px rgba(0,161,244,.15), 0 0 60px rgba(0,161,244,.25);
  position: relative;
  z-index: 2;
}
.about-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,161,244,.2);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.about-ring-1 { width: 340px; height: 340px; animation-delay: 0s; }
.about-ring-2 { width: 420px; height: 420px; animation-delay: 1s; }
@keyframes ringPulse {
  0%, 100% { opacity: .5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: .2; transform: translate(-50%,-50%) scale(1.03); }
}

.about-cards-ring {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
.about-card {
  background: var(--dark-3);
  border: 1px solid rgba(0,161,244,.12);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
}
.about-card:hover {
  border-color: rgba(0,161,244,.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,161,244,.15);
}
.about-card-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.about-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.about-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === ACCORDION === */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.accordion-item:hover {
  border-color: rgba(0,161,244,.3);
}

.accordion-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  gap: 16px;
  transition: var(--transition);
}
.accordion-header:hover { color: var(--blue); }
.accordion-header.active { color: var(--blue); }

.accordion-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--blue);
  transition: transform .3s ease;
  flex-shrink: 0;
}
.accordion-header.active .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  padding: 0 28px;
}
.accordion-body.open {
  max-height: 600px;
  padding: 0 28px 24px;
}
.accordion-body p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
  font-size: 0.95rem;
}
.accordion-body ul {
  list-style: disc;
  padding-left: 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 12px;
}
.accordion-body ul li {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.accordion-body strong { color: var(--white); }

/* === TABLE === */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.07);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--dark-3);
}
.schedule-table th {
  background: var(--dark-4);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 20px;
  text-align: left;
  white-space: nowrap;
}
.schedule-table td {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.85);
  font-size: 0.92rem;
  white-space: nowrap;
}
.schedule-table tr:hover td { background: rgba(0,161,244,.06); }

.tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.tag-strength { background: rgba(0,161,244,.2); color: var(--blue); }
.tag-cardio { background: rgba(255,87,51,.2); color: var(--orange); }
.tag-yoga { background: rgba(50,205,50,.2); color: var(--green); }
.tag-pilates { background: rgba(147,51,234,.2); color: #a855f7; }
.tag-functional { background: rgba(245,158,11,.2); color: #f59e0b; }
.tag-recovery { background: rgba(20,184,166,.2); color: #14b8a6; }

.level {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.level-begin { background: rgba(50,205,50,.15); color: var(--green); }
.level-mid { background: rgba(245,158,11,.15); color: #f59e0b; }
.level-adv { background: rgba(255,87,51,.15); color: var(--orange); }
.level-all { background: rgba(0,161,244,.15); color: var(--blue); }

.table-note {
  margin-top: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* === ORIGAMI PRICING === */
.origami-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.origami-card {
  position: relative;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}

.origami-fold-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,161,244,.0) 0%, rgba(0,161,244,.0) 100%);
  transition: background .5s ease;
}

.origami-trial .origami-fold-bg { background: linear-gradient(135deg, rgba(50,205,50,.0), rgba(50,205,50,.0)); }
.origami-starter .origami-fold-bg { background: linear-gradient(135deg, rgba(0,161,244,.0), rgba(0,161,244,.0)); }
.origami-active .origami-fold-bg { background: linear-gradient(135deg, rgba(255,87,51,.0), rgba(255,87,51,.0)); }
.origami-unlimited .origami-fold-bg { background: linear-gradient(135deg, rgba(147,51,234,.0), rgba(147,51,234,.0)); }

.origami-card:hover .origami-trial .origami-fold-bg,
.origami-trial:hover .origami-fold-bg { background: linear-gradient(135deg, rgba(50,205,50,.12), rgba(34,168,44,.18)); }
.origami-starter:hover .origami-fold-bg { background: linear-gradient(135deg, rgba(0,161,244,.12), rgba(0,119,204,.18)); }
.origami-active:hover .origami-fold-bg { background: linear-gradient(135deg, rgba(255,87,51,.12), rgba(204,61,31,.18)); }
.origami-unlimited:hover .origami-fold-bg { background: linear-gradient(135deg, rgba(147,51,234,.12), rgba(109,40,217,.18)); }

.origami-card:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.origami-content {
  position: relative;
  z-index: 2;
  padding: 36px 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.origami-best-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 4px;
  width: fit-content;
}

.origami-icon { font-size: 2rem; }

.origami-price-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--white);
}

.origami-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}
.origami-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.origami-content ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.origami-content ul li {
  font-size: 0.8rem;
  color: rgba(255,255,255,.7);
}

.btn-origami {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}
.btn-origami:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

/* === INSTRUCTIONS / LEVELS === */
.levels-tabs, .tips-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.level-tab, .tips-tab {
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,.12);
  background: transparent;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.level-tab:hover, .tips-tab:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.level-tab.active, .tips-tab.active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.level-content, .tips-content { display: block; }
.level-content.hidden, .tips-content.hidden { display: none; }

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.program-card {
  background: var(--dark);
  border: 1px solid rgba(0,161,244,.15);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  cursor: pointer;
  transition: var(--transition);
}
.program-card:hover {
  border-color: var(--blue);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,161,244,.2);
}
.program-card-icon { font-size: 2.5rem; margin-bottom: 16px; }
.program-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.program-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.program-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}
.program-meta span {
  background: rgba(0,161,244,.12);
  color: var(--blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
}
.btn-program {
  background: none;
  border: 1px solid rgba(0,161,244,.35);
  color: var(--blue);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-program:hover {
  background: var(--blue);
  color: var(--white);
}

/* === GEAR / RECOMMENDATIONS === */
.gear-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.gear-category {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.gear-cat-header {
  background: var(--dark-4);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gear-cat-icon { font-size: 1.5rem; }
.gear-cat-header h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.gear-items {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gear-item {
  padding: 18px 20px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.gear-item:hover { background: rgba(255,255,255,.04); }

.gear-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.gear-item.must .gear-label { color: var(--blue); }
.gear-item.nice .gear-label { color: var(--green); }
.gear-item.extra .gear-label { color: var(--orange); }

.gear-name {
  font-weight: 700;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 6px;
}
.gear-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* === TIPS === */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.tip-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
}
.tip-card:hover {
  border-color: rgba(0,161,244,.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,161,244,.12);
}
.tip-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(0,161,244,.12);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}
.tip-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.3;
  max-width: 80%;
}
.tip-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
}

/* === SUCCESS STORIES / TESTIMONIALS === */
.testimonials-scroll {
  position: relative;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(280px, 1fr));
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.testimonials-track::-webkit-scrollbar { display: none; }

.testimonial-card {
  scroll-snap-align: start;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  border-color: rgba(0,161,244,.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.test-photo-wrap {
  position: relative;
  width: 80px; height: 80px;
  margin-bottom: 16px;
}
.test-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--blue);
}
.test-badge {
  position: absolute;
  bottom: -6px; right: -12px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

.test-stars { color: #fbbf24; font-size: 0.9rem; margin-bottom: 14px; }

.test-quote {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 20px;
  quotes: "«" "»";
}
.test-quote::before { content: open-quote; }
.test-quote::after { content: close-quote; }

.test-author strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.test-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-card-stats {
  background: linear-gradient(135deg, var(--dark-4), rgba(0,161,244,.08));
  border-color: rgba(0,161,244,.2);
}
.stats-card-inner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}
.test-big-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.big-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.big-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
}
.big-stat span:last-child {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.test-nav-btn {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.test-nav-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
}

/* === DIRECTIONS GRID === */
.directions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.direction-card {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.direction-card:hover {
  border-color: rgba(0,161,244,.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,161,244,.2);
}

.dir-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.dir-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.direction-card:hover .dir-img-wrap img {
  transform: scale(1.08);
}
.dir-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,26,.8), transparent);
}

.dir-content {
  padding: 24px;
}
.dir-icon { font-size: 1.8rem; margin-bottom: 10px; }
.dir-content h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.dir-content p {
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.btn-dir-popup {
  width: 100%;
  background: rgba(0,161,244,.12);
  border: 1px solid rgba(0,161,244,.25);
  color: var(--blue);
  padding: 11px;
  border-radius: var(--radius);
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-dir-popup:hover {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-wide { grid-column: span 2; }
.gallery-tall { grid-row: span 2; }

.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,14,26,.85), transparent);
  color: rgba(255,255,255,.85);
  padding: 20px 14px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* === BOOKING === */
.booking-section { background: var(--dark-2); }
.booking-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.booking-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  margin-top: 12px;
}
.booking-info p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.booking-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.booking-feat {
  color: rgba(255,255,255,.8);
  font-size: 0.9rem;
  font-weight: 500;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-item {
  color: var(--text-muted);
  font-size: 0.9rem;
}
.contact-item a { color: var(--blue); }

.booking-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.booking-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--white);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(0,161,244,.08);
}
.form-group input::placeholder,
.form-group select::placeholder { color: var(--text-muted); }
.form-group select option { background: var(--dark-2); color: var(--white); }

.form-privacy {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-privacy a { color: var(--blue); }

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,.8);
  cursor: pointer;
}
.radio-label input[type="radio"] { accent-color: var(--blue); }

/* === MODALS === */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal-box {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn .3s ease;
}
@keyframes modalSlideIn {
  from { opacity: 0; transform: scale(.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: rgba(255,255,255,.08);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  line-height: 1;
}
.modal-close:hover { background: var(--orange); }

.cookie-modal-box { max-width: 500px; width: 100%; }
.program-modal-box { max-width: 600px; width: 100%; }
.dir-modal-box { max-width: 680px; width: 100%; }

.dir-modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.dir-modal-box > div:first-child p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.dir-modal-form {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.dir-modal-form h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.popup-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Cookie Modal */
.cookie-modal-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 24px;
}
.cookie-toggle-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cookie-toggle-row:last-of-type { border-bottom: none; margin-bottom: 20px; }
.cookie-toggle-row strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.92rem; }
.cookie-toggle-row p { font-size: 0.8rem; color: var(--text-muted); }

.toggle-switch {
  flex-shrink: 0;
  position: relative;
  width: 48px; height: 26px;
  cursor: pointer;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.slider-toggle {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.15);
  border-radius: 26px;
  transition: var(--transition);
}
.slider-toggle::before {
  content: "";
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}
.toggle-switch input:checked + .slider-toggle { background: var(--blue); }
.toggle-switch input:checked + .slider-toggle::before { transform: translateX(22px); }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 1900;
  width: calc(100% - 48px);
  max-width: 1000px;
  background: rgba(17,24,39,.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,161,244,.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: opacity .4s ease, transform .4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; }
.cookie-text strong { display: block; color: var(--white); margin-bottom: 4px; font-size: 0.92rem; }
.cookie-text p { font-size: 0.8rem; color: var(--text-muted); }
.cookie-text a { color: var(--blue); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }

.btn-cookie-accept {
  background: var(--blue);
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-accept:hover { background: var(--green); }
.btn-cookie-necessary {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.8);
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.btn-cookie-necessary:hover { background: rgba(255,255,255,.14); }
.btn-cookie-settings {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 9px 12px;
  transition: var(--transition);
}
.btn-cookie-settings:hover { color: var(--white); }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 16px;
  margin-bottom: 20px;
  max-width: 280px;
  line-height: 1.65;
}
.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts div { font-size: 0.88rem; color: var(--text-muted); }
.footer-contacts a { color: var(--blue); }

.footer-nav-group h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255,255,255,.5);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-nav-group ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-group a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-nav-group a:hover { color: var(--blue); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  gap: 16px;
  flex-wrap: wrap;
}
.footer-legal p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer-legal a { color: var(--blue); }
.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,.35);
}

/* === LEGAL PAGES === */
.legal-page {
  padding: 120px 0 80px;
  min-height: 100vh;
}
.legal-page h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-page .legal-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.legal-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-top: 36px;
  margin-bottom: 12px;
}
.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

/* === THANKS PAGE === */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
}
.thanks-card {
  background: var(--dark-2);
  border: 1px solid rgba(0,161,244,.2);
  border-radius: 24px;
  padding: 60px 48px;
  max-width: 560px;
  width: 100%;
}
.thanks-icon { font-size: 4rem; margin-bottom: 24px; }
.thanks-card h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.thanks-card p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .origami-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gear-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cards-ring { grid-template-columns: repeat(2, 1fr); }
  .tips-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .booking-wrap { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-wide { grid-column: span 1; }
  .slide { grid-template-columns: 1fr; }
  .slide-img-wrap { height: 240px; }
  .slide-content { padding: 28px 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .main-nav, .btn-header { display: none; }
  .burger-btn { display: flex; }
  .main-nav.open {
    display: flex;
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: var(--dark);
    z-index: 1100;
    padding: 80px 24px 40px;
  }
  .main-nav.open ul {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
    width: 100%;
  }
  .main-nav.open ul a {
    font-size: 1.3rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 0;
  }
  .stat-item { padding: 8px 14px; }
  .stat-divider { display: none; }
  .origami-grid { grid-template-columns: 1fr; }
  .directions-grid { grid-template-columns: 1fr; }
  .about-cards-ring { grid-template-columns: 1fr; }
  .about-center { width: 200px; height: 200px; }
  .footer-top { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: repeat(4, 280px); }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .tips-grid { grid-template-columns: 1fr; }
  .programs-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.7rem; }
  .booking-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-link-chip { font-size: 0.75rem; }
  .stat-num { font-size: 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-tall { grid-row: span 1; }
  .modal-box { padding: 24px 18px; }
}
