/* =====================
   ANIMATIONS
   ===================== */
.anim-hidden {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.anim-visible {
  opacity: 1;
  transform: translateY(0);
}

/* About photo slides in from left */
.about-photo.anim-hidden {
  transform: translateX(-40px);
}
.about-photo.anim-visible {
  transform: translateX(0);
}

/* Trainerize visual slides from right */
.tz-visual.anim-hidden {
  transform: translateX(48px);
}
.tz-visual.anim-visible {
  transform: translateX(0);
}

/* Community screens slide from left */
.community-screens.anim-hidden {
  transform: translateX(-48px);
}
.community-screens.anim-visible {
  transform: translateX(0);
}

/* Contact right slides in from right */
.contact-right.anim-hidden {
  transform: translateX(40px);
}
.contact-right.anim-visible {
  transform: translateX(0);
}

/* Nav link underline hover */
.nav-links a:not(.nav-cta) {
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #AA7452;
  transition: width 0.25s ease;
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

/* Pricing card hover lift */
.pc-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pc-card:hover {
  transform: translateY(-4px);
}

/* Channel button hover arrow */
.channel-arrow {
  transition: transform 0.2s ease;
}
.contact-channel:hover .channel-arrow {
  transform: translateX(5px);
}

/* =====================
   RESET & BASE
   ===================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 68px;
}

body {
  font-family: 'Georgia', serif;
  background-color: #2D383E;
  color: #F4F0EE;
  line-height: 1.7;
}

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

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =====================
   BUTTONS
   ===================== */
.btn {
  display: inline-block;
  background-color: #AA7452;
  color: #F4F0EE;
  padding: 14px 36px;
  font-size: 1rem;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  background-color: #8f7f6d;
}

/* =====================
   NAVIGATION
   ===================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 40px;
  height: 68px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background-color: #2D383E;
  border-bottom-color: rgba(170,116,82,0.15);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.nav-logo {
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  color: #F4F0EE;
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: rgba(244,240,238,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a:hover {
  color: #F4F0EE;
}

.nav-links .nav-cta {
  border: 1px solid rgba(170,116,82,0.7);
  color: #F4F0EE;
  padding: 8px 20px;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.nav-links .nav-cta:hover {
  background-color: #AA7452;
  border-color: #AA7452;
}

/* ─── Language switcher ─── */
.lang-switcher {
  display: flex;
  gap: 4px;
  align-items: center;
  /* Desktop: sits after nav-links at the far right */
  order: 3;
  margin-left: 20px;
}

.nav-links {
  /* push nav-links to the right on desktop */
  margin-left: auto;
  order: 2;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(244, 240, 238, 0.5);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: inherit;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.lang-btn:hover {
  color: #F4F0EE;
  background: rgba(244, 240, 238, 0.08);
}

.lang-btn.active {
  background: #AA7452;
  color: #fff;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 32px;
  height: 32px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: #F4F0EE;
  width: 100%;
}

/* =====================
   HERO
   ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #2D383E;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45,56,62,0.25) 0%,
    rgba(45,56,62,0.55) 50%,
    rgba(45,56,62,0.82) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 56px;
  max-width: 1200px;
  width: 100%;
}

.hero-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244,240,238,0.65);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-dash {
  color: #AA7452;
  letter-spacing: 0.05em;
}

.hero-name {
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F4F0EE;
  line-height: 0.95;
  margin-bottom: 40px;
}

.hero-name em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
  display: block;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
}

.hero-btn-primary {
  background-color: #AA7452;
  color: #F4F0EE;
  padding: 15px 36px;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.hero-btn-primary:hover {
  background-color: #8f7f6d;
}

.hero-btn-secondary {
  color: rgba(244,240,238,0.7);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-btn-secondary:hover {
  color: #F4F0EE;
}

/* Stats bar */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  border-top: 1px solid rgba(170,116,82,0.2);
  background-color: rgba(45,56,62,0.5);
}

.hero-stat {
  flex: 1;
  padding: 20px 56px;
  border-right: 1px solid rgba(170,116,82,0.2);
}

.hero-stat:last-child {
  border-right: none;
}

.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #F4F0EE;
  letter-spacing: 0.04em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244,240,238,0.5);
  margin-top: 2px;
}

