/* ========================================================
   TRAINLI — GLOBAL STYLES
   Primary: #6A057F  Accent: #892CDC  Highlight: #BC4EF8
======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@700;800;900&display=swap');

:root {
  --primary: #6A057F;
  --primary-dark: #4a0458;
  --accent: #892CDC;
  --highlight: #BC4EF8;
  --highlight-light: #d68ff9;
  --text-dark: #0f0218;
  --text-mid: #3b1a4a;
  --text-light: #7a5c8a;
  --white: #ffffff;
  --off-white: #faf7fc;
  --light-bg: #f3eaf8;
  --border-color: #e0cef0;
  --card-bg: #fff;
  --shadow-sm: 0 2px 12px rgba(106, 5, 127, 0.10);
  --shadow-md: 0 6px 28px rgba(106, 5, 127, 0.18);
  --shadow-lg: 0 16px 48px rgba(106, 5, 127, 0.22);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Montserrat', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  outline: none;
}

input, select, textarea {
  font-family: var(--font-body);
  outline: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(137, 44, 220, 0.10);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title span {
  color: var(--accent);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(106, 5, 127, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(106, 5, 127, 0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary);
  padding: 12px 28px;
  border-radius: 100px;
  border: 2px solid var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  color: white;
  padding: 13px 30px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(188, 78, 248, 0.35);
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(188, 78, 248, 0.5);
}

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 90px 0;
}

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

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(106, 5, 127, 0.12);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg { width: 22px; height: 22px; fill: white; }

.logo span { color: var(--highlight); }

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

.nav-links a {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-mid);
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.burger-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

/* ---- Mobile nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav.active {
  display: flex;
  opacity: 1;
  pointer-events: all;
}

.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary);
}

/* ======================================================
   BLOCK 1 — HERO / REPIY
====================================================== */
.repiy {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 60% 40%;
  position: relative;
  overflow: hidden;
}

.repiy-top {
  position: relative;
  overflow: hidden;
}

.repiy-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroZoom 8s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

.repiy-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(106, 5, 127, 0.3) 0%,
    rgba(106, 5, 127, 0.15) 50%,
    rgba(20, 0, 30, 0.7) 100%
  );
}

.repiy-badge {
  position: absolute;
  top: 110px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  padding: 6px 20px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Diagonal divider */
.repiy-diagonal {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  overflow: hidden;
  z-index: 5;
}

.repiy-diagonal svg {
  width: 100%;
  height: 100%;
}

/* Bottom section: two cells */
.repiy-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--off-white);
  position: relative;
  z-index: 10;
}

.repiy-cell {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.repiy-cell:first-child {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
}

.repiy-cell:last-child {
  background: var(--white);
}

.repiy-greeting {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 10px;
}

.repiy-brand-name {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 16px;
}

.repiy-brand-name span { color: var(--highlight-light); }

.repiy-tagline {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 340px;
  line-height: 1.6;
}

/* Mini form */
.repiy-form-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.repiy-form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.mini-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mini-form input {
  padding: 12px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  background: var(--off-white);
  color: var(--text-dark);
  transition: var(--transition);
  width: 100%;
}

.mini-form input:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(137, 44, 220, 0.12);
}

.mini-form input::placeholder { color: var(--text-light); }

/* ======================================================
   BLOCK 2 — SLIDER / CAROUSEL
====================================================== */
.slider-section {
  background: var(--off-white);
  overflow: hidden;
}

.slider-header {
  text-align: center;
  margin-bottom: 48px;
}

.slider-track-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-card {
  min-width: calc(100% / 3);
  padding: 0 12px;
  flex-shrink: 0;
}

