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

:root {
  --primary: #F3A505;
  --primary-light: #F4A900;
  --primary-dark: #d99300;
  --secondary: #BF8A00;
  --secondary-light: #d9a530;
  --accent: #FFD700;
  --accent-light: #ffe44d;
  --bg-cream: #fffcf5;
  --bg-section: #fef8ec;
  --bg-section-alt: #fdf3dc;
  --bg-dark: #2a1f0a;
  --bg-card: #ffffff;
  --text-dark: #2c1e06;
  --text-body: #4a3a1e;
  --text-muted: #7a6840;
  --text-light: #fef6e0;
  --border-light: #edd9a8;
  --border-medium: #dcc88a;
  --shadow-soft: 0 2px 20px rgba(243, 165, 5, 0.08);
  --shadow-medium: 0 8px 40px rgba(243, 165, 5, 0.12);
  --shadow-strong: 0 16px 60px rgba(243, 165, 5, 0.16);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.25s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', 'Open Sans', sans-serif;
  --max-width: 1280px;
  --section-padding: 100px 0;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background-color: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 600;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.8;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* HEADER */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 252, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(243, 165, 5, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
}

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

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

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

.nav-links a:hover {
  color: var(--primary);
}

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

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

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

.nav-cta:hover {
  background: transparent !important;
  color: var(--primary) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.burger span {
  width: 26px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.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(6px, -6px);
}

/* topes SECTION */

.topes {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, #fef4d9 0%, #fde8b0 30%, #fcdfa0 60%, #fef8ec 100%);
  padding-top: 80px;
}

.topes-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.topes-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
}

.topes-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -150px;
  animation: float 20s ease-in-out infinite;
}

.topes-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary);
  bottom: -100px;
  left: -100px;
  animation: float 15s ease-in-out infinite reverse;
}

.topes-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--accent);
  top: 40%;
  left: 30%;
  animation: float 12s ease-in-out infinite 2s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(30px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-3deg); }
  75% { transform: translate(15px, -15px) rotate(2deg); }
}

.topes-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.topes-text {
  animation: fadeInUp 1s ease forwards;
}

.topes-tag {
  display: inline-block;
  background: rgba(243, 165, 5, 0.12);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.topes-text h1 {
  margin-bottom: 24px;
  color: var(--text-dark);
  font-weight: 700;
}

.topes-text h1 span {
  color: var(--primary);
  display: inline;
}

.topes-text > p {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.8;
}

.topes-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(243, 165, 5, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 8px 30px rgba(243, 165, 5, 0.4);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

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

.btn-white {
  background: white;
  color: var(--primary);
  border-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

.topes-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease 0.3s forwards;
  opacity: 0;
}

.topes-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.topes-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  position: relative;
  z-index: 2;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, #f0d89a, #e6c26e);
}

.topes-image-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 3px solid var(--primary);
  border-radius: var(--radius-lg);
  top: 20px;
  left: 20px;
  z-index: 1;
  opacity: 0.3;
}

.topes-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}

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

.topes-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

.topes-stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* SCROLL ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CONTENT BLOCKS (image + text) */

.section {
  padding: var(--section-padding);
}

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

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

.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

.section-dark .section-subtitle {
  color: rgba(254, 246, 224, 0.7);
}

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

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

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

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

.content-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, #f0d89a, #e6c26e);
}

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

.content-image-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.content-text h2 {
  margin-bottom: 16px;
}

.content-text h3 {
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  font-family: var(--font-body);
}

.content-text p {
  color: var(--text-body);
  font-size: 1.05rem;
  line-height: 1.85;
}

.content-text ul {
  margin: 20px 0;
}

.content-text ul li {
  padding: 10px 0 10px 36px;
  position: relative;
  font-size: 1.05rem;
  color: var(--text-body);
}

.content-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 20px;
  height: 20px;
  background: rgba(243, 165, 5, 0.12);
  border-radius: 50%;
}

.content-text ul li::after {
  content: '✓';
  position: absolute;
  left: 4px;
  top: 14px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 700;
}

.content-form {
  margin-top: 30px;
  background: rgba(243, 165, 5, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-light);
}

.content-form h4 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-dark);
}

.content-form .form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.content-form .form-row input {
  flex: 1;
  min-width: 140px;
  padding: 12px 16px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: white;
  transition: border-color var(--transition-fast);
}

.content-form .form-row input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(243, 165, 5, 0.12);
}

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

/* COUNTERS BAR */

.counters-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 50px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.counter-item {
  color: white;
}

.counter-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.counter-label {
  font-size: 0.9rem;
  opacity: 0.85;
  font-weight: 500;
}

/* SLIDER */

.slider-section {
  background: var(--bg-section);
  overflow: hidden;
}

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

.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: linear-gradient(135deg, #f0d89a, #e6c26e);
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 40px 30px 24px;
  color: white;
}

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

.slide-caption p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  z-index: 10;
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 16px;
}

.slider-btn.next {
  right: 16px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-light);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.slider-dot.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* ACCORDION BLOCK */

