:root {
  --gradient-primary: linear-gradient(135deg, #FF6B9D 0%, #C837AB 50%, #7C4DFF 100%);
  --gradient-secondary: linear-gradient(135deg, #FFA726 0%, #FB8C00 50%, #EF6C00 100%);
  --gradient-accent: linear-gradient(135deg, #4ECDC4 0%, #44A08D 50%, #2E8B57 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-footer: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  
  --color-primary: #C837AB;
  --color-secondary: #FB8C00;
  --color-accent: #44A08D;
  --color-dark: #1a1a2e;
  --color-text: #2d3748;
  --color-text-light: #718096;
  --color-bg: #ffffff;
  --color-surface: #f7fafc;
  
  --shadow-sm: 0 2px 8px rgba(200, 55, 171, 0.08);
  --shadow-md: 0 4px 16px rgba(200, 55, 171, 0.12);
  --shadow-lg: 0 8px 32px rgba(200, 55, 171, 0.16);
  --shadow-xl: 0 16px 48px rgba(200, 55, 171, 0.2);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  
  --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

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

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 48px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  transition: var(--transition-base);
}

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

.logo img {
  width: 40px;
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition-base);
  position: relative;
  padding: 8px 0;
}

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

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

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

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

.lang-btn {
  color: var(--color-text-light);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: var(--transition-base);
}

.lang-btn:hover {
  color: var(--color-primary);
  background: rgba(200, 55, 171, 0.1);
}

.lang-btn.active {
  color: var(--color-primary);
  background: rgba(200, 55, 171, 0.15);
}

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

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-only {
  display: none;
}

.mobile-menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 3px;
  transition: var(--transition-base);
}

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

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

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

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: var(--gradient-hero);
  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(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 72px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.hero-text p {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 540px;
}

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

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

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.hero-image {
  position: relative;
  height: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition-smooth);
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

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

.hero-accent-card {
  position: absolute;
  bottom: 40px;
  left: -40px;
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  max-width: 280px;
  z-index: 2;
}

.hero-accent-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-accent-card p {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition-base);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

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

.section {
  padding: 120px 0;
  position: relative;
}

.section-gradient {
  background: var(--gradient-secondary);
  color: #ffffff;
}

.section-gradient-alt {
  background: var(--gradient-accent);
  color: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.section-header.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(200, 55, 171, 0.1);
  color: var(--color-primary);
  border-radius: 100px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.section-gradient .section-label,
.section-gradient-alt .section-label {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.section-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-gradient .section-title,
.section-gradient-alt .section-title {
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-light);
  max-width: 720px;
  margin: 0 auto;
}

.section-gradient .section-subtitle,
.section-gradient-alt .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.info-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.info-block {
  background: #ffffff;
  padding: 48px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  position: relative;
  overflow: hidden;
}

.info-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-base);
}

.info-block:hover::before {
  transform: scaleX(1);
}

.info-block.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.info-block-icon {
  width: 72px;
  height: 72px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 32px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.info-block h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.info-block p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text-light);
}

.dual-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: var(--radius-xl);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}

.dual-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-primary,
.cta-secondary {
  position: relative;
  z-index: 1;
}

.cta-primary h2 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 24px;
  line-height: 1.2;
}

.cta-primary p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  line-height: 1.7;
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-secondary p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.feature-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  opacity: 0;
  transform: translateY(30px);
  text-align: center;
}

.feature-card.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #ffffff;
  box-shadow: var(--shadow-md);
}

.feature-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--color-text-light);
}

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

.about-text h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-text p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.about-text ul {
  list-style: none;
  margin: 32px 0;
}

.about-text ul li {
  padding: 16px 0;
  padding-left: 40px;
  position: relative;
  font-size: 17px;
  color: var(--color-text);
}

.about-text ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 16px;
  width: 28px;
  height: 28px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

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

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

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-smooth);
}

.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-question {
  width: 100%;
  padding: 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: var(--transition-base);
}

.faq-question:hover {
  color: var(--color-primary);
}

.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
  transition: var(--transition-base);
  flex-shrink: 0;
}

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

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