.slide-inner {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.slide-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.slide-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.slide-content {
  padding: 24px;
}

.slide-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.slide-text {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.65;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

/* ======================================================
   BLOCK 3 — ACCORDION
====================================================== */
.accordion-section {
  background: white;
}

.accordion-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.accordion-visual {
  position: sticky;
  top: 100px;
}

.accordion-img {
  border-radius: var(--radius-lg);
  object-fit: cover;
  width: 100%;
  height: 500px;
  box-shadow: var(--shadow-lg);
}

.accordion-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: -20px;
  margin-left: 20px;
  position: relative;
  box-shadow: var(--shadow-md);
}

.accordion-items { margin-top: 32px; }

.accordion-item {
  border-bottom: 1.5px solid var(--border-color);
  overflow: hidden;
}

.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: var(--transition);
}

.accordion-trigger:hover .accordion-q { color: var(--accent); }

.accordion-q {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition);
  flex: 1;
  padding-right: 16px;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--accent);
  font-size: 1rem;
}

.accordion-item.open .accordion-icon {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.accordion-item.open .accordion-body {
  max-height: 400px;
}

.accordion-body-inner {
  padding: 0 0 22px 0;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ======================================================
   BLOCK 4 — CIRCULAR ABOUT
====================================================== */
.circular-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #5c1070 100%);
  color: white;
  overflow: hidden;
  position: relative;
}

.circular-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: rgba(188, 78, 248, 0.1);
  border-radius: 50%;
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.circular-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(137, 44, 220, 0.15);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.circular-layout {
  display: grid;
  grid-template-columns: 1fr 400px 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.circular-left, .circular-right {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.circular-stat {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: var(--transition);
}

.circular-stat:hover {
  background: rgba(255,255,255,0.14);
  transform: translateX(4px);
}

.circular-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--highlight-light);
  line-height: 1;
  margin-bottom: 4px;
}

.circular-stat-label {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.5;
}

.circular-right .circular-stat:hover { transform: translateX(-4px); }

.circular-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.circular-photo-ring {
  position: relative;
  width: 320px;
  height: 320px;
}

.circular-photo-ring::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--highlight), transparent);
  animation: rotateBorder 6s linear infinite;
}

@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.circular-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  border: 6px solid rgba(255,255,255,0.2);
}

.circular-brand {
  text-align: center;
}

.circular-brand-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.circular-brand-desc {
  font-size: 0.85rem;
  opacity: 0.8;
  max-width: 260px;
  text-align: center;
  line-height: 1.6;
}

/* ======================================================
   BLOCK 5 — TABLE / SCHEDULE
====================================================== */
.table-section {
  background: var(--off-white);
}

.table-header {
  text-align: center;
  margin-bottom: 48px;
}

.schedule-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.schedule-table thead tr {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.schedule-table thead th {
  padding: 18px 20px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: left;
}

.schedule-table tbody tr {
  background: white;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.schedule-table tbody tr:hover {
  background: var(--light-bg);
}

.schedule-table tbody td {
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.schedule-table tbody td:first-child {
  font-weight: 700;
  color: var(--primary);
}

.level-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.level-begin { background: rgba(188, 78, 248, 0.1); color: var(--accent); }
.level-mid { background: rgba(106, 5, 127, 0.1); color: var(--primary); }
.level-all { background: rgba(137, 44, 220, 0.1); color: var(--accent); }

/* ======================================================
   BLOCK 6 — PRICE CARDS
====================================================== */
.pricing-section {
  background: white;
}

.pricing-header { text-align: center; margin-bottom: 52px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  border-radius: var(--radius-md);
  border: 2px solid var(--border-color);
  background: white;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.price-card:hover {
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--accent) 100%);
  border-color: transparent;
  color: white;
  transform: scale(1.04);
}

.price-card.featured:hover { transform: scale(1.04) translateY(-8px); }

.popular-badge {
  position: absolute;
  top: 16px;
  right: -28px;
  background: var(--highlight);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 32px;
  transform: rotate(35deg);
}

.price-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.price-plan-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.featured .price-plan-name { color: white; }

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin: 10px 0 4px;
}

.featured .price-amount { color: var(--highlight-light); }

.price-period {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.featured .price-period { color: rgba(255,255,255,0.7); }

.price-divider {
  height: 1px;
  background: var(--border-color);
  margin: 16px 0;
}

.featured .price-divider { background: rgba(255,255,255,0.2); }

.price-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  margin-bottom: 24px;
}

.price-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.featured .price-feature { color: rgba(255,255,255,0.9); }

.price-check {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border-radius: 50%;
  background: rgba(137, 44, 220, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--accent);
}

.featured .price-check {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* ======================================================
   BLOCK 7 — CALCULATOR
====================================================== */
.calculator-section {
  background: linear-gradient(135deg, #faf5ff 0%, #f0e6ff 100%);
}

.calculator-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.calculator-text .section-subtitle {
  margin-top: 16px;
  margin-bottom: 32px;
}

.calculator-perks {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.perk-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 500;
}

.perk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  flex-shrink: 0;
}

.calculator-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.calc-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
}

.calc-group {
  margin-bottom: 24px;
}

.calc-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 10px;
}

