/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #009B77;
  --primary-hover: #008768;
  --accent: #7CFC00;
  --highlight: #3BB08F;
  --bg: #ffffff;
  --bg-light: #f5f8f7;
  --text: #222222;
  --text-muted: #555555;
  --border: #e0e6e4;
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 20px 40px rgba(0,155,119,0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --font-main: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

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

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section.p-0 {
  padding: 0;
}

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

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3.5rem;
  color: var(--text);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.text-accent {
  color: var(--accent);
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.w-100 { width: 100%; }
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex-center { display: flex; align-items: center; justify-content: center; min-height: 60vh; flex-direction: column; }

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--highlight) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(0, 155, 119, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 155, 119, 0.4);
}

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

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

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: var(--radius);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.9rem;
}

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

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: var(--shadow-sm);
}

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

.header.scrolled .logo svg {
  color: var(--primary);
}

.header.scrolled .hamburger span {
  background-color: var(--text);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  z-index: 1001;
}

.logo svg {
  color: var(--accent);
}

.desktop-nav ul {
  display: flex;
  gap: 30px;
}

.desktop-nav a {
  color: white;
  font-weight: 500;
  position: relative;
}

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

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

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

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

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

.hamburger.active span:nth-child(1) { top: 9px; transform: rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 100px 40px 40px;
  transition: var(--transition);
  z-index: 1000;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .nav ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu .nav a {
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 600;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  padding-top: 80px;
}

.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(rgba(0,0,0,0.4), rgba(0,0,0,0.7));
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.hero h1 {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

/* Steps */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 600px;
  margin: 0 auto 50px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 24px;
  width: 2px;
  background: var(--border);
  z-index: 0;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 0 5px var(--bg-light);
}

.step p {
  font-size: 1.1rem;
  font-weight: 500;
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  width: 100%;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.preview-card {
  background: white;
  padding: 25px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}

.preview-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.preview-card.highlight-card {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary);
}

.preview-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.preview-card .price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.preview-card p {
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.booking-form-wrapper {
  background: white;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 500px;
  margin: 0 auto;
}

.booking-form-wrapper h3 {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
}

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

.form-group input {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,155,119,0.1);
}

.booking-form button {
  width: 100%;
}

/* Slider */
.slider {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

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

.slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  max-width: 600px;
}

.slide-content h2 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.slide-content p {
  font-size: 1.2rem;
  opacity: 0.9;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.4);
}

.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

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

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

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

/* FAQ */
.faq-container {
  max-width: 800px;
}

.accordion-item {
  background: white;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

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

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

.accordion-header .icon {
  width: 24px;
  height: 24px;
  position: relative;
}

.accordion-header .icon::before,
.accordion-header .icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: var(--transition);
}

.accordion-header .icon::before {
  top: 11px;
  left: 4px;
  width: 16px;
  height: 2px;
}

.accordion-header .icon::after {
  top: 4px;
  left: 11px;
  width: 2px;
  height: 16px;
}

.accordion-item.active .accordion-header .icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.accordion-item.active .accordion-header {
  color: var(--primary);
}

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

.accordion-content p {
  padding: 0 25px 20px;
  color: var(--text-muted);
}

/* Circular About */
.circular-about {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-center {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow);
  border: 10px solid white;
}

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

.orbit-item {
  position: absolute;
  background: white;
  padding: 15px 25px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  z-index: 3;
  animation: float 6s ease-in-out infinite alternate;
}

.orbit-item .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.orbit-item .stat-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.item-1 { top: 5%; left: 10%; animation-delay: 0s; }
.item-2 { top: 20%; right: 5%; animation-delay: 1s; }
.item-3 { bottom: 15%; right: 15%; animation-delay: 2s; }
.item-4 { bottom: 25%; left: 0%; animation-delay: 3s; }

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

/* Schedule */
.table-responsive {
  overflow-x: auto;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.schedule-table th,
.schedule-table td {
  padding: 20px 25px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

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

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

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

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

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

.badge-all { background: #e3f2fd; color: #1565c0; }
.badge-beg { background: #e8f5e9; color: #2e7d32; }
.badge-mid { background: #fff3e0; color: #e65100; }
.badge-adv { background: #ffebee; color: #c62828; }

/* Prices */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.pricing-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border-top: 5px solid var(--border);
}

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

.pricing-card.popular {
  border-top: 5px solid var(--accent);
  box-shadow: var(--shadow);
  transform: scale(1.05);
  z-index: 2;
}

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

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--text);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.card-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.card-header h3 {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.card-header .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text);
}

.card-body {
  flex-grow: 1;
  margin-bottom: 30px;
}

.features-list li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.features-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: bold;
}

/* Calculator */
.calculator-wrapper {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 3fr 2fr;
  overflow: hidden;
}

.calc-controls {
  padding: 40px;
}

.calc-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

#calc-range-val {
  color: var(--primary);
  font-weight: 800;
  font-size: 1.3rem;
}

.range-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-light);
  outline: none;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  transition: var(--transition);
}

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