.faq-answer-content {
  padding: 0 32px 32px;
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

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

.contact-detail {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-detail-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
  flex-shrink: 0;
}

.contact-detail-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.contact-detail-text p,
.contact-detail-text a {
  font-size: 15px;
  color: var(--color-text-light);
  text-decoration: none;
  transition: var(--transition-base);
}

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

.contact-form {
  background: #ffffff;
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

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

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  color: var(--color-text);
  transition: var(--transition-base);
  background: var(--color-surface);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(200, 55, 171, 0.1);
}

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

.iti,
#phone {
  width: 100%;
}

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

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

.checkbox-group label {
  font-size: 14px;
  color: var(--color-text-light);
  line-height: 1.6;
  cursor: pointer;
}

.checkbox-group a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.map-container {
  margin-top: 64px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.thanks-container {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.thanks-icon {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: var(--shadow-xl);
}

.thanks-content h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 24px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-content p {
  font-size: 20px;
  line-height: 1.7;
  color: var(--color-text-light);
  margin-bottom: 40px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-container h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.legal-date {
  font-size: 16px;
  color: var(--color-text-light);
  margin-bottom: 48px;
}

.legal-container h2 {
  font-size: 32px;
  font-weight: 700;
  margin-top: 48px;
  margin-bottom: 24px;
  color: var(--color-dark);
}

.legal-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
  color: var(--color-dark);
}

.legal-container p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 24px;
}

.legal-container ul,
.legal-container ol {
  margin: 24px 0;
  padding-left: 32px;
}

.legal-container li {
  font-size: 17px;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 12px;
}

footer {
  background: var(--gradient-footer);
  color: rgba(255, 255, 255, 0.9);
  padding: 80px 0 32px;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

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

.footer-about h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-about p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}

.footer-section h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-base);
  display: inline-block;
}

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

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

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

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

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-base);
}

.footer-legal a:hover {
  color: #ffffff;
}

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

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

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

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

.cookie-text p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
  margin-bottom: 8px;
}

.cookie-text a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.cookie-text a:hover {
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition-base);
  border: none;
}

.cookie-accept {
  background: var(--gradient-primary);
  color: #ffffff;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.cookie-decline {
  background: var(--color-surface);
  color: var(--color-text);
}

.cookie-decline:hover {
  background: #e2e8f0;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-text h1 {
    font-size: 56px;
  }
  
  .hero-image-wrapper {
    height: 500px;
  }
  
  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .dual-cta {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 48px;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 32px 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    gap: 24px;
    align-items: stretch;
  }

  
  .mobile-only {
    display: block;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    padding: 12px 0;
    font-size: 18px;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-text h1 {
    font-size: 40px;
  }
  
  .hero-text p {
    font-size: 18px;
  }
  
  .hero-stats {
    gap: 32px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .hero-image-wrapper {
    height: 400px;
  }
  
  .hero-accent-card {
    position: static;
    margin-top: 24px;
    max-width: 100%;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 48px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .section-subtitle {
    font-size: 18px;
  }
  
  .info-blocks {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .dual-cta {
    padding: 32px 24px;
  }
  
  .cta-primary h2 {
    font-size: 32px;
  }
  
  .cta-primary p {
    font-size: 16px;
  }
  
  .cta-secondary {
    padding: 32px 24px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .about-text h2,
  .contact-info h2 {
    font-size: 36px;
  }
  
  .about-text p,
  .contact-info p {
    font-size: 16px;
  }
  
  .about-image {
    height: 400px;
  }
  
  .contact-form {
    padding: 32px 24px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
  }
  
  .cookie-btn {
    flex: 1;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container,
  .container-wide {
    padding: 0 16px;
  }
  
  .hero-text h1 {
    font-size: 32px;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .info-block {
    padding: 32px 24px;
  }
  
  .faq-question {
    padding: 24px;
    font-size: 18px;
  }
  
  .faq-answer-content {
    padding: 0 24px 24px;
  }
  
  .thanks-icon {
    width: 100px;
    height: 100px;
    font-size: 48px;
  }
  
  .thanks-content h1 {
    font-size: 36px;
  }
  
  .thanks-content p {
    font-size: 18px;
  }
}