/* =====================
   ABOUT
   ===================== */
.about {
  display: grid;
  grid-template-columns: 55% 1fr;
  min-height: 90vh;
  background-color: #D4C9C7;
}

.about-photo {
  overflow: hidden;
  background-color: #969A9E;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  background-color: #D4C9C7;
}

.about-label {
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 28px;
  display: block;
}

.about-heading {
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  color: #2D383E;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.about-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

.about-divider {
  width: 40px;
  height: 2px;
  background-color: #AA7452;
  margin-bottom: 28px;
}

.about-content p {
  color: #2D383E;
  font-size: 1rem;
  margin-bottom: 16px;
  max-width: 420px;
  line-height: 1.75;
}

.btn-outline {
  display: inline-block;
  margin-top: 16px;
  padding: 14px 32px;
  border: 1px solid #2D383E;
  color: #2D383E;
  font-family: inherit;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  align-self: flex-start;
}

.btn-outline:hover {
  background-color: #2D383E;
  color: #F4F0EE;
}

/* =====================
   TESTIMONIALS / CAROUSEL
   ===================== */
.testimonials {
  background-color: #D4C9C7;
  padding: 96px 0;
  overflow: hidden;
}

.testimonials-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.testimonials-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #2D383E;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.testimonials-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

/* Carousel */
.carousel-wrap {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 52px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 100%;
}

.carousel-slide {
  flex: 0 0 calc((100% - 130px) / 3);
  margin-right: 20px;
  display: flex;
  flex-direction: column;
}

.slide-photo {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: #969A9E;
  position: relative;
}

.slide-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Before / After layout */
.slide-beforeafter {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.slide-beforeafter img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.slide-text {
  background-color: #2D383E;
  padding: 28px 32px;
  text-align: center;
}

.slide-quote {
  font-style: italic;
  color: #F4F0EE;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.slide-name {
  color: #AA7452;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  background-color: rgba(45,56,62,0.80);
  color: #F4F0EE;
  border: 1px solid rgba(170,116,82,0.4);
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.carousel-btn:hover {
  background-color: #AA7452;
  border-color: #AA7452;
}

.carousel-btn.prev { left: -56px; }
.carousel-btn.next { right: -56px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(45,56,62,0.3);
  border: none;
  cursor: pointer;
  padding: 0;
}

.carousel-dot.active {
  background-color: #2D383E;
}

/* =====================
   COMMUNITY
   ===================== */
.community {
  background-color: #2D383E;
  padding: 96px 0;
  overflow: hidden;
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Screenshots */
.community-screens {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.cs-card {
  position: absolute;
  overflow: hidden;
  background-color: #051822;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.cs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-card--1 {
  width: 46%;
  aspect-ratio: 9/16;
  top: 0;
  left: 0;
  z-index: 3;
}

.cs-card--2 {
  width: 52%;
  aspect-ratio: 9/16;
  top: 48px;
  right: 0;
  z-index: 2;
}

.cs-card--3 {
  width: 44%;
  aspect-ratio: 4/5;
  bottom: 0;
  left: 22%;
  z-index: 4;
  box-shadow: 0 24px 72px rgba(0,0,0,0.5);
}

/* Text side */
.community-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.community-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #F4F0EE;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.community-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

.community-desc {
  color: rgba(244,240,238,0.65);
  font-size: 0.97rem;
  line-height: 1.78;
  margin-bottom: 16px;
  max-width: 460px;
}

.community-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 36px;
}

.ctag {
  background-color: rgba(170,116,82,0.15);
  border: 1px solid rgba(170,116,82,0.3);
  color: #D4C9C7;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
}

.btn-outline--light {
  border-color: rgba(244,240,238,0.35);
  color: #F4F0EE;
}

.btn-outline--light:hover {
  background-color: #AA7452;
  border-color: #AA7452;
  color: #F4F0EE;
}

/* =====================
   WHY / TIMELINE
   ===================== */
.why {
  background-color: #D4C9C7;
  padding: 96px 0;
}

.why-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.why-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #2D383E;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 72px;
}

.why-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

/* Timeline */
.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Vertical center line */
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: rgba(45,56,62,0.2);
  transform: translateX(-50%);
}

.tl-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}

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

.tl-content {
  padding: 0 40px;
}

.tl-left .tl-content {
  text-align: right;
  padding-right: 40px;
  padding-left: 0;
}

.tl-right .tl-content {
  text-align: left;
  padding-left: 40px;
  padding-right: 0;
}

.tl-spacer {
  /* empty column on the opposite side */
}

.tl-node {
  display: flex;
  justify-content: center;
  padding-top: 6px;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #AA7452;
  border: 2px solid #D4C9C7;
  outline: 1px solid #AA7452;
}

.tl-num {
  display: block;
  font-size: 0.75rem;
  color: #AA7452;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.tl-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #2D383E;
  letter-spacing: 0.01em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.tl-desc {
  font-size: 0.93rem;
  color: rgba(45,56,62,0.72);
  line-height: 1.75;
}

/* =====================
   TRAINERIZE
   ===================== */
.trainerize {
  background-color: #D4C9C7;
  padding: 96px 0;
  overflow: hidden;
}

.tz-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.tz-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.tz-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #2D383E;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.tz-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

.tz-desc {
  font-size: 1rem;
  color: rgba(45,56,62,0.75);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 480px;
}

.tz-desc strong {
  color: #2D383E;
  font-weight: 700;
}

.tz-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tz-feature {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.tz-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.tz-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #2D383E;
  margin-bottom: 4px;
  letter-spacing: 0.02em;
}

.tz-feature p {
  font-size: 0.88rem;
  color: rgba(45,56,62,0.65);
  line-height: 1.6;
}

/* Phone mockups */
.tz-visual {
  position: relative;
  height: 500px;
}

.tz-phone {
  position: absolute;
  width: 220px;
  background-color: #2D383E;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(5,24,34,0.25);
}

.tz-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tz-phone--back {
  width: 200px;
  aspect-ratio: 9/19;
  top: 20px;
  right: 20px;
  opacity: 0.7;
}

.tz-phone--front {
  width: 220px;
  aspect-ratio: 9/19;
  bottom: 0;
  left: 30px;
  z-index: 2;
}

/* =====================
   PRICING
   ===================== */
.pricing {
  background-color: #2D383E;
  padding: 96px 0;
}

.pricing-block {
  margin-bottom: 88px;
}

.pricing-block:last-child {
  margin-bottom: 0;
}

.pricing-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.pricing-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #F4F0EE;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 48px;
}

.pricing-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

/* Cards grid */
.pc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.pc-card {
  background-color: #051822;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}

.pc-card.pc-featured {
  background-color: #AA7452;
}

.pc-num {
  font-size: 0.78rem;
  color: rgba(244,240,238,0.4);
  letter-spacing: 0.1em;
  font-family: 'Georgia', serif;
}

.pc-featured .pc-num {
  color: rgba(244,240,238,0.6);
}

.pc-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #F4F0EE;
  letter-spacing: 0.02em;
  margin-top: 4px;
}

.pc-desc {
  font-size: 0.88rem;
  color: rgba(244,240,238,0.6);
  line-height: 1.6;
  flex: 1;
}

.pc-featured .pc-desc {
  color: rgba(244,240,238,0.75);
}

.pc-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #F4F0EE;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(244,240,238,0.15);
}