.radio-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.radio-label {
  cursor: pointer;
  margin: 0;
}

.radio-label input {
  display: none;
}

.radio-label span {
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
}

.radio-label input:checked + span {
  border-color: var(--primary);
  background: rgba(0,155,119,0.1);
  color: var(--primary);
}

.calc-result {
  background: var(--primary);
  color: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.calc-result h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  opacity: 0.9;
}

.calc-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1;
}

.calc-desc {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 30px;
}

.calc-result .btn-primary {
  background: white;
  color: var(--primary);
  box-shadow: none;
}

.calc-result .btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
}

/* Selling Text */
.text-selling {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-light) 100%);
}

.decorative-quote {
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
  color: var(--primary);
  font-style: italic;
  line-height: 1.4;
}

.selling-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.sell-col h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--text);
}

.sell-col p {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.big-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: center;
  border-top: 1px solid var(--border);
  padding-top: 50px;
}

.stat-num {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

.info-card {
  background: white;
  padding: 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: rgba(0,155,119,0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.info-card:hover .info-icon {
  background: var(--primary);
  color: white;
  transform: rotate(10deg);
}

.info-card h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.info-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Gallery */
.divider {
  border: none;
  height: 4px;
  background: var(--primary);
  width: 100px;
  margin: 0 auto 50px;
  border-radius: 2px;
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}

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

.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  opacity: 0;
  transition: var(--transition);
}

.gallery-caption {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  padding: 20px;
  color: white;
  font-weight: 600;
  z-index: 2;
  transition: var(--transition);
  opacity: 0;
}

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

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

.gallery-item:hover .gallery-caption {
  bottom: 0;
  opacity: 1;
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  background: none;
  border: none;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}

.lightbox img {
  max-width: 90%;
  max-height: 80vh;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  color: white;
  margin-top: 20px;
  font-size: 1.2rem;
  font-weight: 500;
}

/* Footer */
.footer {
  background: #111;
  color: white;
  padding: 80px 0 30px;
}

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

.footer .logo {
  margin-bottom: 20px;
}

.footer-col p {
  color: #aaa;
  font-size: 0.95rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary);
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul a {
  color: #aaa;
}

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

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

.legal-info {
  margin-top: 15px;
  font-size: 0.85rem !important;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: white;
  padding: 20px 0;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 1500;
  transition: bottom 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.cookie-text {
  flex: 1;
  font-size: 0.95rem;
}

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

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

/* Legal Pages */
.legal-page {
  padding-top: 120px;
}
.legal-content {
  background: white;
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px;
}
.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: var(--primary);
}
.legal-content h2 {
  font-size: 1.5rem;
  margin: 30px 0 15px;
}
.legal-content p {
  margin-bottom: 15px;
  color: var(--text-muted);
}
.legal-content ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-muted);
}
.legal-content li {
  margin-bottom: 8px;
}

/* Thanks Page */
.thanks-page {
  background: var(--bg-light);
  padding-top: 80px;
}
.thanks-icon {
  margin-bottom: 30px;
}
.thanks-page h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text);
}
.thanks-page p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3.5rem; }
  .pricing-cards { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.popular { transform: none; }
  .pricing-card.popular:hover { transform: translateY(-10px); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .infographic-grid { grid-template-columns: repeat(2, 1fr); }
  .calculator-wrapper { grid-template-columns: 1fr; }
  .cookie-content { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-buttons { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section { padding: 50px 0; }
  .section-title { font-size: 2rem; }
  .desktop-nav { display: none; }
  .hamburger { display: block; }
  .hero h1 { font-size: 2.5rem; }
  .preview-cards { grid-template-columns: 1fr; }
  .steps-timeline::before { left: 25px; }
  .slide-content { left: 5%; right: 5%; text-align: center; }
  .slide-content h2 { font-size: 2rem; }
  .selling-columns { grid-template-columns: 1fr; gap: 30px; }
  .big-stats { grid-template-columns: 1fr; gap: 40px; }
  .pricing-cards { grid-template-columns: 1fr; }
  .infographic-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .social-links { justify-content: center; }
  .circular-about { height: 400px; }
  .circle-center { width: 200px; height: 200px; }
  .orbit-item { padding: 10px 15px; }
  .orbit-item .stat-value { font-size: 1.2rem; }
  .orbit-item .stat-label { font-size: 0.8rem; }
  .legal-content { padding: 30px 20px; }
}
