@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

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

:root {
  --green: #32CD32;
  --green-dark: #28a428;
  --green-light: #e8f8e8;
  --green-soft: #a8e6a8;
  --orange: #FF4F00;
  --orange-dark: #d94300;
  --orange-light: #fff0e8;
  --blue: #2271B3;
  --blue-dark: #1a5a8f;
  --blue-light: #e8f2fa;
  --white: #ffffff;
  --off-white: #fafcfa;
  --cream: #f5f7f2;
  --light-gray: #eef0ec;
  --gray: #b0b5ac;
  --dark-gray: #6b7068;
  --text: #2c2f2a;
  --text-secondary: #555952;
  --text-light: #888c85;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 12px 60px rgba(0,0,0,0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background-color: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  font-weight: 600;
}

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

a:hover {
  color: var(--orange);
}

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

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

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

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

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

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

.nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  letter-spacing: 0.02em;
}

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

.nav a:hover {
  color: var(--green-dark);
}

.nav a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--green);
  color: white !important;
  padding: 10px 24px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: all var(--transition) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(50,205,50,0.3);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.active span:nth-child(2) {
  opacity: 0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ========== reios ========== */
.reios {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}

.reios-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.reios-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reios-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.35) 50%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
}

.reios-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 40px 24px;
}

.reios-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(50,205,50,0.2);
  border: 1px solid rgba(50,205,50,0.4);
  border-radius: 50px;
  color: var(--green-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.reios h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.reios h1 em {
  font-style: italic;
  color: var(--green);
}

.reios p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.reios-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--green);
  color: white;
}

.btn-primary:hover {
  background: var(--green-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50,205,50,0.35);
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-orange {
  background: var(--orange);
  color: white;
}

.btn-orange:hover {
  background: var(--orange-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,79,0,0.35);
}

.btn-blue {
  background: var(--blue);
  color: white;
}

.btn-blue:hover {
  background: var(--blue-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,113,179,0.35);
}

.reios-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  text-align: center;
  animation: float 3s ease-in-out infinite;
}

.reios-scroll svg {
  display: block;
  margin: 8px auto 0;
  width: 24px;
  height: 24px;
}

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

/* ========== SECTION STYLES ========== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--cream);
}

.section-dark {
  background: var(--text);
  color: white;
}

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

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.6rem;
  color: var(--text);
  margin-bottom: 16px;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: rgba(255,255,255,0.7);
}

/* ========== BLOCK 1-3: Image + Text Blocks ========== */
.content-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.content-block.reverse {
  direction: rtl;
}

.content-block.reverse > * {
  direction: ltr;
}

.content-block-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.content-block-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.content-block-image:hover img {
  transform: scale(1.03);
}

.content-block-image::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,0,0,0.1));
  pointer-events: none;
}

.content-block-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--green);
  color: white;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.content-block-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--text);
}

.content-block-text h2 em {
  font-style: italic;
  color: var(--green);
}

.content-block-text p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.content-block-text ul {
  list-style: none;
  margin: 20px 0;
}

.content-block-text ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.content-block-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

.content-block-stat {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* ========== SLIDER ========== */
.slider-section {
  background: var(--text);
  padding: 100px 0;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.slide {
  min-width: 100%;
  position: relative;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.slide-caption h3 {
  font-size: 1.6rem;
  color: white;
  margin-bottom: 8px;
}

.slide-caption p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

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

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

.slider-btn:hover {
  background: var(--green);
  border-color: var(--green);
}

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

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.slider-dot.active {
  background: var(--green);
  width: 30px;
  border-radius: 5px;
}

/* ========== ACCORDION ========== */
.accordion-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
}

.accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  background: white;
  border: none;
  width: 100%;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.accordion-header:hover {
  color: var(--green-dark);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--green);
  transition: transform var(--transition);
}

.accordion-item.active .accordion-icon {
  background: var(--green);
}

.accordion-item.active .accordion-icon svg {
  stroke: white;
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-body-inner {
  padding: 0 24px 24px;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ========== TABLE ========== */
.schedule-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.schedule-table thead th {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: white;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  text-align: left;
  letter-spacing: 0.03em;
}

.schedule-table tbody tr {
  transition: all var(--transition);
}

.schedule-table tbody tr:nth-child(even) {
  background: var(--cream);
}

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

.schedule-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--light-gray);
}

.schedule-table td:first-child {
  font-weight: 600;
  color: var(--text);
}

.table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.table-badge-green {
  background: var(--green-light);
  color: var(--green-dark);
}

.table-badge-orange {
  background: var(--orange-light);
  color: var(--orange-dark);
}

.table-badge-blue {
  background: var(--blue-light);
  color: var(--blue-dark);
}

/* ========== PRICE CARDS ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--light-gray);
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.price-card.featured {
  border: 2px solid var(--green);
  transform: scale(1.05);
}

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

.price-card-label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--green);
  color: white;
  padding: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-card.featured {
  padding-top: 70px;
}

.price-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: var(--green-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--green);
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.price-card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.price-amount span {
  font-size: 1rem;
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

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

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 30px;
}

.price-features li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.price-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ========== TEXT-ONLY BLOCK ========== */
.text-block {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--cream) 100%);
  border-radius: var(--radius-xl);
  padding: 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.text-block::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 30px;
  font-size: 12rem;
  font-family: 'Playfair Display', serif;
  color: var(--green);
  opacity: 0.1;
  line-height: 1;
}

.text-block h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--text);
}

.text-block p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.9;
}