.calc-label span {
  font-weight: 800;
  color: var(--accent);
  font-size: 1rem;
}

.calc-slider {
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: linear-gradient(to right, var(--accent) 0%, var(--accent) 50%, var(--border-color) 50%);
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--highlight));
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(137, 44, 220, 0.4);
  border: 3px solid white;
  transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

.calc-type-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.calc-type-btn {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-color);
  background: var(--off-white);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.calc-type-btn:hover { border-color: var(--accent); color: var(--accent); }
.calc-type-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.calc-result {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-top: 28px;
  color: white;
  text-align: center;
}

.calc-result-label {
  font-size: 0.8rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.calc-result-price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}

.calc-result-sub {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 6px;
}

/* ======================================================
   BLOCK 8 — SELLING TEXT
====================================================== */
.selling-section {
  background: var(--text-dark);
  position: relative;
  overflow: hidden;
}

.selling-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(106, 5, 127, 0.5) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(137, 44, 220, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.selling-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.selling-quote {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: white;
  line-height: 1.2;
  margin-bottom: 36px;
}

.selling-quote em {
  font-style: normal;
  background: linear-gradient(135deg, var(--highlight), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.selling-body {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 24px;
}

.selling-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 32px 0;
}

.selling-bullet {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ======================================================
   BLOCK 9 — INFOGRAPHIC
====================================================== */
.infographic-section {
  background: var(--off-white);
}

.infographic-header { text-align: center; margin-bottom: 52px; }

.infographic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 52px;
}

.info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
}

.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.info-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--light-bg), rgba(188, 78, 248, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: var(--transition);
}

.info-card:hover .info-icon-wrap {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.info-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.info-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.info-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
}

.info-progress-section {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-color);
}

.info-progress-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 28px;
  text-align: center;
}

.progress-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  min-width: 180px;
}

.progress-bar-wrap {
  flex: 1;
  height: 8px;
  background: var(--light-bg);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--highlight));
  width: 0;
  transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-pct {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
  text-align: right;
}

/* ======================================================
   BLOCK 10 — TESTIMONIALS
====================================================== */
.testimonials-section {
  background: white;
}

.testimonials-header { text-align: center; margin-bottom: 52px; }

.testimonials-track-wrapper {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  min-width: calc(50% - 12px);
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.test-star { color: #f5a623; font-size: 1.1rem; }

.test-quote {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.test-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--highlight);
  line-height: 1;
  opacity: 0.5;
}

.test-person {
  display: flex;
  align-items: center;
  gap: 14px;
}

.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--highlight);
}

.test-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--primary);
}

.test-sub {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}

.test-result {
  margin-top: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
}

.testimonials-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

/* ======================================================
   BLOCK 11 — WORKOUT PLANNER
====================================================== */
.planner-section {
  background: var(--off-white);
}

.planner-header { text-align: center; margin-bottom: 48px; }

.planner-type-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.planner-type-btn {
  padding: 10px 24px;
  border-radius: 100px;
  border: 2px solid var(--border-color);
  background: white;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: var(--transition);
}

.planner-type-btn:hover { border-color: var(--accent); color: var(--accent); }
.planner-type-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-color: transparent;
  color: white;
}