.pc-per {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(244,240,238,0.6);
}

.pc-save {
  display: inline-block;
  margin-top: 4px;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: #AA7452;
  font-weight: 700;
  text-transform: uppercase;
}

.pc-featured .pc-save {
  color: #F4F0EE;
  opacity: 0.9;
}

/* Features list */
.features-list {
  list-style: none;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 40px;
}

.features-list li {
  color: #F4F0EE;
  font-size: 0.97rem;
  padding-left: 24px;
  position: relative;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #AA7452;
  font-weight: 700;
}

/* =====================
   CONTACT
   ===================== */
.contact {
  background-color: #2D383E;
  padding: 96px 0;
  border-top: 1px solid rgba(170,116,82,0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.contact-heading {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  color: #F4F0EE;
  line-height: 1.05;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.contact-heading em {
  font-style: italic;
  color: #AA7452;
  font-weight: 400;
}

.contact-sub {
  color: rgba(244,240,238,0.55);
  font-size: 1rem;
  margin-bottom: 36px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(244,240,238,0.06);
  border: 1px solid rgba(170,116,82,0.3);
  color: #F4F0EE;
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(244,240,238,0.35);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #AA7452;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  align-self: flex-start;
  margin-top: 6px;
}

/* Right side — direct contact */
.contact-right {
  padding-top: 8px;
}

.contact-or {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244,240,238,0.35);
  margin-bottom: 24px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(170,116,82,0.25);
  color: #F4F0EE;
  margin-bottom: 14px;
}

.contact-channel:last-child {
  margin-bottom: 0;
}

.contact-channel:hover {
  border-color: #AA7452;
  background-color: rgba(170,116,82,0.08);
}

.channel-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.channel-icon svg {
  width: 20px;
  height: 20px;
}

.wa .channel-icon {
  background-color: #25D366;
  color: #fff;
}

.tg .channel-icon {
  background-color: #229ED9;
  color: #fff;
}

.channel-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 2px;
}

.channel-name {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.channel-num {
  font-size: 0.82rem;
  color: rgba(244,240,238,0.5);
  letter-spacing: 0.04em;
}

.channel-arrow {
  color: #AA7452;
  font-size: 1.1rem;
}

/* =====================
   FOOTER
   ===================== */
.footer {
  background-color: #051822;
  color: rgba(244,240,238,0.45);
  text-align: center;
  padding: 24px;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 680px) {
  .why {
    padding: 64px 0;
  }

  .timeline::before {
    left: 16px;
  }

  .tl-item {
    grid-template-columns: 40px 1fr;
    grid-template-rows: auto;
    margin-bottom: 40px;
  }

  .tl-left,
  .tl-right {
    grid-template-columns: 40px 1fr;
  }

  .tl-left .tl-content,
  .tl-right .tl-content {
    text-align: left;
    padding-left: 24px;
    padding-right: 0;
    grid-column: 2;
    grid-row: 1;
  }

  .tl-left .tl-node,
  .tl-right .tl-node {
    grid-column: 1;
    grid-row: 1;
  }

  .tl-left .tl-spacer,
  .tl-right .tl-spacer {
    display: none;
  }
}

@media (max-width: 900px) {
  .tz-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tz-visual {
    height: 300px;
    max-width: 320px;
    margin: 0 auto;
    overflow: visible;
  }

  .tz-phone--back {
    width: 140px;
    top: 14px;
    right: 14px;
  }

  .tz-phone--front {
    width: 155px;
    bottom: 0;
    left: 20px;
  }

  .community-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .community-screens {
    height: 380px;
  }

  .why {
    padding: 64px 0;
  }

  .about {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-photo {
    height: 480px;
  }

  .about-content {
    padding: 56px 32px;
  }

  .pc-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }
}

@media (max-width: 680px) {
  .testimonials {
    padding: 64px 0;
  }

  .pricing {
    padding: 64px 0;
  }

  .contact {
    padding: 64px 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

  .carousel-wrap {
    padding: 0 16px 52px;
  }

  .carousel-slide {
    flex: 0 0 85%;
  }

  .carousel-btn.prev {
    left: -4px;
  }

  .carousel-btn.next {
    right: -4px;
  }

  /* Mobile nav */
  .nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background-color: #2D383E;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid rgba(170,116,82,0.2);
    padding: 8px 0 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 24px;
  }

  .nav-links .nav-cta {
    margin: 8px 24px 0;
    padding: 12px 24px;
    text-align: center;
    border: 1px solid rgba(170,116,82,0.5);
  }

  .lang-switcher {
    /* Mobile: in the nav bar, between logo and hamburger */
    order: 2;
    margin-left: auto;
    margin-right: 12px;
  }

  .nav-toggle {
    order: 3;
    margin-left: 0;
  }

  .nav-links {
    order: 4;
    margin-left: 0;
  }

  /* Mobile hero */
  .hero-content {
    padding: 0 24px 40px;
  }

  .hero-stats {
    flex-direction: column;
  }

  .hero-stat {
    padding: 14px 24px;
    border-right: none;
    border-bottom: 1px solid rgba(170,116,82,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .hero-stat:last-child {
    border-bottom: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

@media (min-width: 681px) {
  .nav-toggle {
    display: none;
  }
}

/* =====================
   DOTAZNÍK — sekce
   ===================== */
.dq-section {
  padding: 100px 0;
  background-color: #1A2328;
}

.dq-section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.dq-section-text {
  flex: 1;
}

.dq-section-label {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #AA7452;
  margin-bottom: 20px;
}

.dq-section-heading {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #F4F0EE;
  margin-bottom: 24px;
}

.dq-section-heading em {
  font-style: italic;
  color: #AA7452;
}

.dq-section-desc {
  font-size: 1rem;
  line-height: 1.75;
  color: #A8B4B8;
  max-width: 480px;
}

.dq-section-action {
  flex-shrink: 0;
}

.dq-open-btn {
  white-space: nowrap;
}

/* =====================
   DOTAZNÍK — overlay / popup
   ===================== */
.dq-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 18, 22, 0.75);
  z-index: 9000;
  align-items: flex-start;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  overflow-y: auto;
}

.dq-overlay.dq-open {
  display: flex;
}

.dq-modal {
  background: #faf7f2;
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  margin: auto;
  padding: 0 0 32px;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.dq-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(61,46,30,0.1);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  cursor: pointer;
  color: #8a7460;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 1;
}

.dq-modal-close:hover {
  background: rgba(61,46,30,0.2);
}

.dq-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 28px 12px;
}

.dq-modal-logo {
  font-family: 'Georgia', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #8B6F4E;
}

.dq-modal-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dq-lang-switcher {
  display: flex;
  gap: 4px;
}

.dq-lang-btn {
  background: #ede7db;
  border: 1.5px solid #ddd5c4;
  border-radius: 8px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  color: #8a7460;
  transition: all 0.2s;
  font-family: inherit;
}

.dq-lang-btn.active {
  background: #8B6F4E;
  border-color: #8B6F4E;
  color: #fff;
}

.dq-step-counter {
  font-size: 11px;
  color: #b5a08a;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: #ede7db;
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid #ddd5c4;
}

.dq-progress-bar {
  height: 3px;
  background: #ddd5c4;
  margin: 0 28px;
}

.dq-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #8B6F4E, #C4A882);
  border-radius: 99px;
  transition: width 0.45s ease;
}

.dq-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 14px 28px 4px;
}

.dq-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff9f2;
  border: 1.5px solid #ddd5c4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #b5a08a;
  transition: all 0.3s;
  user-select: none;
}

