:root {
  --primary: #FFCF48;
  --accent: #FFDB58;
  --highlight: #F4A900;
  --dark: #1a1a2e;
  --light: #f9f9f9;
  --white: #ffffff;
  --text: #333333;
  --text-muted: #666666;
  
  --font-body: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
  
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

.text-center { text-align: center; }
.max-w-lg { max-width: 600px; }
.max-w-3xl { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }
.mt-4 { margin-top: 2rem; }

.section {
  padding: 5rem 0;
  position: relative;
}

.bg-light { background-color: var(--light); }
.bg-accent { background-color: rgba(255, 207, 72, 0.1); }
.bg-white { background-color: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--dark);
  margin-bottom: 1rem;
  font-weight: 700;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--dark);
  line-height: 1.2;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-body);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--dark);
  box-shadow: 0 4px 15px rgba(255, 207, 72, 0.4);
}

.btn-primary:hover {
  background-color: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(244, 169, 0, 0.4);
}

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

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

.btn-text {
  background: none;
  color: var(--text-muted);
  text-decoration: underline;
  padding: 0.5rem 1rem;
}

.btn-text:hover {
  color: var(--dark);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 1.5rem 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.header.scrolled .logo,
.header.scrolled .nav-list a {
  color: var(--dark);
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  color: var(--white);
  font-weight: 500;
  position: relative;
  transition: var(--transition);
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

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

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
  z-index: 1001;
}

.burger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--white);
  transition: var(--transition);
}

.header.scrolled .burger span {
  background-color: var(--dark);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }

.burger.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
  background-color: var(--dark);
}

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

.burger.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
  background-color: var(--dark);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-nav-list {
  list-style: none;
  text-align: center;
}

.mobile-nav-list li {
  margin: 1.5rem 0;
}

.mobile-nav-list a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--dark);
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  color: var(--white);
}

.hero-title {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  opacity: 0.9;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--highlight));
  filter: blur(40px);
  z-index: 1;
  opacity: 0.3;
  animation: float 10s infinite ease-in-out alternate;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: 100px;
  left: 50%;
  animation-delay: -5s;
}

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
  100% { transform: translateY(0) scale(1); }
}

/* Animations */
.animate-slide-left {
  animation: slideLeft 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.animate-fade-in {
  opacity: 0;
  animation: fadeIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }

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

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

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

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

/* Block 1: How it works */
.steps-map {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 3rem 0;
  position: relative;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 18%;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.step-item:hover .step-circle {
  background-color: var(--primary);
  transform: scale(1.1);
}

.step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.step-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.step-line {
  flex-grow: 1;
  height: 2px;
  background: dashed 2px var(--primary);
  margin-top: 30px;
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

.mini-prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.mini-price-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
}

.mini-price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.mini-price-card.highlight {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(255, 207, 72, 0.15);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: var(--white);
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.mini-price-title {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.mini-price-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mini-price-details {
  list-style: none;
  font-size: 0.9rem;
}

.mini-price-details li {
  margin-bottom: 0.3rem;
  color: var(--text-muted);
}

.booking-form-wrapper {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  max-width: 1090px;
  margin: 0 auto;
}

.form-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1.5rem;
  align-items: flex-end;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.form-group input, .form-group select {
  padding: 1rem 1.2rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
  background: #f8fafc;
}

.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 207, 72, 0.2);
}

.btn-group {
  flex: 0.8;
}

/* Block 2: Carousel */
.carousel-section {
  overflow: hidden;
}

.carousel {
  position: relative;
  max-width: 900px;
  margin: 2rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 500px;
}

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

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  text-align: center;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}

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

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

.carousel-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

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

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

/* Block 3: Accordion */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

.accordion-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

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

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

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

.accordion-inner {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Block 4: Circular About */
.about-circular {
  padding: 6rem 0;
  overflow: hidden;
}

.circular-layout {
  position: relative;
  width: 600px;
  height: 600px;
  margin: 4rem auto 0;
  border-radius: 50%;
}

.circular-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 10px solid var(--white);
  z-index: 10;
}

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

.circle-item {
  position: absolute;
  width: 140px;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: var(--transition);
}

.circle-item:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.circle-icon {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 0.5rem;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

.circle-text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.3;
}

/* Positioning circle items */
.item-1 { top: 10%; left: 50%; }
.item-2 { top: 25%; left: 85%; }
.item-3 { top: 75%; left: 85%; }
.item-4 { top: 90%; left: 50%; }
.item-5 { top: 75%; left: 15%; }
.item-6 { top: 25%; left: 15%; }

/* Block 5: Schedule Table */
.table-container {
  overflow-x: auto;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  margin-top: 3rem;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.schedule-table th, .schedule-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}

.schedule-table th {
  background: var(--dark);
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tbody tr:hover {
  background: #f8fafc;
}

.badge {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.badge.beginner { background: #e0f2fe; color: #0369a1; }
.badge.advanced { background: #fef3c7; color: #b45309; }
.badge.mixed { background: #f3e8ff; color: #7e22ce; }

/* Block 6: Detailed Price Cards */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.price-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.price-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.05);
  z-index: 1;
}

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

.popular-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--highlight);
  color: var(--white);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

.price-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f0f0f0;
}

.price-header h3 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.price-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.features-list {
  list-style: none;
  flex-grow: 1;
  margin-bottom: 2rem;
}

.features-list li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--highlight);
  font-weight: bold;
}