.planner-calendar {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.calendar-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-header-day {
  padding: 14px 8px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.calendar-body {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
  border: 1px solid var(--border-color);
  padding: 14px 10px;
  min-height: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.calendar-day:hover { background: var(--light-bg); }
.calendar-day.active { background: rgba(137, 44, 220, 0.07); }
.calendar-day.rest { background: var(--off-white); }

.cal-day-num {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 8px;
}

.cal-workout {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
  line-height: 1.4;
}

.cal-rest-label {
  font-size: 0.72rem;
  color: var(--text-light);
  font-style: italic;
}

/* ======================================================
   BLOCK 12 — RECIPES
====================================================== */
.recipes-section {
  background: white;
}

.recipes-header { text-align: center; margin-bottom: 52px; }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.recipe-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  background: white;
}

.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.recipe-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.recipe-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recipe-card:hover .recipe-img { transform: scale(1.06); }

.recipe-difficulty {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(4px);
}

.diff-easy { color: #22c55e; }
.diff-mid { color: var(--accent); }
.diff-hard { color: var(--primary); }

.recipe-content {
  padding: 20px 22px 24px;
}

.recipe-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.recipe-desc {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 2, 24, 0.75);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  max-width: 560px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
  transform: translateY(20px) scale(0.97);
  transition: transform 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-box {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border-color);
  background: var(--off-white);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-mid);
}

.modal-close:hover { background: var(--primary); color: white; border-color: var(--primary); }

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.ingredient-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-mid);
}

.ingredient-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.recipe-instructions {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ======================================================
   BLOCK 13 — GALLERY
====================================================== */
.gallery-section {
  background: var(--off-white);
}

.gallery-header { text-align: center; margin-bottom: 48px; }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(106, 5, 127, 0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-label {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

.gallery-item:nth-child(1) { grid-row: span 2; height: 380px; }
.gallery-item:nth-child(2) { height: 180px; }
.gallery-item:nth-child(3) { height: 180px; }
.gallery-item:nth-child(4) { grid-row: span 2; height: 380px; }
.gallery-item:nth-child(5) { height: 180px; }
.gallery-item:nth-child(6) { height: 180px; }
.gallery-item:nth-child(7) { grid-column: span 2; height: 200px; }
.gallery-item:nth-child(8) { height: 200px; }
.gallery-item:nth-child(9) { height: 200px; }
.gallery-item:nth-child(10) { grid-column: span 2; height: 200px; }

/* ======================================================
   BLOCK 14 — DIRECTION CARDS / POPUP
====================================================== */
.directions-section {
  background: white;
}

.directions-header { text-align: center; margin-bottom: 52px; }

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

.direction-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1.5px solid var(--border-color);
  transition: var(--transition);
  background: white;
  display: flex;
  flex-direction: column;
}

.direction-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.direction-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.direction-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.direction-card:hover .direction-img { transform: scale(1.06); }

.direction-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(106, 5, 127, 0.6) 0%, transparent 60%);
}

.direction-content {
  padding: 20px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.direction-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.direction-desc {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

/* Direction popup */
.direction-modal .modal-box { max-width: 640px; }

.direction-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

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

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
}

.form-group input,
.form-group select {
  padding: 12px 14px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(137, 44, 220, 0.1);
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.radio-item input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; }
.radio-item span { font-size: 0.875rem; color: var(--text-mid); }

/* ======================================================
   BOOKING FORM SECTION
====================================================== */
.booking-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent) 100%);
  position: relative;
  overflow: hidden;
}

.booking-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(188, 78, 248, 0.15);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.booking-text { color: white; }

.booking-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.booking-title span { color: var(--highlight-light); }

.booking-desc {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.75;
  margin-bottom: 28px;
}

.booking-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-perk {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  opacity: 0.9;
}

.booking-perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.booking-form-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.booking-form-title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.booking-form-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

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

.main-form input {
  padding: 13px 16px;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
  width: 100%;
}

