:root {
  --primary: #2D5F3F;
  --secondary: #8BC34A;
  --accent: #FFB74D;
  --bg: #F8FBF6;
  --surface: #FFFFFF;
  --text: #1A1A1A;
  --text-light: #5A5A5A;
  --shadow-sm: 0 2px 8px rgba(45, 95, 63, 0.08);
  --shadow-md: 0 4px 16px rgba(45, 95, 63, 0.12);
  --shadow-lg: 0 8px 32px rgba(45, 95, 63, 0.16);
  --shadow-xl: 0 16px 48px rgba(45, 95, 63, 0.2);
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  cursor: none;
  overflow-x: hidden;
}

body.cursor-active * {
  cursor: none !important;
}

.custom-cursor {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  transition: transform 0.2s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background: rgba(139, 195, 74, 0.3);
  border-color: var(--secondary);
}

.cursor-trail {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

p {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--text-light);
  margin-bottom: 1rem;
}

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

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(248, 251, 246, 0.95) 100%);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  transition: var(--transition-fast);
  z-index: 1001;
}

.logo-link:hover {
  transform: translateY(-2px);
}

.logo-link svg {
  width: 40px;
  height: 40px;
  transition: var(--transition-fast);
}

.logo-link:hover svg {
  transform: rotate(5deg) scale(1.1);
}

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

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
}

.nav-links a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 8px 0;
  transition: var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transition: width 0.3s ease;
}

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

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

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

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

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--surface);
  border-radius: 30px;
  box-shadow: var(--shadow-sm);
}

.lang-btn {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-light);
  padding: 4px 8px;
  transition: var(--transition-fast);
}

.lang-btn:hover {
  color: var(--primary);
  transform: scale(1.1);
}

.lang-btn.active {
  color: var(--primary);
}

.lang-divider {
  color: var(--text-light);
  opacity: 0.3;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  padding: 8px;
  z-index: 1001;
  position: relative;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(255, 183, 77, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 60px;
  align-items: center;
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
  padding: 8px 20px;
  background: rgba(139, 195, 74, 0.1);
  border-radius: 30px;
}

.hero-title {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 48px;
}

.stat-item {
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-image-wrapper {
  position: relative;
  height: 600px;
}

.hero-image {
  position: relative;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: var(--transition);
}

.hero-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(45, 95, 63, 0.25);
}

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

.floating-card {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--surface);
  padding: 24px;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  transition: var(--transition);
}

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

.floating-card-stars {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.floating-card-text {
  font-size: 0.9375rem;
  font-style: italic;
  margin-bottom: 12px;
  color: var(--text);
}

.floating-card-author {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}

.magnetic-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--surface);
  border: none;
  border-radius: 50px;
  font-size: 1.125rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.magnetic-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
}

.magnetic-btn:hover::before {
  width: 300px;
  height: 300px;
}

.magnetic-btn:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.magnetic-btn i {
  transition: transform 0.3s ease;
}

.magnetic-btn:hover i {
  transform: translateX(4px);
}

section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.section-title {
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.125rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--surface);
}

.gallery-item:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-xl);
}

.gallery-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}

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

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(45, 95, 63, 0.9) 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay-content h3 {
  color: var(--surface);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.gallery-overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9375rem;
  margin: 0;
}

.gallery-content {
  padding: 24px;
}

.gallery-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.gallery-item:hover .gallery-content h3 {
  color: var(--secondary);
}

.gallery-content p {
  margin: 0;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  max-width: 1200px;
  max-height: 90vh;
  position: relative;
  animation: zoomIn 0.4s ease;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: var(--surface);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--text);
  transition: var(--transition-fast);
}

.lightbox-close:hover {
  background: var(--primary);
  color: var(--surface);
  transform: rotate(90deg);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.feature-card {
  background: var(--surface);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--accent));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(255, 183, 77, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.2), rgba(255, 183, 77, 0.2));
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.feature-card p {
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  color: var(--surface);
  margin-bottom: 24px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .magnetic-btn {
  background: var(--surface);
  color: var(--primary);
}

.cta-section .magnetic-btn:hover {
  background: var(--accent);
  color: var(--surface);
}

.contact-form-section {
  background: var(--surface);
  padding: 80px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.form-info h2 {
  margin-bottom: 24px;
}

.form-info p {
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1), rgba(255, 183, 77, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-detail-content h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.contact-detail-content p,
.contact-detail-content a {
  margin: 0;
  color: var(--text-light);
}

.contact-detail-content a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--bg);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid rgba(45, 95, 63, 0.1);
  border-radius: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
  background: var(--surface);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(139, 195, 74, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.iti {
  width: 100%;
}

#phone {
  width: 100%;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-group label {
  margin: 0;
  font-weight: 400;
  font-size: 0.875rem;
}

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

.submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--surface);
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  transition: var(--transition);
  margin-top: 24px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.floating-contact-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--surface);
  font-size: 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.floating-contact-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-xl);
}