.text-block-highlight {
  background: white;
  border-left: 4px solid var(--green);
  padding: 20px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 28px 0;
  font-style: italic;
  color: var(--text);
}

/* ========== BENEFITS DIAGRAM ========== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 36px 24px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--light-gray);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.benefit-card:hover::after {
  transform: scaleX(1);
}

.benefit-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.benefit-icon-green {
  background: var(--green-light);
  color: var(--green);
}

.benefit-icon-orange {
  background: var(--orange-light);
  color: var(--orange);
}

.benefit-icon-blue {
  background: var(--blue-light);
  color: var(--blue);
}

.benefit-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== GALLERY (Grayscale → Color) ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 16px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  transition: all var(--transition);
}

.gallery-item:hover::after {
  background: transparent;
}

.gallery-item:nth-child(1) { grid-row: span 2; }
.gallery-item:nth-child(5) { grid-column: span 2; }
.gallery-item:nth-child(7) { grid-row: span 2; }

/* ========== VERTICAL PHOTOS BLOCK ========== */
.vertical-block {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.vertical-item {
  position: relative;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--light-gray);
}

.vertical-item:last-child {
  border-right: none;
}

.vertical-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.vertical-item:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

.vertical-item h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.vertical-item p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.vertical-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--green);
  opacity: 0.3;
  z-index: 1;
}

/* ========== REVIEWS ========== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 1rem;
}

.review-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ========== FORM ========== */
.form-section {
  background: linear-gradient(135deg, var(--text) 0%, #1a1d19 100%);
  padding: 100px 0;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.form-info h2 {
  font-size: 2.4rem;
  color: white;
  margin-bottom: 20px;
}

.form-info h2 em {
  font-style: italic;
  color: var(--green);
}

.form-info p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.form-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.form-contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(50,205,50,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.form-contact-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
}

.form-contact-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.subscription-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(10px);
}

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

.form-group label {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: all var(--transition);
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.3);
}

.form-group input:focus {
  outline: none;
  border-color: var(--green);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 3px rgba(50,205,50,0.15);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.form-checkbox label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.form-checkbox label a {
  color: var(--green);
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.form-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(50,205,50,0.3);
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.5);
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--green);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  padding: 5px 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

.footer-links a {
  color: rgba(255,255,255,0.4);
  margin-left: 24px;
}

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

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.cookie-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.cookie-text a {
  color: var(--green);
}

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.cookie-btn-accept {
  background: var(--green);
  color: white;
}

.cookie-btn-accept:hover {
  background: var(--green-dark);
}

.cookie-btn-necessary {
  background: var(--light-gray);
  color: var(--text);
}

.cookie-btn-necessary:hover {
  background: var(--gray);
  color: white;
}

.cookie-btn-settings {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--gray);
}

.cookie-btn-settings:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
}

.cookie-modal.visible {
  display: flex;
}

.cookie-modal-content {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 520px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-content h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.cookie-category {
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

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

.cookie-category-header span {
  font-weight: 600;
  font-size: 0.95rem;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray);
  border-radius: 24px;
  cursor: pointer;
  transition: all var(--transition);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--green);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-top: 6px;
}

.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

/* ========== BACK TO TOP ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(50,205,50,0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-3px);
}

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

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

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

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

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

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

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ========== LEGAL PAGES ========== */
.legal-page {
  padding: 120px 0 80px;
}

.legal-page h1 {
  font-size: 2.4rem;
  margin-bottom: 30px;
  color: var(--text);
}

.legal-page h2 {
  font-size: 1.4rem;
  margin: 30px 0 14px;
  color: var(--text);
}

.legal-page p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.8;
}

.legal-page ul {
  margin: 10px 0 20px 24px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ========== THANKS PAGE ========== */
.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
}

.thanks-content {
  max-width: 500px;
}

.thanks-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-green 2s infinite;
}

.thanks-icon svg {
  width: 44px;
  height: 44px;
  stroke: var(--green);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(50,205,50,0.3); }
  50% { box-shadow: 0 0 0 20px rgba(50,205,50,0); }
}

.thanks-content h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.thanks-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.7;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .content-block {
    gap: 40px;
  }

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

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-6px);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-item:nth-child(1) { grid-row: span 1; }
  .gallery-item:nth-child(5) { grid-column: span 1; }
  .gallery-item:nth-child(7) { grid-row: span 1; }

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

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

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: white;
    flex-direction: column;
    padding: 80px 30px 40px;
    gap: 20px;
    box-shadow: var(--shadow-xl);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 998;
    display: none;
  }

  .nav-overlay.visible {
    display: block;
  }

  .burger {
    display: flex;
    z-index: 1001;
  }

  .reios h1 {
    font-size: 2.2rem;
  }

  .reios p {
    font-size: 1rem;
  }

  .content-block {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 50px 0;
  }

  .content-block.reverse {
    direction: ltr;
  }

  .content-block-image img {
    height: 280px;
  }

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

  .slide img {
    height: 300px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .vertical-block {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .vertical-item {
    border-right: none;
    border-bottom: 1px solid var(--light-gray);
    padding: 24px 16px;
  }

  .vertical-item img {
    height: 200px;
  }

  .vertical-line {
    display: none;
  }

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

  .text-block {
    padding: 36px 24px;
  }

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin: 0 12px;
  }

  .section {
    padding: 60px 0;
  }

  .content-block-stat {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .reios h1 {
    font-size: 1.8rem;
  }

  .reios-buttons {
    flex-direction: column;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .vertical-block {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
  }
}