/* Block 7: Calculator */
.calc-box {
  background: var(--white);
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.range-slider {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  outline: none;
  border-radius: 4px;
  -webkit-appearance: none;
  margin-top: 1rem;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(255, 207, 72, 0.5);
  transition: var(--transition);
}

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

.calc-result {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px dashed #e2e8f0;
}

.result-label {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.result-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
}

/* Block 8: Pure Selling Text */
.selling-text-section {
  background: linear-gradient(135deg, var(--dark), #2a2a4a);
  color: var(--white);
}

.selling-text-section .section-title {
  color: var(--white);
  margin-bottom: 3rem;
}

.rich-text {
  font-size: 1.2rem;
  line-height: 1.8;
}

.rich-text p {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.lead-text {
  font-size: 1.5rem;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--primary);
}

.highlight-text {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--white);
  margin-top: 3rem;
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  text-align: left;
}

/* Block 9: Infographic */
.infographic-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.info-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.info-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  background: rgba(255, 207, 72, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.info-text {
  font-weight: 500;
  color: var(--dark);
}

/* Block 10: Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  group: hover;
}

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

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

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transform: translateY(10px);
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
  opacity: 1;
}

.gallery-divider {
  border: none;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,0,0,0.1), transparent);
  margin-top: 4rem;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stars {
  color: var(--highlight);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.author-name {
  font-weight: 600;
  color: var(--dark);
}

.author-city {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  margin-top: 1rem;
}

.footer-logo {
  color: var(--white);
}

.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

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

.footer-contacts p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--white);
  padding: 1.5rem 0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
  z-index: 2000;
  transition: bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cookie-banner.show {
  bottom: 0;
}

.cookie-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-container p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.cookie-btns {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-shrink: 0;
}

.cookie-btns .btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title { font-size: 3.5rem; }
  .steps-map { flex-direction: column; align-items: center; gap: 2rem; }
  .step-line { display: none; }
  .step-item { width: 100%; max-width: 300px; flex-direction: row; text-align: left; gap: 1.5rem; }
  .step-circle { margin-bottom: 0; flex-shrink: 0; }
  .mini-prices-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .price-cards { grid-template-columns: repeat(2, 1fr); }
  .calc-box { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 2rem; }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .burger { display: block; }
  
  .hero-title { font-size: 2.8rem; }
  .mini-prices-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto 3rem; }
  .form-row { flex-direction: column; align-items: stretch; gap: 1rem; }
  .carousel-inner { height: 400px; }
  .faq-layout { grid-template-columns: 1fr; gap: 2rem; }
  .circular-layout { width: 300px; height: 300px; margin: 2rem auto; }
  .circular-center { width: 150px; height: 150px; border-width: 5px; }
  .circle-item { position: relative; transform: none !important; width: auto; text-align: left; display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; top: auto !important; left: auto !important; }
  .circle-icon { margin: 0; width: 50px; height: 50px; flex-shrink: 0; }
  .about-circular .circular-layout { height: auto; border-radius: 0; display: flex; flex-direction: column; gap: 1rem; }
  .circular-center { position: relative; transform: none; top: auto; left: auto; margin: 0 auto 2rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cookie-container { flex-direction: column; text-align: center; }
  .cookie-btns { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .section { padding: 3rem 0; }
  .section-title { font-size: 2rem; }
  .price-cards { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-5px); }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .carousel-inner { height: 300px; }
  .slide-caption { font-size: 1.2rem; padding: 1rem; }
}