.dq-dot--active {
  border: 2px solid #A0845C;
  box-shadow: 0 0 0 4px rgba(139,111,78,0.12);
}

.dq-dot--done {
  background: #8B6F4E;
  border-color: #8B6F4E;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

/* Card */
.dq-card {
  margin: 12px 28px 0;
  background: #faf7f2;
  border: 1px solid #ddd5c4;
  border-radius: 16px;
  padding: 26px 28px;
  box-shadow: 0 4px 20px rgba(139,111,78,0.08);
  transition: opacity 0.16s, transform 0.16s;
}

.dq-step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ddd5c4;
}

.dq-step-icon { font-size: 24px; }

.dq-step-title {
  font-family: 'Georgia', serif;
  font-size: 20px;
  font-weight: 700;
  color: #8B6F4E;
}

.dq-fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.dq-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dq-field-label {
  font-size: 10px;
  font-weight: 800;
  color: #8a7460;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dq-card input,
.dq-card textarea,
.dq-card select {
  background: #fff9f2;
  border: 1.5px solid #ddd5c4;
  border-radius: 10px;
  padding: 11px 14px;
  color: #3d2e1e;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.dq-card input::placeholder,
.dq-card textarea::placeholder { color: #b5a08a; }

.dq-card input:focus,
.dq-card textarea:focus,
.dq-card select:focus {
  border-color: #A0845C;
  box-shadow: 0 0 0 3px rgba(139,111,78,0.12);
}

.dq-card textarea {
  resize: vertical;
  min-height: 80px;
}

.dq-card select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%238B6F4E' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.dq-radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.dq-chip {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid #ddd5c4;
  background: #fff9f2;
  color: #8a7460;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
}

.dq-chip--active {
  background: #8B6F4E;
  border-color: #8B6F4E;
  color: #fff;
  box-shadow: 0 2px 10px rgba(139,111,78,0.3);
}

.dq-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.dq-check-chip {
  display: inline-block;
  padding: 7px 13px;
  border-radius: 8px;
  border: 1.5px solid #ddd5c4;
  background: #fff9f2;
  color: #8a7460;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  line-height: 1.35;
}

.dq-check-chip--active {
  background: rgba(139,111,78,0.1);
  border-color: #A0845C;
  color: #8B6F4E;
}

/* Nav buttons */
.dq-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid #ddd5c4;
}

.dq-btn-back {
  background: transparent;
  border: 1.5px solid #ddd5c4;
  border-radius: 10px;
  padding: 10px 20px;
  color: #8a7460;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.dq-btn-back:hover {
  border-color: #A0845C;
  color: #8B6F4E;
}

.dq-btn-next {
  background: linear-gradient(135deg, #8B6F4E, #A0845C);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(139,111,78,0.35);
  transition: all 0.2s;
}

.dq-btn-next:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(139,111,78,0.45);
}

.dq-btn-send {
  background: linear-gradient(135deg, #3a7a52, #4caf70);
  border: none;
  border-radius: 10px;
  padding: 12px 28px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 4px 16px rgba(76,175,112,0.35);
  transition: all 0.2s;
}

.dq-btn-send:hover { transform: translateY(-2px); }
.dq-btn-send:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success screen */
.dq-success {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 28px;
  gap: 12px;
}

.dq-done-icon { font-size: 52px; }

.dq-done-title {
  font-family: 'Georgia', serif;
  font-size: 26px;
  font-weight: 700;
  color: #8B6F4E;
}

.dq-done-sub {
  font-size: 14px;
  color: #8a7460;
  line-height: 1.7;
  max-width: 320px;
}

.dq-btn-close-done {
  margin-top: 12px;
  background: #ede7db;
  border: 1.5px solid #ddd5c4;
  border-radius: 10px;
  padding: 11px 28px;
  color: #8a7460;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.dq-btn-close-done:hover {
  border-color: #A0845C;
  color: #8B6F4E;
}

@media (max-width: 768px) {
  .dq-section-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .dq-modal {
    padding-bottom: 24px;
  }
  .dq-card {
    margin: 12px 16px 0;
    padding: 20px 16px;
  }
  .dq-modal-header {
    padding: 18px 16px 10px;
  }
  .dq-progress-bar {
    margin: 0 16px;
  }
  .dq-dots {
    padding: 12px 16px 4px;
  }
}