.main-form input:focus {
  border-color: var(--accent);
  background: white;
  box-shadow: 0 0 0 3px rgba(137, 44, 220, 0.1);
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-consent input[type="checkbox"] { accent-color: var(--accent); margin-top: 2px; }
.form-consent label { font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.form-consent a { color: var(--accent); text-decoration: underline; }

/* ======================================================
   FOOTER
====================================================== */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 14px;
}

.footer-brand-name span { color: var(--highlight); }

.footer-tagline {
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.7);
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
}

.footer-col-title {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-link:hover { color: var(--highlight); transform: translateX(4px); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.footer-contact-icon {
  width: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--highlight);
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal {
  font-size: 0.75rem;
  opacity: 0.5;
  line-height: 1.7;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
  font-size: 0.8rem;
}

.footer-legal-links a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}

.footer-legal-links a:hover { color: var(--highlight); }

/* ======================================================
   COOKIE BANNER
====================================================== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 820px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  z-index: 1500;
  display: none;
  align-items: center;
  gap: 24px;
  border: 1.5px solid var(--border-color);
  animation: slideUp 0.5s ease;
}

.cookie-banner.show {
  display: flex;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.cookie-text a { color: var(--accent); text-decoration: underline; }

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 9px 20px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.cookie-accept:hover { opacity: 0.9; transform: translateY(-1px); }

.cookie-necessary {
  background: var(--off-white);
  color: var(--text-mid);
  border: 1.5px solid var(--border-color);
}

.cookie-necessary:hover { border-color: var(--accent); color: var(--accent); }

.cookie-settings {
  background: transparent;
  color: var(--text-light);
  text-decoration: underline;
}

/* ======================================================
   INNER PAGES
====================================================== */
.inner-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 140px 0 80px;
  text-align: center;
}

.inner-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.inner-hero p {
  opacity: 0.8;
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.inner-content {
  padding: 80px 0;
  max-width: 800px;
  margin: 0 auto;
}

.inner-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin: 40px 0 14px;
}

.inner-content h2:first-child { margin-top: 0; }

.inner-content p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}

.inner-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
}

.inner-content li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 6px;
}

/* Thanks page */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--off-white), var(--light-bg));
  padding: 40px 24px;
}

.thanks-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  text-align: center;
  max-width: 560px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2.5rem;
}

.thanks-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 16px;
}

.thanks-text {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ======================================================
   SCROLL ANIMATIONS
====================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }
.delay-5 { transition-delay: 0.5s !important; }

/* ======================================================
   RESPONSIVE
====================================================== */

@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .burger-btn { display: flex; }

  .repiy { grid-template-rows: 55% 45%; }
  .repiy-bottom { grid-template-columns: 1fr; }
  .repiy-cell { padding: 28px 24px; }
  .repiy-badge { font-size: 0.7rem; }

  .slider-section .slide-card { min-width: 80%; }

  .accordion-layout { grid-template-columns: 1fr; }
  .accordion-visual { position: static; }

  .circular-layout { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .circular-left, .circular-right { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .circular-stat { flex: 1; min-width: 140px; }
  .circular-center { order: -1; }

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

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

  .directions-grid { grid-template-columns: repeat(2, 1fr); }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .gallery-item { height: 200px !important; grid-row: auto !important; grid-column: auto !important; }

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

  .info-progress-section { padding: 24px; }
  .progress-label { min-width: 120px; }

  .calendar-day { min-height: 70px; padding: 8px 6px; }
  .cal-workout { font-size: 0.65rem; }

  .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 16px; width: calc(100% - 32px); }
  .cookie-buttons { width: 100%; justify-content: flex-start; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .section-pad { padding: 60px 0; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
  .price-card.featured:hover { transform: translateY(-8px); }

  .directions-grid { grid-template-columns: 1fr; }
  .recipes-grid { grid-template-columns: 1fr; }

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

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }

  .testimonial-card { min-width: 90%; }

  .repiy-brand-name { font-size: 2rem; }

  .booking-form-box { padding: 24px; }

  .circular-photo-ring { width: 240px; height: 240px; }
}