.accordion-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%);
}

.accordion-grid {
  max-width: 900px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius);
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

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

.accordion-header {
  padding: 24px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
  transition: background var(--transition-fast);
}

.accordion-header:hover {
  background: rgba(243, 165, 5, 0.03);
}

.accordion-header h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-dark);
  flex: 1;
}

.accordion-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(243, 165, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  transition: transform 0.3s ease;
}

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

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

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

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

.accordion-item.active .accordion-content {
  max-height: 600px;
}

/* CIRCULAR TEXT BLOCK */

.circular-section {
  background: var(--bg-section);
}

.circular-block {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.circular-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(243, 165, 5, 0.25);
  border: 5px solid var(--primary);
  margin-bottom: 50px;
  flex-shrink: 0;
}

.circular-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.circular-texts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
}

.circular-text-item {
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.circular-text-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}

.circular-text-item .ct-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(243, 165, 5, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
}

.circular-text-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.circular-text-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* TABLE BLOCK */

.table-section {
  background: var(--bg-section);
}

.table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  -webkit-overflow-scrolling: touch;
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.95rem;
}

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

.styled-table thead th {
  padding: 18px 24px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.styled-table tbody tr {
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast);
}

.styled-table tbody tr:hover {
  background: rgba(243, 165, 5, 0.04);
}

.styled-table tbody tr:last-child {
  border-bottom: none;
}

.styled-table tbody td {
  padding: 16px 24px;
  color: var(--text-body);
  vertical-align: middle;
}

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

.table-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

.table-badge-gold {
  background: rgba(243, 165, 5, 0.12);
  color: var(--primary);
}

.table-badge-amber {
  background: rgba(200, 150, 20, 0.1);
  color: #9a7b1a;
}

/* PRICING CARDS */

.pricing-section {
  background: linear-gradient(180deg, var(--bg-cream) 0%, var(--bg-section) 100%);
}

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

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

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-light);
  transition: background var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-strong);
}

.pricing-card:hover::before {
  background: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-strong);
}

.pricing-card.featured::before {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  height: 4px;
}

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

.pricing-label {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 4px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(243, 165, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
}

.pricing-card h3 {
  font-family: var(--font-body);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-description {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

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

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* CALCULATOR */

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

.calculator-block {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.calculator-slider-group {
  margin-bottom: 32px;
}

.calculator-slider-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1rem;
  color: var(--text-dark);
}

.calculator-slider-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  outline: none;
  cursor: pointer;
}

.calculator-slider-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.calculator-slider-group input[type="range"]::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}

.calculator-value {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
}

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

.calculator-result-label {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 8px;
}

.calculator-result-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
}

.calculator-result-detail {
  font-size: 0.85rem;
  opacity: 0.75;
  margin-top: 8px;
}

/* TEXT-ONLY BLOCK */

.text-only-section {
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.text-only-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(243, 165, 5, 0.15), transparent 70%);
  pointer-events: none;
}

.text-only-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(191, 138, 0, 0.2), transparent 70%);
  pointer-events: none;
}

.text-only-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.text-only-content h2 {
  color: var(--text-light);
  margin-bottom: 24px;
}

.text-only-content p {
  color: rgba(254, 246, 224, 0.85);
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.text-only-content .highlight-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--accent);
  border-left: 4px solid var(--primary);
  padding: 20px 0 20px 30px;
  margin: 40px 0;
  text-align: left;
  line-height: 1.6;
}

.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  text-align: left;
}

.text-columns p {
  font-size: 1rem;
}

/* INFOGRAPHIC / BENEFITS DIAGRAM */

.benefits-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-cream) 100%);
}

.benefits-diagram {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.benefits-center {
  width: 180px;
  height: 180px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 60px;
  box-shadow: 0 8px 40px rgba(243, 165, 5, 0.3);
  position: relative;
  z-index: 2;
}

.benefits-center-text {
  color: white;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
}

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

.benefit-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: -15px;
  left: 50%;
  width: 30px;
  height: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-bottom: none;
  border-right: none;
  transform: translateX(-50%) rotate(45deg);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-medium);
  border-color: var(--primary);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(243, 165, 5, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.4rem;
  transition: all var(--transition);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.benefit-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.benefit-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* PHOTO GALLERY */

.gallery-section {
  background: var(--bg-section);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(80%);
  transition: all 0.6s ease;
  background: linear-gradient(135deg, #e6c26e, #d4a84a);
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

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

/* VERTICAL PHOTOS WITH TEXT & LINE */

.vertical-photos-section {
  background: var(--bg-cream);
}

.vertical-photos-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vertical-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  min-height: 320px;
}

.vertical-photo-row::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
}

.vertical-photo-row:last-child::after {
  display: none;
}

.vertical-photo-img {
  overflow: hidden;
}

.vertical-photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.6s ease;
  background: linear-gradient(135deg, #e6c26e, #d4a84a);
}

.vertical-photo-img:hover img {
  transform: scale(1.03);
}

.vertical-photo-text {
  display: flex;
  align-items: center;
  padding: 40px 48px;
}

.vertical-photo-text h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.vertical-photo-text p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.vertical-photo-row:nth-child(even) .vertical-photo-img {
  order: 2;
}

.vertical-photo-row:nth-child(even) .vertical-photo-text {
  order: 1;
}

/* REVIEWS / TESTIMONIALS */

.reviews-section {
  background: linear-gradient(180deg, var(--bg-section) 0%, var(--bg-cream) 100%);
}

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

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
}

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

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