@keyframes pulse {
  0%, 100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow: 0 8px 32px rgba(255, 183, 77, 0.4);
  }
}

.back-to-top {
  position: fixed;
  bottom: 32px;
  left: 32px;
  width: 48px;
  height: 48px;
  background: var(--surface);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

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

footer {
  background: var(--primary);
  color: var(--surface);
  padding: 80px 0 0;
}

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

.footer-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 32px;
  border-radius: 16px;
  transition: var(--transition);
}

.footer-box:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.footer-box.large {
  grid-row: span 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.footer-box h4 {
  color: var(--surface);
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cookie-text p {
  margin: 0;
  color: var(--text);
}

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

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  transition: var(--transition-fast);
  border: none;
  font-family: 'Manrope', sans-serif;
}

.cookie-accept {
  background: var(--primary);
  color: var(--surface);
}

.cookie-accept:hover {
  background: var(--secondary);
}

.cookie-decline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--text-light);
}

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

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 500px;
}

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

.about-text h2 {
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 64px;
}

.value-card {
  background: var(--surface);
  padding: 32px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--secondary);
}

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

.value-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.thanks-container {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

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

.thanks-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--surface);
  margin: 0 auto 32px;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thanks-content h1 {
  margin-bottom: 20px;
}

.thanks-content p {
  font-size: 1.125rem;
  margin-bottom: 32px;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.legal-content h1 {
  margin-bottom: 16px;
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9375rem;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.75rem;
  margin-top: 48px;
  margin-bottom: 20px;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 20px;
}

.legal-content ul {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

.custom-page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, rgba(139, 195, 74, 0.1) 0%, rgba(255, 183, 77, 0.05) 100%);
}

.custom-page-hero h1 {
  text-align: center;
  margin-bottom: 24px;
}

.custom-page-hero p {
  text-align: center;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.guide-section {
  padding: 80px 0;
}

.guide-steps {
  display: grid;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}

.guide-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 16px;
}

.calculator-section {
  background: var(--surface);
  padding: 80px 0;
}

.calculator-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--bg);
  padding: 48px;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.calculator-result {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--surface);
  padding: 32px;
  border-radius: 16px;
  text-align: center;
  margin-top: 32px;
  display: none;
}

.calculator-result.show {
  display: block;
  animation: fadeIn 0.5s ease;
}

.result-value {
  font-size: 3rem;
  font-weight: 700;
  margin: 16px 0;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--surface);
    flex-direction: column;
    padding: 100px 40px 40px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.4s ease;
    gap: 24px;
  }

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

  .hamburger {
    display: flex;
  }

  nav {
    gap: 24px;
  }

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

  .hero-image-wrapper {
    height: 400px;
  }

  .floating-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: -20px;
  }

  .hero-stats {
    gap: 32px;
  }

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

  .footer-box.large {
    grid-column: span 2;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .guide-step {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .step-number {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero {
    padding: 100px 0 60px;
  }

  .hero-stats {
    flex-wrap: wrap;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  section {
    padding: 60px 0;
  }

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

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

  .cta-section {
    padding: 80px 0;
  }

  .contact-form {
    padding: 32px 24px;
  }

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

  .footer-box.large {
    grid-column: 1;
    grid-row: auto;
  }

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

  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .floating-contact-btn {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
  }

  .back-to-top {
    bottom: 24px;
    left: 24px;
  }

  .lightbox {
    padding: 20px;
  }

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

@media (max-width: 576px) {
  .header-content {
    padding: 16px 20px;
  }

  .logo-link {
    font-size: 1.25rem;
  }

  .logo-link svg {
    width: 32px;
    height: 32px;
  }

  .hero-image-wrapper {
    height: 300px;
  }

  .floating-card {
    max-width: calc(100% - 40px);
    padding: 20px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .feature-card {
    padding: 32px 24px;
  }

  .footer {
    padding: 60px 0 0;
  }

  .footer-box {
    padding: 24px;
  }
}