.review-star {
  color: var(--primary);
  font-size: 1.1rem;
}

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

.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-author-info {
  flex: 1;
}

.review-name {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

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

.review-quote-icon {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  color: rgba(243, 165, 5, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

/* SUBSCRIPTION FORM */

.form-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.form-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.form-content h2 {
  color: white;
  margin-bottom: 12px;
}

.form-content .section-subtitle {
  color: rgba(255, 255, 255, 0.85);
}

.form-content .section-divider {
  background: rgba(255, 255, 255, 0.4);
}

.subscription-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.form-group {
  position: relative;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: left;
  color: rgba(255, 255, 255, 0.9);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-fast);
  backdrop-filter: blur(10px);
}

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

.form-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1);
}

.form-submit {
  grid-column: 1 / -1;
  margin-top: 10px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1.1rem;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  margin-top: 8px;
}

.form-note a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

/* FOOTER */

.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 0;
}

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

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(254, 246, 224, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer h4 {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: rgba(254, 246, 224, 0.6);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 6px;
}

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(254, 246, 224, 0.6);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-contact-icon {
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(254, 246, 224, 0.7);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
}

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

.footer-bottom p {
  color: rgba(254, 246, 224, 0.4);
  font-size: 0.8rem;
  margin-bottom: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(254, 246, 224, 0.4);
  font-size: 0.8rem;
}

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

/* COOKIE CONSENT BANNER */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-card);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  padding: 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-top: 3px solid var(--primary);
}

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

.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.cookie-banner h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.cookie-banner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.cookie-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.cookie-category {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.cookie-category input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.7;
}

.cookie-category label {
  cursor: pointer;
  user-select: none;
}

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

.cookie-btn {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition-fast);
}

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

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

.cookie-btn-necessary {
  background: transparent;
  color: var(--text-body);
  border-color: var(--border-medium);
}

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

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

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

.cookie-settings {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}

.cookie-settings.visible {
  display: block;
}

/* LEGAL PAGES */

.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 32px;
  font-size: 2.2rem;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

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

.legal-content ul {
  margin: 16px 0 16px 24px;
  list-style: disc;
}

.legal-content ul li {
  margin-bottom: 8px;
  color: var(--text-body);
  line-height: 1.7;
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  text-decoration: underline;
}

/* THANKS PAGE */

.thanks-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #fef4d9 0%, #fde8b0 50%, #fef8ec 100%);
  text-align: center;
  padding: 24px;
}

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

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

.thanks-icon svg {
  width: 48px;
  height: 48px;
  stroke: white;
  stroke-width: 3;
}

.thanks-content h1 {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.thanks-content p {
  font-size: 1.1rem;
  color: var(--text-body);
  margin-bottom: 32px;
}

/* BACK TO TOP BUTTON */

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(243, 165, 5, 0.4);
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
  font-size: 1.2rem;
}

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

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

/* LOADING SCREEN */

.loader {
  position: fixed;
  inset: 0;
  background: var(--bg-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid var(--border-light);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .topes-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .topes-text > p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .topes-stats {
    justify-content: center;
  }

  .topes-image-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }

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

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

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

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

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

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

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

  .counters-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

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

  .circular-texts {
    grid-template-columns: 1fr 1fr;
  }
}

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

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--bg-card);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1000;
    align-items: flex-start;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  .burger {
    display: flex;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-overlay.visible {
    opacity: 1;
    visibility: visible;
  }

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

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

  .vertical-photo-row:nth-child(even) .vertical-photo-img {
    order: 0;
  }

  .vertical-photo-row:nth-child(even) .vertical-photo-text {
    order: 0;
  }

  .vertical-photo-text {
    padding: 28px 24px;
  }

  .vertical-photo-img img {
    min-height: 220px;
  }

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

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

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

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

  .benefits-center {
    width: 140px;
    height: 140px;
  }

  .benefits-center-text {
    font-size: 1.1rem;
  }

  .topes-stats {
    flex-direction: column;
    gap: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
  }

  .cookie-btn {
    text-align: center;
  }

  .circular-texts {
    grid-template-columns: 1fr;
  }

  .calculator-block {
    padding: 32px 24px;
  }

  .content-form .form-row {
    flex-direction: column;
  }
}

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

  .topes {
    min-height: auto;
    padding-top: 100px;
    padding-bottom: 60px;
  }

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

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

  .counter-number {
    font-size: 2rem;
  }
}
